|
@@ -1979,7 +1979,7 @@
|
|
|
@click="submitForm(6)"
|
|
|
>请核</el-button>
|
|
|
<el-button type="danger" v-if="form.fBillstatus === 6" @click="revoke">撤销请核</el-button>
|
|
|
- <el-button type="danger" v-if="form.fBillstatus === 4 && current == before" @click="revokeTwo">撤销请核</el-button>
|
|
|
+ <el-button type="danger" v-if="form.fBillstatus === 4 && current == before" :disabled="doNot" @click="revokeTwo">撤销请核</el-button>
|
|
|
<el-button @click="cancelTwo" v-if="approVal === true">取 消</el-button>
|
|
|
<el-button @click="cancel" v-else>取 消</el-button>
|
|
|
</div>
|
|
@@ -2594,6 +2594,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ doNot:false,
|
|
|
// 修改查看状态
|
|
|
browseStatus: false,
|
|
|
// 审批状态控制
|
|
@@ -2902,6 +2903,7 @@ export default {
|
|
|
adoPt(){
|
|
|
this.approval = this.$route.query.data
|
|
|
if (this.approval){
|
|
|
+ this.doNot = true
|
|
|
this.closeButton = false
|
|
|
this.approval = JSON.parse(this.approval)
|
|
|
this.approVal = true
|