@@ -354,7 +402,33 @@
getquerySdtId: '', // 当前工程接口人的id
areaVisibleView: false, // 查看配置得弹框
seeVisibleView: false,
- configDetail: {} // 查看配置得详细信息
+ visible: false,
+ configDetail: {}, // 查看配置得详细信息
+ dataSourcehistory:[],
+ columnshistory: [
+ {
+ title: this.$t('OperationDetails'),
+ dataIndex: 'logContent',
+ align: 'center',
+ ellipsis: true,
+ scopedSlots: { customRender: 'content' }
+ },
+ {
+ title: this.$t('remarks'),
+ dataIndex: 'remarks',
+ align: 'center',
+ ellipsis: true,
+ width: 180,
+ scopedSlots: { customRender: 'detailText' }
+ },
+ {
+ title: this.$t('OperationTime'),
+ dataIndex: 'createTime',
+ align: 'center',
+ ellipsis: true,
+ width: 180
+ }
+ ]
}
},
mounted() {
@@ -599,6 +673,34 @@
}
})
},
+ UpdateLog(val) {
+ this.visible = true
+ this.paramsReportDetailId = val.id
+ this.bussLogList(val)
+ },
+ bussLogList(val) {
+ let query = {
+ pageNo: this.pageNohistory,
+ pageSize: this.pageSizehistory,
+ paramsReportDetailId: this.paramsReportDetailId
+ }
+ this.loading = true
+ getAction('report/detailLog/page', query).then((res) => {
+ if (res.success) {
+ this.dataSourcehistory = res.result.records
+ this.total = res.result.total
+ this.loading = false
+ } else {
+ this.loading = false
+ }
+ })
+ },
+ handleOk() {
+ this.visible = false
+ },
+ handleCancel() {
+ this.visible = false
+ },
getAndUserId(result) {
let query = {
paramsManifestId: this.$route.query.id,
@@ -699,6 +801,11 @@
customRender: 'paramsNameDescription'
}
}
+ if (res.click4) {
+ this.columns[index].scopedSlots = {
+ customRender: 'Operation'
+ }
+ }
if (res.click) {
// 工程接口人列表修改
this.columns[index].scopedSlots = {