diff --git a/src/pages/regulatoryRepository/enterpriseStandardPlan/index.vue b/src/pages/regulatoryRepository/enterpriseStandardPlan/index.vue index 346e34e1b..ef62654aa 100644 --- a/src/pages/regulatoryRepository/enterpriseStandardPlan/index.vue +++ b/src/pages/regulatoryRepository/enterpriseStandardPlan/index.vue @@ -187,6 +187,13 @@ align="center" prop="unitName" label="质量评分"> + + + + 查看 + @@ -706,6 +713,28 @@ + + + + {{ index + 1 }}. {{ item.creationUserName }} {{ item.creationTime }} {{ item.content }} + + + + + + @@ -730,7 +759,7 @@ page: 1, pageSize: this.$store.getters.userInfo.configContent, }, - + relateNowList: [], LXDList: [], CBList: [], BZList: [], @@ -762,6 +791,7 @@ QCDWList: [], type: '', drawerTitle: '', + relateDialog: false, modalshowflag2: false, modalshowflag: false, nodeList: [], @@ -1337,7 +1367,41 @@ } }) - }, // 新增数据 + }, + // 更新事件 + relateEvent (item) { + this.$http.get('lawss/sarUpdLog/getLogList', { + sarId: item.id, + sarType: 'FOREIGN_LAWS' + }, { + _this: this + }, res => { + if (res.data.length > 0) { + this.relateDialog = true + this.relateList = res.data + var i + for (i = 0; i < this.relateList.length; i++) { + let obj = {creationUserName: '', creationTime: '', content: ''} + obj.creationUserName = this.relateList[i].creationUserName + obj.creationTime = this.relateList[i].creationTime + obj.content = this.relateList[i].content + this.relateNowList.push(obj) + } + } else { + this.$message({ + message: '暂无数据', + type: 'warning' + }) + } + }, e => { + + }) + }, + relateDialogClose () { + this.relateDialog = false + this.relateNowList = [] + }, + // 新增数据 deleteList () { if (this.ids.length) { this.$confirm('您是否确认删除选中数据?', '提示', {