diff --git a/back/src/views/modules/ability/bsabilityai.vue b/back/src/views/modules/ability/bsabilityai.vue index a1b9ea03..661f116b 100644 --- a/back/src/views/modules/ability/bsabilityai.vue +++ b/back/src/views/modules/ability/bsabilityai.vue @@ -156,7 +156,7 @@ :close-on-press-escape='false' :before-close='clear' width="50%"> - + 取 消 确 定 @@ -236,6 +236,10 @@ export default { this.fullScreen() }, methods: { + changeInfoList (obj) { + this.submitFrom.infoList = this.submitFrom.infoList.filter((item) => item.attrType !== obj.attrType) + this.submitFrom.infoList.push(obj) + }, reset () { this.$http .get( @@ -426,7 +430,7 @@ export default { showPutOnTheShelfVue () { this.showPutOnTheShelfFlag = false this.showPutOnTheShelfFlag2 = true - this.submitFrom.infoList[0] = this.redio + this.submitFrom.infoList[0].attrValue = this.radio this.putOnTheShelfList = this.insertList.children.filter(item => item.name === this.radio)[0].children console.log('radio', this.radio) }, diff --git a/back/src/views/modules/bscatalogue/ManagementPop.vue b/back/src/views/modules/bscatalogue/ManagementPop.vue index dd55ee8e..dfbbfdf2 100644 --- a/back/src/views/modules/bscatalogue/ManagementPop.vue +++ b/back/src/views/modules/bscatalogue/ManagementPop.vue @@ -341,12 +341,17 @@ export default { // 查询所有编目 getCategoryTree () { this.$http.get('/category/getCategoryTree').then((res) => { + res.data.data.map((item, indexFather) => { + if (item.id === this.showItem.id) { + this.index = indexFather + } + }) this.data = [] - if (this.showItem.children) { - this.showItem.children.forEach((val) => { + if (res.data.data[this.index].children) { + res.data.data[this.index].children.forEach((val) => { this.initData(val, this.cengji) }) - this.data = this.showItem.children + this.data = res.data.data[this.index].children console.log('data======================>', this.data) this.flag = true this.showKey++ diff --git a/back/src/views/modules/bscatalogue/bscatalogue.vue b/back/src/views/modules/bscatalogue/bscatalogue.vue index 43f341da..a3d8593d 100644 --- a/back/src/views/modules/bscatalogue/bscatalogue.vue +++ b/back/src/views/modules/bscatalogue/bscatalogue.vue @@ -174,6 +174,7 @@ export default { index: -1, pid: '', showKey: 0, + showItem: {}, oldId: -1, isShowEdit: true, oldIdList: [], diff --git a/back/src/views/modules/components/upload/index.vue b/back/src/views/modules/components/upload/index.vue index 2d65cf9e..22561ec1 100644 --- a/back/src/views/modules/components/upload/index.vue +++ b/back/src/views/modules/components/upload/index.vue @@ -2,45 +2,33 @@ * @Author: hisense.liangjunhua * @Date: 2022-07-08 14:55:19 * @LastEditors: hisense.liangjunhua - * @LastEditTime: 2022-07-08 15:48:44 + * @LastEditTime: 2022-07-08 17:23:58 * @Description: 告诉大家这是什么 --> diff --git a/back/src/views/modules/hasToDoTasks/AbilityResourceShelf.vue b/back/src/views/modules/hasToDoTasks/AbilityResourceShelf.vue new file mode 100644 index 00000000..0da3a386 --- /dev/null +++ b/back/src/views/modules/hasToDoTasks/AbilityResourceShelf.vue @@ -0,0 +1,142 @@ + + + + diff --git a/back/src/views/modules/hasToDoTasks/AbilityResourcesRemoved.vue b/back/src/views/modules/hasToDoTasks/AbilityResourcesRemoved.vue new file mode 100644 index 00000000..3c0a1ed3 --- /dev/null +++ b/back/src/views/modules/hasToDoTasks/AbilityResourcesRemoved.vue @@ -0,0 +1,142 @@ + + + + diff --git a/back/src/views/modules/hasToDoTasks/ApplicationForCompetencyRequirements.vue b/back/src/views/modules/hasToDoTasks/ApplicationForCompetencyRequirements.vue new file mode 100644 index 00000000..6f936524 --- /dev/null +++ b/back/src/views/modules/hasToDoTasks/ApplicationForCompetencyRequirements.vue @@ -0,0 +1,142 @@ + + + + diff --git a/back/src/views/modules/hasToDoTasks/CommentModeration.vue b/back/src/views/modules/hasToDoTasks/CommentModeration.vue new file mode 100644 index 00000000..2de57bdc --- /dev/null +++ b/back/src/views/modules/hasToDoTasks/CommentModeration.vue @@ -0,0 +1,142 @@ + + + + diff --git a/back/src/views/modules/hasToDoTasks/CompetencyApplication.vue b/back/src/views/modules/hasToDoTasks/CompetencyApplication.vue new file mode 100644 index 00000000..1cf2d2b5 --- /dev/null +++ b/back/src/views/modules/hasToDoTasks/CompetencyApplication.vue @@ -0,0 +1,142 @@ + + + + diff --git a/back/src/views/modules/myAgent/AbilityResourceShelf.vue b/back/src/views/modules/myAgent/AbilityResourceShelf.vue new file mode 100644 index 00000000..39410b15 --- /dev/null +++ b/back/src/views/modules/myAgent/AbilityResourceShelf.vue @@ -0,0 +1,170 @@ + + + + diff --git a/back/src/views/modules/myAgent/AbilityResourcesRemoved.vue b/back/src/views/modules/myAgent/AbilityResourcesRemoved.vue new file mode 100644 index 00000000..1a1154ed --- /dev/null +++ b/back/src/views/modules/myAgent/AbilityResourcesRemoved.vue @@ -0,0 +1,170 @@ + + + + diff --git a/back/src/views/modules/myAgent/ApplicationforCompetencyRequirements.vue b/back/src/views/modules/myAgent/ApplicationforCompetencyRequirements.vue new file mode 100644 index 00000000..245903a5 --- /dev/null +++ b/back/src/views/modules/myAgent/ApplicationforCompetencyRequirements.vue @@ -0,0 +1,170 @@ + + + + diff --git a/back/src/views/modules/myAgent/CommentModeration.vue b/back/src/views/modules/myAgent/CommentModeration.vue new file mode 100644 index 00000000..d592773a --- /dev/null +++ b/back/src/views/modules/myAgent/CommentModeration.vue @@ -0,0 +1,170 @@ + + + + diff --git a/back/src/views/modules/myAgent/demo/ability-resource-shelf.vue b/back/src/views/modules/myAgent/demo/ability-resource-shelf.vue new file mode 100644 index 00000000..5681064c --- /dev/null +++ b/back/src/views/modules/myAgent/demo/ability-resource-shelf.vue @@ -0,0 +1,273 @@ + + + + diff --git a/back/src/views/modules/putOnTheShelf/components/special.vue b/back/src/views/modules/putOnTheShelf/components/special.vue index d3409049..35c138ab 100644 --- a/back/src/views/modules/putOnTheShelf/components/special.vue +++ b/back/src/views/modules/putOnTheShelf/components/special.vue @@ -2,7 +2,7 @@ * @Author: hisense.liangjunhua * @Date: 2022-07-08 09:54:50 * @LastEditors: hisense.liangjunhua - * @LastEditTime: 2022-07-08 15:15:02 + * @LastEditTime: 2022-07-08 17:26:24 * @Description: 多条数据特殊处理 -->