fix 80768
This commit is contained in:
+1
@@ -166,6 +166,7 @@ export default {
|
||||
},
|
||||
// 意见新增编辑完成
|
||||
modalFormOk (row, index) {
|
||||
this.$message.success(this.$t('operationSuccessful'))
|
||||
console.log(row, index)
|
||||
// 根据下标判断是添加还是编辑
|
||||
if (index === undefined || index === -1) {
|
||||
|
||||
+1
@@ -218,6 +218,7 @@ export default {
|
||||
},
|
||||
// 新增编辑完成
|
||||
modalFormOk (row, index) {
|
||||
this.$message.success(this.$t('operationSuccessful'))
|
||||
console.log(row, index)
|
||||
// 根据下标判断是添加还是编辑
|
||||
if (index === undefined || index === -1) {
|
||||
|
||||
+1
@@ -202,6 +202,7 @@ export default {
|
||||
},
|
||||
// 表单回调
|
||||
modalFormOk (row, index) {
|
||||
this.$message.success(this.$t('operationSuccessful'))
|
||||
console.log(row, index)
|
||||
// 根据下标判断是添加还是编辑
|
||||
if (index === undefined || index === -1) {
|
||||
|
||||
+4
@@ -271,6 +271,7 @@ export default {
|
||||
},
|
||||
// 稽查内容回调
|
||||
handleContentCallback (data, index) {
|
||||
this.$message.success(this.$t('operationSuccessful'))
|
||||
console.log('稽查内容回调', data, index)
|
||||
this.dataSource.splice(index, 1, {
|
||||
...this.dataSource[index],
|
||||
@@ -280,6 +281,7 @@ export default {
|
||||
},
|
||||
// 稽查报告回调
|
||||
handleReportCallback (data, index) {
|
||||
this.$message.success(this.$t('operationSuccessful'))
|
||||
console.log('稽查报告回调', data, index)
|
||||
this.dataSource.splice(index, 1, {
|
||||
...this.dataSource[index],
|
||||
@@ -288,6 +290,7 @@ export default {
|
||||
},
|
||||
// 整改计划回调
|
||||
handleRectificationCallback (data, index) {
|
||||
this.$message.success(this.$t('operationSuccessful'))
|
||||
console.log('整改计划回调', data, index)
|
||||
this.dataSource.splice(index, 1, {
|
||||
...this.dataSource[index],
|
||||
@@ -301,6 +304,7 @@ export default {
|
||||
},
|
||||
// 添加稽查计划回调
|
||||
handleAddPlanCallback (list) {
|
||||
this.$message.success(this.$t('operationSuccessful'))
|
||||
this.dataSource.push(...list)
|
||||
},
|
||||
// 跳转详情
|
||||
|
||||
Reference in New Issue
Block a user