|
@@ -294,7 +294,7 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
- <el-button @click="confirmCharge" v-if="form.fBillstatus < 4" type="primary">请 核</el-button>
|
|
|
+ <el-button @click="confirmCharge" :disabled="stop" v-if="form.fBillstatus < 4" type="primary">请 核</el-button>
|
|
|
<el-button @click="revokeCharge" v-if="form.fBillstatus == 6" type="danger">撤销请核</el-button>
|
|
|
<el-button @click="revocationApproval" :disabled="tablefilter" v-if="form.fBillstatus == 4 && Operator == Lander" type="danger">撤销审批</el-button>
|
|
|
<div class="dialogTableTitle flex a-center jlr">
|
|
@@ -445,6 +445,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ stop:false,
|
|
|
Lander:'',
|
|
|
Operator:'',
|
|
|
dataList: '',
|
|
@@ -533,6 +534,12 @@ export default {
|
|
|
],
|
|
|
tPackages:[
|
|
|
{ required: true, message: ' ', trigger: 'blur' }
|
|
|
+ ],
|
|
|
+ fBegindate:[
|
|
|
+ { required: true, message: ' ', trigger: 'blur' }
|
|
|
+ ],
|
|
|
+ fEnddate:[
|
|
|
+ { required: true, message: ' ', trigger: 'blur' }
|
|
|
]
|
|
|
}
|
|
|
}
|
|
@@ -688,6 +695,7 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
speed_s(row,res) {
|
|
|
+ this.stop = true
|
|
|
this.tablefilter = true
|
|
|
if (res == 1) {
|
|
|
this.determine = true
|
|
@@ -995,6 +1003,8 @@ export default {
|
|
|
},
|
|
|
/** 新增按钮操作 */
|
|
|
handleAdd() {
|
|
|
+ this.stop = false
|
|
|
+ this.determine = false
|
|
|
this.prohibit = false
|
|
|
this.browseStatus = false
|
|
|
this.reset()
|
|
@@ -1013,6 +1023,7 @@ export default {
|
|
|
},
|
|
|
/** 修改按钮操作 */
|
|
|
handleUpdate(row) {
|
|
|
+ this.stop = false
|
|
|
this.prohibit = false
|
|
|
this.browseStatus = false
|
|
|
this.determine = false
|