dev_2022-05-11
luoJunYong.123 3 years ago
parent bd210f309f
commit fb0a6bcb4d
  1. 122
      src/pages/assessment/add/index.vue
  2. 1
      src/pages/project/list/index.vue

@ -73,6 +73,14 @@
:value="item.cid">
</el-option>
</el-select>
<!-- <el-select v-model="form.curriculumId" @change="initData">
<el-option
v-for="item in systemList"
:key="item.id"
:label="item.label"
:value="item.id">
</el-option>
</el-select> -->
</div>
</div>
</el-card>
@ -245,7 +253,8 @@ export default {
page: 1,
pageSize: 5,
total: 0,
isToProject: false
isToProject: false,
systemList: []
};
},
computed: {
@ -311,7 +320,7 @@ export default {
});
//
this.allCheckedNodes = [...checked.checkedNodes, ...checked.halfCheckedNodes];
console.log(this.allCheckedNodes)
// console.log(this.allCheckedNodes)
},
filterNode(value, data) { //
if (!value) return true;
@ -379,61 +388,72 @@ export default {
});
},
getProjectData() {
// this.$get(`${this.api.projectListByCourseId}?cid=${this.form.curriculumId}&permissions=1&projectName=${this.keyword}`).then(res => {
// let { status, data } = res;
// 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.projectListByCourseId}?cid=${this.form.curriculumId}&permissions=1&projectName=${this.keyword}`).then(res => {
let { status, data } = res;
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 => {
});
// 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 => {
// this.$get(this.api.getSystemIdBySchool).then(res => {
if (res.status == 200){
const systemList = res.data;
// systemIdsystemIdsystemId
const systemId = systemList[0].id;
console.log(this.keyword,
this.page,
this.pageSize)
console.log(systemId)
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 => {
// this.listData = res.data.records;
// this.total = res.data.total;
console.log(res.data)
const { data: { records } } = res
this.projectDataAll = records;
this.total = records.length;
console.log(this.projectDataAll)
this.handlePage();
}).catch(err => {
});
}else{
}
// 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);

@ -254,6 +254,7 @@ export default {
if (res.status == 200){
this.systemList = res.data;
console.log(this.systemList)
// systemIdsystemIdsystemId
this.systemId = this.lastSystemId ? this.lastSystemId : this.systemList[0].id;
this.getData();

Loading…
Cancel
Save