|
@@ -111,6 +111,7 @@
|
|
|
:dialog-visible="dialogVisible"
|
|
:dialog-visible="dialogVisible"
|
|
|
:dialog-title="dialogTitle"
|
|
:dialog-title="dialogTitle"
|
|
|
:unit-id="currentUnitId"
|
|
:unit-id="currentUnitId"
|
|
|
|
|
+ :unit-info="currentUnit"
|
|
|
:is-view-mode="isViewMode"
|
|
:is-view-mode="isViewMode"
|
|
|
@confirm="handleDialogSuccess"
|
|
@confirm="handleDialogSuccess"
|
|
|
@update:dialogVisible="dialogVisible = $event"
|
|
@update:dialogVisible="dialogVisible = $event"
|
|
@@ -150,6 +151,7 @@
|
|
|
dialogVisible: false,
|
|
dialogVisible: false,
|
|
|
dialogTitle: '',
|
|
dialogTitle: '',
|
|
|
currentUnitId: '',
|
|
currentUnitId: '',
|
|
|
|
|
+ currentUnit: {},
|
|
|
isViewMode: false,
|
|
isViewMode: false,
|
|
|
// 表格列配置
|
|
// 表格列配置
|
|
|
columns: [
|
|
columns: [
|
|
@@ -275,6 +277,7 @@
|
|
|
handleEdit(row) {
|
|
handleEdit(row) {
|
|
|
this.dialogTitle = '修改被监审单位信息'
|
|
this.dialogTitle = '修改被监审单位信息'
|
|
|
this.currentUnitId = row.unitId
|
|
this.currentUnitId = row.unitId
|
|
|
|
|
+ this.currentUnit = row
|
|
|
this.isViewMode = false
|
|
this.isViewMode = false
|
|
|
this.dialogVisible = true
|
|
this.dialogVisible = true
|
|
|
},
|
|
},
|
|
@@ -283,6 +286,7 @@
|
|
|
handleView(row) {
|
|
handleView(row) {
|
|
|
this.dialogTitle = '查看被监审单位信息'
|
|
this.dialogTitle = '查看被监审单位信息'
|
|
|
this.currentUnitId = row.unitId
|
|
this.currentUnitId = row.unitId
|
|
|
|
|
+ this.currentUnit = row
|
|
|
this.isViewMode = true
|
|
this.isViewMode = true
|
|
|
this.dialogVisible = true
|
|
this.dialogVisible = true
|
|
|
},
|
|
},
|