【修改】修改编辑报告流程

This commit is contained in:
zhoulingpo
2023-05-11 15:14:24 +08:00
parent 2c40afc090
commit 431f274fc6
2 changed files with 13 additions and 6 deletions
+10 -6
View File
@@ -54,18 +54,17 @@
v-if="showTransfer" round v-if="showTransfer" round
>转办</el-button> >转办</el-button>
<el-button <el-button
type="primary"
size="large" size="large"
class="common-button-primary" class="common-button-primary bgPink"
@click="handleSubmit('n')" @click="handleSubmit('n')"
:loading="btyLoading" :loading="btyLoading"
v-if="showNoAgree" round> v-if="showNoAgree" round>
不同意 不同意
</el-button> </el-button>
<el-button <el-button
type="primary"
size="large" size="large"
class="common-button-primary" class="common-button-primary bgPink"
@click="handleSubmit('y')" @click="handleSubmit('y')"
:loading="tyLoading" :loading="tyLoading"
v-if="showAgree" round> v-if="showAgree" round>
@@ -90,9 +89,9 @@
重置 重置
</el-button> </el-button>
<el-button <el-button
type="primary"
size="large" size="large"
class="common-button-primary" class="common-button-primary bgPink"
@click="handleSubmit" @click="handleSubmit"
:loading="submitLoading" :loading="submitLoading"
v-if="showSubmit" round v-if="showSubmit" round
@@ -434,4 +433,9 @@ export default {
//background-color:#8400ff; //background-color:#8400ff;
border: none; border: none;
} }
.bgPink{
background-color: rgba(132, 0, 255, 1);
border-color: rgba(132, 0, 255, 1);
color: #fff;
}
</style> </style>
+3
View File
@@ -190,6 +190,9 @@ export default {
getReportDetail(){ getReportDetail(){
this.$api.report.getReportDetail(this.ids).then(res=>{ this.$api.report.getReportDetail(this.ids).then(res=>{
this.processForm=res.data this.processForm=res.data
this.processForm.reportId=this.processForm.id
delete this.processForm['id']
}) })
}, },
handleReset() { handleReset() {