This commit is contained in:
zhutianqi
2022-01-27 21:51:36 +08:00
parent d0dac43fe8
commit c91d25d7bb
2 changed files with 37 additions and 19 deletions
@@ -33,9 +33,9 @@
<el-form-item label="修改理由" prop="reason" label-width="" class="add-form-item"> <el-form-item label="修改理由" prop="reason" label-width="" class="add-form-item">
<el-input v-model="opinionContent.reason" autocomplete="off" placeholder="请输入修改理由"></el-input> <el-input v-model="opinionContent.reason" autocomplete="off" placeholder="请输入修改理由"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="原因" prop="cause" label-width="" class="add-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-input v-model="opinionContent.cause" autocomplete="off" placeholder="请输入原因"></el-input>-->
</el-form-item> <!-- </el-form-item>-->
</el-form> </el-form>
</div> </div>
<div class="demo-drawer-footer"> <div class="demo-drawer-footer">
@@ -59,7 +59,7 @@
newText: '', newText: '',
reason: '', reason: '',
chapterName: '', chapterName: '',
cause: '', // cause: '',
}, },
opinionContentRules: { opinionContentRules: {
partCode: [ partCode: [
@@ -91,7 +91,7 @@
reason: this.opinionContent.reason, reason: this.opinionContent.reason,
partCode: this.opinionContent.partCode, partCode: this.opinionContent.partCode,
chapterName: this.opinionContent.chapterName, chapterName: this.opinionContent.chapterName,
cause: this.opinionContent.cause, // cause: this.opinionContent.cause,
userId: this.$route.query.userId || '', userId: this.$route.query.userId || '',
userName: this.$route.query.userName || '', userName: this.$route.query.userName || '',
deptName: this.$route.query.institutionName || '', deptName: this.$route.query.institutionName || '',
@@ -109,7 +109,7 @@
this.opinionContent.reason = '' this.opinionContent.reason = ''
this.opinionContent.oldText = '' this.opinionContent.oldText = ''
this.opinionContent.newText = '' this.opinionContent.newText = ''
this.opinionContent.cause = '' // this.opinionContent.cause = ''
this.opinionContent.chapterName = '' this.opinionContent.chapterName = ''
} }
}) })
@@ -141,13 +141,6 @@
> >
</el-table-column> </el-table-column>
</el-table-column> </el-table-column>
<el-table-column
prop="cause"
align="center"
label="原因"
width="170"
>
</el-table-column>
<el-table-column <el-table-column
prop="deptName" prop="deptName"
align="center" align="center"
@@ -162,6 +155,21 @@
label="提出人" label="提出人"
> >
</el-table-column> </el-table-column>
<el-table-column
prop="state"
align="center"
label="处理意见">
<template slot-scope="scope">
<div>{{ stateText(scope.row.state) }}</div>
</template>
</el-table-column>
<el-table-column
prop="cause"
align="center"
label="原因"
width="170"
>
</el-table-column>
<el-table-column label="操作" align="center" width="50" fixed="right" v-if="ideaKey"> <el-table-column label="操作" align="center" width="50" fixed="right" v-if="ideaKey">
<template slot-scope="scope"> <template slot-scope="scope">
<div @click.stop style="display: inline-block"> <div @click.stop style="display: inline-block">
@@ -219,9 +227,9 @@
<el-form-item label="修改理由" prop="reason" label-width="" class="add-form-item"> <el-form-item label="修改理由" prop="reason" label-width="" class="add-form-item">
<el-input v-model="opinionContent.reason" autocomplete="off" placeholder="请输入修改理由"></el-input> <el-input v-model="opinionContent.reason" autocomplete="off" placeholder="请输入修改理由"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="原因" prop="cause" label-width="" class="add-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-input v-model="opinionContent.cause" autocomplete="off" placeholder="请输入原因"></el-input>-->
</el-form-item> <!-- </el-form-item>-->
</el-form> </el-form>
</div> </div>
<div class="demo-drawer-footer"> <div class="demo-drawer-footer">
@@ -272,7 +280,7 @@
newText: '', newText: '',
reason: '', reason: '',
chapterName: '', chapterName: '',
cause: '', // cause: '',
}, },
opinionContentRules: { opinionContentRules: {
partCode: [ partCode: [
@@ -302,6 +310,15 @@
} }
}, },
methods: { methods: {
stateText(row) {
if (row === '1') {
return '上报'
} else if (row === '2') {
return '处理后上报'
} else {
return '不上报'
}
},
itermsConditionsClose () { itermsConditionsClose () {
this.itermsConditionsFlag = false this.itermsConditionsFlag = false
}, },
@@ -355,6 +372,7 @@
_this: this _this: this
}, res => { }, res => {
this.standinfoList = res.data.records this.standinfoList = res.data.records
console.log(res.data.records);
this.total = res.data.total this.total = res.data.total
this.spinShow = false this.spinShow = false
}, e => { }, e => {
@@ -485,7 +503,7 @@
reason: this.opinionContent.reason, reason: this.opinionContent.reason,
partCode: this.opinionContent.partCode, partCode: this.opinionContent.partCode,
chapterName: this.opinionContent.chapterName, chapterName: this.opinionContent.chapterName,
cause: this.opinionContent.cause, // cause: this.opinionContent.cause,
userId: this.$store.getters.userInfo.userId || '', userId: this.$store.getters.userInfo.userId || '',
userName: this.$store.getters.userInfo.userName || '', userName: this.$store.getters.userInfo.userName || '',
deptName: this.$store.getters.userInfo.institutionName || '', deptName: this.$store.getters.userInfo.institutionName || '',
@@ -512,7 +530,7 @@
this.opinionContent.reason = '' this.opinionContent.reason = ''
this.opinionContent.oldText = '' this.opinionContent.oldText = ''
this.opinionContent.newText = '' this.opinionContent.newText = ''
this.opinionContent.cause = '' // this.opinionContent.cause = ''
} }
} }
}) })