|
@@ -1,13 +1,159 @@
|
|
|
<template>
|
|
|
- <div class="">内容</div>
|
|
|
+ <div class="app-container">
|
|
|
+ <a-spin :spinning="loading || loading1 || loading2 || loading3 || loading4">
|
|
|
+ <!-- 基础信息 -->
|
|
|
+ <div class="common-card user-basic-info">
|
|
|
+ <div class="user-basic-left">
|
|
|
+ <div class="user-basic-left-img">
|
|
|
+ <img v-if="userHeader" :src="userHeader" fit="cover" />
|
|
|
+ <div v-else class="default">
|
|
|
+ <icon-font class="iconFont" type="ali-icon-205yonghu_yonghu6" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="user-basic-left-text">
|
|
|
+ <span>{{ userBasicInfo.nickName }}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="user-basic-right">
|
|
|
+ <PersonEchartsDoughnut
|
|
|
+ ref="personEchartsDoughnutRef"
|
|
|
+ width="100%"
|
|
|
+ height="350px"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 积分历史 -->
|
|
|
+ <div class="common-card">
|
|
|
+ <div class="information-title">积分历史</div>
|
|
|
+ <PersonEchartsBar
|
|
|
+ ref="echartsCategoryRef"
|
|
|
+ width="100%"
|
|
|
+ height="400px"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 积分记录 -->
|
|
|
+ <div class="common-card">
|
|
|
+ <div class="information-title">积分记录</div>
|
|
|
+ <!-- 表单 -->
|
|
|
+ <a-table
|
|
|
+ :columns="userPointRecordColumns"
|
|
|
+ :data-source="userPointRecord"
|
|
|
+ :row-key="(record, index) => index"
|
|
|
+ :pagination="false"
|
|
|
+ >
|
|
|
+ </a-table>
|
|
|
+ <!-- 分页 -->
|
|
|
+ <div class="a-pagination-display">
|
|
|
+ <a-pagination
|
|
|
+ v-model="userPointRecordPagination.current"
|
|
|
+ :pageSize="userPointRecordPagination.pageSize"
|
|
|
+ :total.sync="userPointRecordPagination.total"
|
|
|
+ show-less-items
|
|
|
+ show-quick-jumper
|
|
|
+ @change="getUserPointRecord"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 考试记录 -->
|
|
|
+ <div class="common-card">
|
|
|
+ <div class="information-title">考试记录</div>
|
|
|
+ <!-- 表单 -->
|
|
|
+ <a-table
|
|
|
+ :columns="userExamRecordColumns"
|
|
|
+ :data-source="userExamRecord"
|
|
|
+ :row-key="(record, index) => index"
|
|
|
+ :pagination="false"
|
|
|
+ >
|
|
|
+ <template slot="action" slot-scope="text, record">
|
|
|
+ <a @click="handleExportExamFile(record)">导出试卷</a>
|
|
|
+ </template>
|
|
|
+ </a-table>
|
|
|
+ <!-- 分页 -->
|
|
|
+ <div class="a-pagination-display">
|
|
|
+ <a-pagination
|
|
|
+ v-model="userExamRecordPagination.current"
|
|
|
+ :pageSize="userExamRecordPagination.pageSize"
|
|
|
+ :total.sync="userExamRecordPagination.total"
|
|
|
+ show-less-items
|
|
|
+ show-quick-jumper
|
|
|
+ @change="getUserExamRecord"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 学习记录 -->
|
|
|
+ <div class="common-card">
|
|
|
+ <div class="information-title">学习记录</div>
|
|
|
+ <!-- 表单 -->
|
|
|
+ <a-table
|
|
|
+ :columns="userStudyRecordColumns"
|
|
|
+ :data-source="userStudyRecord"
|
|
|
+ :row-key="(record, index) => index"
|
|
|
+ :pagination="false"
|
|
|
+ >
|
|
|
+ </a-table>
|
|
|
+ <!-- 分页 -->
|
|
|
+ <div class="a-pagination-display">
|
|
|
+ <a-pagination
|
|
|
+ v-model="userStudyRecordPagination.current"
|
|
|
+ :pageSize="userStudyRecordPagination.pageSize"
|
|
|
+ :total.sync="userStudyRecordPagination.total"
|
|
|
+ show-less-items
|
|
|
+ show-quick-jumper
|
|
|
+ @change="getUserStudyRecord"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </a-spin>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import PersonEchartsDoughnut from './components/PersonEchartsDoughnut';
|
|
|
+import PersonEchartsBar from './components/PersonEchartsBar';
|
|
|
export default {
|
|
|
props: {},
|
|
|
- components: {},
|
|
|
+ components: {
|
|
|
+ PersonEchartsDoughnut,
|
|
|
+ PersonEchartsBar,
|
|
|
+ },
|
|
|
data() {
|
|
|
- return {};
|
|
|
+ return {
|
|
|
+ loading: false, // 基础数据加载动画
|
|
|
+ loading1: false, // 是否显示加载动画
|
|
|
+ loading2: false, // 是否显示加载动画
|
|
|
+ loading3: false, // 是否显示加载动画
|
|
|
+ loading4: false, // 是否显示加载动画
|
|
|
+ defaultImg: require('@/assets/image/default-avatar.png'),
|
|
|
+ userHeader: '', // 用户头像
|
|
|
+ userBasicInfo: null, // 基础信息
|
|
|
+ userPonitsCountInfo: null, // 积分类别信息
|
|
|
+ userPointsHistory: null, // 积分历史
|
|
|
+ userPointRecordColumns: null, // 表格列配置
|
|
|
+ userPointRecord: [], // 积分记录
|
|
|
+ userPointRecordPagination: {
|
|
|
+ pageSize: 10,
|
|
|
+ current: 1,
|
|
|
+ total: 0,
|
|
|
+ }, // 分页参数
|
|
|
+ userExamRecordColumns: null, // 表格列配置
|
|
|
+ userExamRecord: [], // 考试记录
|
|
|
+ userExamRecordPagination: {
|
|
|
+ pageSize: 10,
|
|
|
+ current: 1,
|
|
|
+ total: 0,
|
|
|
+ }, // 分页参数
|
|
|
+ userStudyRecordColumns: null, // 表格列配置
|
|
|
+ userStudyRecord: [], // 学习记录
|
|
|
+ userStudyRecordPagination: {
|
|
|
+ pageSize: 10,
|
|
|
+ current: 1,
|
|
|
+ total: 0,
|
|
|
+ }, // 分页参数
|
|
|
+ };
|
|
|
},
|
|
|
created() {
|
|
|
this.initDataFun(); //初始化数据
|
|
@@ -19,7 +165,321 @@ export default {
|
|
|
methods: {
|
|
|
//初始化数据
|
|
|
initDataFun() {
|
|
|
- console.log(this.$route.query.id);
|
|
|
+ this.userBasicInfo = {
|
|
|
+ userId: this.$route.query.id,
|
|
|
+ nickName: this.$route.query.nickName,
|
|
|
+ };
|
|
|
+ this.getUserHeader(); // 获取用户头像
|
|
|
+ this.getUserBasicInfo(); // 获取:基础信息
|
|
|
+
|
|
|
+ // 积分记录-表单的列的配置参数
|
|
|
+ this.userPointRecordColumns = [
|
|
|
+ {
|
|
|
+ title: '事件',
|
|
|
+ dataIndex: 'event',
|
|
|
+ key: 'event',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '积分',
|
|
|
+ dataIndex: 'points',
|
|
|
+ key: 'points',
|
|
|
+ align: 'center',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '时间',
|
|
|
+ dataIndex: 'createdTime',
|
|
|
+ key: 'createdTime',
|
|
|
+ align: 'center',
|
|
|
+ },
|
|
|
+ ];
|
|
|
+ this.getUserPointRecord(); // 获取:积分历史
|
|
|
+
|
|
|
+ // 考试记录-表单的列的配置参数
|
|
|
+ this.userExamRecordColumns = [
|
|
|
+ {
|
|
|
+ title: '考试名称',
|
|
|
+ dataIndex: 'examName',
|
|
|
+ key: 'examName',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '总分',
|
|
|
+ dataIndex: 'totalPoints',
|
|
|
+ key: 'totalPoints',
|
|
|
+ align: 'center',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '成绩',
|
|
|
+ dataIndex: 'points',
|
|
|
+ key: 'points',
|
|
|
+ align: 'center',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '时间',
|
|
|
+ dataIndex: 'createdTime',
|
|
|
+ key: 'createdTime',
|
|
|
+ align: 'center',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '操作',
|
|
|
+ dataIndex: 'action',
|
|
|
+ key: 'action',
|
|
|
+ scopedSlots: { customRender: 'action' },
|
|
|
+ width: 100,
|
|
|
+ },
|
|
|
+ ];
|
|
|
+ this.getUserExamRecord(); // 获取:考试记录
|
|
|
+
|
|
|
+ // 学习记录-表单的列的配置参数
|
|
|
+ this.userStudyRecordColumns = [
|
|
|
+ {
|
|
|
+ title: '文章名称',
|
|
|
+ dataIndex: 'learningMaterialName',
|
|
|
+ key: 'learningMaterialName',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '时间',
|
|
|
+ dataIndex: 'createdTime',
|
|
|
+ key: 'createdTime',
|
|
|
+ align: 'center',
|
|
|
+ },
|
|
|
+ ];
|
|
|
+ this.getUserStudyRecord(); // 获取:学习记录
|
|
|
+ },
|
|
|
+ // 获取用户头像
|
|
|
+ getUserHeader() {
|
|
|
+ this.loading = true;
|
|
|
+ let params = {
|
|
|
+ userName: this.$route.query.id,
|
|
|
+ };
|
|
|
+ this.$_http
|
|
|
+ .get(this.$_API.INTERFACE_GET_USER_HEADER, { params })
|
|
|
+ .then((res) => {
|
|
|
+ let resdData = res.data;
|
|
|
+ this.userHeader = resdData;
|
|
|
+ this.loading = false;
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.loading = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 获取:基础信息
|
|
|
+ getUserBasicInfo() {
|
|
|
+ this.loading1 = true;
|
|
|
+ let params = {
|
|
|
+ userName: this.$route.query.id,
|
|
|
+ };
|
|
|
+ this.$_http
|
|
|
+ .get(this.$_API.INTERFACE_GET_USER_POINTS_DETAILS, { params })
|
|
|
+ .then((res) => {
|
|
|
+ let resdData = res.data;
|
|
|
+ if (resdData) {
|
|
|
+ // 扇形
|
|
|
+ if (resdData.PointsByEvents) {
|
|
|
+ let dataArr = this.formateResDataToEcharts(
|
|
|
+ resdData.PointsByEvents
|
|
|
+ ); // 格式化数据结构为echarts所需要的结构
|
|
|
+ this.userPonitsCountInfo = {
|
|
|
+ title: '总积分',
|
|
|
+ seriesLabel: '种类积分',
|
|
|
+ count: this.formateTotalPoints(resdData.PointsByEvents),
|
|
|
+ data: dataArr,
|
|
|
+ };
|
|
|
+ this.$refs.personEchartsDoughnutRef.initDataFun(
|
|
|
+ this.userPonitsCountInfo
|
|
|
+ );
|
|
|
+ }
|
|
|
+ // 折线
|
|
|
+ if (resdData.PointsByDates) {
|
|
|
+ let dataArr = this.formateResArrDataToEcharts(
|
|
|
+ resdData.PointsByDates
|
|
|
+ ); // 格式化数据结构为echarts所需要的结构
|
|
|
+ let xAxis = dataArr.map((item) => {
|
|
|
+ return item.name;
|
|
|
+ });
|
|
|
+ let series = dataArr.map((item) => {
|
|
|
+ return item.value;
|
|
|
+ });
|
|
|
+ if (xAxis.length > 0 && series.length > 0) {
|
|
|
+ this.userPointsHistory = {
|
|
|
+ xAxis: xAxis,
|
|
|
+ series: series,
|
|
|
+ };
|
|
|
+ }
|
|
|
+ this.$refs.echartsCategoryRef.initDataFun(this.userPointsHistory);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.loading1 = false;
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.loading1 = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 格式化数据结构为echarts所需要的结构
|
|
|
+ formateResArrDataToEcharts(data) {
|
|
|
+ let dataArr = data.map((item) => {
|
|
|
+ return getObj(item);
|
|
|
+ });
|
|
|
+ function getObj(obj) {
|
|
|
+ let objKey = '';
|
|
|
+ for (let key in obj) {
|
|
|
+ objKey = key;
|
|
|
+ }
|
|
|
+ return {
|
|
|
+ name: objKey,
|
|
|
+ value: obj[objKey],
|
|
|
+ };
|
|
|
+ }
|
|
|
+ return dataArr;
|
|
|
+ },
|
|
|
+ // 格式化数据结构为echarts所需要的结构
|
|
|
+ formateResDataToEcharts(data) {
|
|
|
+ let dataArr = [];
|
|
|
+ for (let key in data) {
|
|
|
+ dataArr.push({
|
|
|
+ name: key,
|
|
|
+ value: data[key],
|
|
|
+ });
|
|
|
+ }
|
|
|
+ return dataArr;
|
|
|
+ },
|
|
|
+ // 统计总分数
|
|
|
+ formateTotalPoints(data) {
|
|
|
+ let totalPoints = 0;
|
|
|
+ for (let key in data) {
|
|
|
+ totalPoints = totalPoints + data[key];
|
|
|
+ }
|
|
|
+ return totalPoints;
|
|
|
+ },
|
|
|
+ // 获取:积分记录
|
|
|
+ getUserPointRecord() {
|
|
|
+ this.loading2 = true;
|
|
|
+ let params = {
|
|
|
+ userName: this.userBasicInfo.userId,
|
|
|
+ page: this.userPointRecordPagination.current - 1,
|
|
|
+ size: this.userPointRecordPagination.pageSize,
|
|
|
+ };
|
|
|
+ this.$_http
|
|
|
+ .get(this.$_API.INTERFACE_GET_USER_POINTS_HISTORY, { params })
|
|
|
+ .then((res) => {
|
|
|
+ let resdData = res.data;
|
|
|
+ if (resdData && resdData.content) {
|
|
|
+ this.userPointRecord = [...resdData.content];
|
|
|
+ this.userPointRecordPagination.total = resdData.totalElements; // 总条数
|
|
|
+ } else {
|
|
|
+ this.userPointRecord = [];
|
|
|
+ this.userPointRecordPagination.total = resdData.totalElements; // 总条数
|
|
|
+ }
|
|
|
+ this.loading2 = false;
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.loading2 = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 获取:考试记录
|
|
|
+ getUserExamRecord() {
|
|
|
+ this.loading3 = true;
|
|
|
+ let params = {
|
|
|
+ userName: this.userBasicInfo.userId,
|
|
|
+ page: this.userExamRecordPagination.current - 1,
|
|
|
+ size: this.userExamRecordPagination.pageSize,
|
|
|
+ };
|
|
|
+ this.$_http
|
|
|
+ .get(this.$_API.INTERFACE_GET_USER_EXAM_HISTORY, { params })
|
|
|
+ .then((res) => {
|
|
|
+ let resdData = res.data;
|
|
|
+ if (resdData && resdData.content) {
|
|
|
+ this.userExamRecord = [...resdData.content];
|
|
|
+ this.userExamRecordPagination.total = resdData.totalElements; // 总条数
|
|
|
+ } else {
|
|
|
+ this.userExamRecord = [];
|
|
|
+ this.userExamRecordPagination.total = resdData.totalElements; // 总条数
|
|
|
+ }
|
|
|
+ this.loading3 = false;
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.loading3 = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 操作:导出试卷
|
|
|
+ handleExportExamFile(record) {
|
|
|
+ console.log('导出试卷', record);
|
|
|
+ let that = this;
|
|
|
+ that.$confirm({
|
|
|
+ title: '导出试卷',
|
|
|
+ content: `确认导出试卷吗?`,
|
|
|
+ okText: '确认',
|
|
|
+ cancelText: '取消',
|
|
|
+ onOk() {
|
|
|
+ that.loading = true;
|
|
|
+ let params = {
|
|
|
+ userId: that.userBasicInfo.userId,
|
|
|
+ examId: record.examId,
|
|
|
+ };
|
|
|
+ that.$_http
|
|
|
+ .get(
|
|
|
+ that.$_API.INTERFACE_GET_USER_EXAM_FILE_BY_USER,
|
|
|
+ { params },
|
|
|
+ {
|
|
|
+ headers: { 'Content-Type': 'application/x-download' },
|
|
|
+ responseType: 'blob',
|
|
|
+ }
|
|
|
+ )
|
|
|
+ .then((res) => {
|
|
|
+ if (res.data) {
|
|
|
+ // const link = document.createElement('a');
|
|
|
+ // link.style.display = 'none';
|
|
|
+ // link.href = URL.createObjectURL(res.data);
|
|
|
+ // let fileName = `试卷_${record.examName}.xls`;
|
|
|
+ // link.setAttribute('download', fileName);
|
|
|
+ // document.body.appendChild(link);
|
|
|
+ // link.click();
|
|
|
+ // document.body.removeChild(link);
|
|
|
+ const link = document.createElement('a');
|
|
|
+ link.style.display = 'none';
|
|
|
+ link.href = URL.createObjectURL(res.data);
|
|
|
+ let fileName = `试卷_${record.examName}.xls`;
|
|
|
+ // let fileName = `试卷_名字.xls`;
|
|
|
+ link.setAttribute('download', fileName);
|
|
|
+ document.body.appendChild(link);
|
|
|
+ link.click();
|
|
|
+ document.body.removeChild(link);
|
|
|
+ } else {
|
|
|
+ console.error('res.data is not define');
|
|
|
+ }
|
|
|
+ that.loading = false;
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ that.loading = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ onCancel() {},
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 获取:学习记录
|
|
|
+ getUserStudyRecord() {
|
|
|
+ this.loading4 = true;
|
|
|
+ this.userStudyRecord = [];
|
|
|
+ let params = {
|
|
|
+ userName: this.userBasicInfo.userId,
|
|
|
+ page: this.userStudyRecordPagination.current - 1,
|
|
|
+ size: this.userStudyRecordPagination.pageSize,
|
|
|
+ };
|
|
|
+ this.$_http
|
|
|
+ .get(this.$_API.INTERFACE_GET_USER_READ_HISTORY, { params })
|
|
|
+ .then((res) => {
|
|
|
+ let resdData = res.data;
|
|
|
+ if (resdData && resdData.content) {
|
|
|
+ this.userStudyRecord = [...resdData.content];
|
|
|
+ this.userStudyRecordPagination.total = resdData.totalElements; // 总条数
|
|
|
+ } else {
|
|
|
+ this.userStudyRecord = [];
|
|
|
+ this.userStudyRecordPagination.total = resdData.totalElements; // 总条数
|
|
|
+ }
|
|
|
+ this.loading4 = false;
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.loading4 = false;
|
|
|
+ });
|
|
|
},
|
|
|
},
|
|
|
};
|
|
@@ -27,4 +487,57 @@ export default {
|
|
|
|
|
|
<style lang="less"></style>
|
|
|
|
|
|
-<style lang="less" scoped></style>
|
|
|
+<style lang="less" scoped>
|
|
|
+@import '~@/styles/common/variable.less';
|
|
|
+
|
|
|
+.information-title {
|
|
|
+ font-size: 18px;
|
|
|
+ font-weight: bold;
|
|
|
+ color: @mainColorBlack65;
|
|
|
+ margin-bottom: @paddingMarginVal;
|
|
|
+}
|
|
|
+.user-basic-info {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ .user-basic-left {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ padding-left: 40px;
|
|
|
+ .user-basic-left-img {
|
|
|
+ width: 120px;
|
|
|
+ height: 120px;
|
|
|
+ border-radius: 10px;
|
|
|
+ overflow: hidden;
|
|
|
+ img {
|
|
|
+ width: 120px;
|
|
|
+ height: 120px;
|
|
|
+ }
|
|
|
+ .default {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ background-color: #d6d6d6;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ .iconFont {
|
|
|
+ color: #fff;
|
|
|
+ font-size: 50px;
|
|
|
+ font-weight: bolder;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .user-basic-left-text {
|
|
|
+ margin-left: @paddingMarginVal * 2;
|
|
|
+ span {
|
|
|
+ font-size: 16px;
|
|
|
+ color: @mainColorBlack;
|
|
|
+ font-weight: bolder;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .user-basic-right {
|
|
|
+ width: 60%;
|
|
|
+ height: 350px;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|