dev_2022-05-11
luoJunYong.123 3 years ago
parent fb0a6bcb4d
commit 42efa7a48e
  1. 57
      src/pages/assessment/add/index.vue

@ -106,13 +106,13 @@
<el-table-column prop="projectName" label="项目名称" align="center"></el-table-column>
<el-table-column prop="auth" label="项目权限" align="center">
<template slot-scope="scope">
{{ permissionsKeys[scope.row.permissions] }}
{{ permissionsKeys[scope.row.projectPermissions] }}
</template>
</el-table-column>
<!-- <el-table-column prop="createUser" label="创建人" align="center"></el-table-column> -->
<el-table-column prop="founder" label="创建人" align="center">
<template slot-scope="scope">
{{ founderKeys[scope.row.founder] }}
{{ founderKeys[scope.row.cid] }}
</template>
</el-table-column>
<el-table-column prop="createTime" label="创建时间" align="center"></el-table-column>
@ -397,67 +397,16 @@ export default {
n.enable || result.push(n);
});
this.projectDataAll = result;
console.log(result)
this.total = result.length;
this.handlePage();
}
}).catch(err => {
});
// test
// for(let i=0; i<this.cidList.length; i++) {
// this.$get(`${this.api.projectListByCourseId}?cid=${this.cidList[i]}&permissions=1&projectName=${this.keyword}`).then(res => {
// let { status, data } = res;
// console.log('---')
// console.log(data)
// if (status === 200 && data) {
// let list = data;
// let result = [];
// list.map(n => {
// n.enable || result.push(n);
// });
// this.projectDataAll = result;
// console.log(result)
// this.total = result.length;
// this.handlePage();
// }
// }).catch(err => {
// });
// }
// this.$get(this.api.getSystemIdBySchool).then(res => {
// if (res.status == 200){
// this.systemList = res.data;
// // systemIdsystemIdsystemId
// const systemId = this.systemList[0].id;
// let data = {
// platformId: 1, // :1 :3
// founder: 2, // (0: 1: 2:)
// state: "", // (0:稿 1:)
// permissions: 1, // (0: 1: 2:)
// projectName: this.keyword,
// pageNum: this.page,
// pageSize: this.pageSize,
// systemId
// };
// this.$post(this.api.queryProjectManage, data).then(res => {
// const { data: { records } } = res
// this.projectDataAll = records;
// this.total = records.length;
// this.handlePage();
// }).catch(err => {
// });
// }else{
// }
// });
},
handlePage() {
let result = this.projectDataAll.slice((this.page - 1) * this.pageSize, this.page * this.pageSize);
this.projectData = result;
console.log(this.projectData)
},
initData() {
this.page = 1;

Loading…
Cancel
Save