This commit is contained in:
zhutianqi
2022-01-11 11:23:37 +08:00
parent c96efba70c
commit 60cc5e200a
2 changed files with 19 additions and 0 deletions
@@ -834,6 +834,11 @@
this.addForm.unit = list
this.addForm.unitName = listName
this.modalshowflagZRBM = false
this.$http.get('SarInstitution/institution/getInstitutionIdToDept', {
institutionIds: list
}, {}, res => {
console.log(res);
})
},
choiceZRBM(id) {
if (this.DrawerType === 'see') {
@@ -141,6 +141,13 @@
>
</el-table-column>
</el-table-column>
<el-table-column
prop="cause"
align="center"
label="原因"
width="170"
>
</el-table-column>
<el-table-column
prop="deptName"
align="center"
@@ -212,6 +219,9 @@
<el-form-item label="修改理由" prop="reason" label-width="" class="add-form-item">
<el-input v-model="opinionContent.reason" autocomplete="off" placeholder="请输入修改理由"></el-input>
</el-form-item>
<el-form-item label="原因" prop="cause" label-width="" class="add-form-item">
<el-input v-model="opinionContent.cause" autocomplete="off" placeholder="请输入原因"></el-input>
</el-form-item>
</el-form>
</div>
<div class="demo-drawer-footer">
@@ -260,6 +270,7 @@ export default {
newText: '',
reason: '',
chapterName: '',
cause: '',
},
opinionContentRules: {
partCode: [
@@ -382,6 +393,7 @@ export default {
this.opinionContent.reason = row.reason
this.opinionContent.oldText = row.oldText
this.opinionContent.newText = row.newText
this.opinionContent.cause = row.cause
} else {
this.id = ''
this.opiniontitle = '新增意见'
@@ -389,6 +401,7 @@ export default {
this.opinionContent.reason = ''
this.opinionContent.oldText = ''
this.opinionContent.newText = ''
this.opinionContent.cause = ''
}
this.isDialog = true
},
@@ -433,6 +446,7 @@ export default {
reason: this.opinionContent.reason,
partCode: this.opinionContent.partCode,
chapterName: this.opinionContent.chapterName,
cause: this.opinionContent.cause,
userId: this.$store.getters.userInfo.userId || '',
userName: this.$store.getters.userInfo.userName || '',
deptName: this.$store.getters.userInfo.orgName || '',