|
@@ -13,22 +13,22 @@
|
|
|
:loading="buttonLoading"
|
|
|
size="small"
|
|
|
>
|
|
|
- 审核处理<i class="el-icon-arrow-down el-icon--right"></i>
|
|
|
+ 审批处理<i class="el-icon-arrow-down el-icon--right"></i>
|
|
|
</el-button>
|
|
|
<el-dropdown-menu slot="dropdown">
|
|
|
<el-dropdown-item
|
|
|
:loading="buttonLoading"
|
|
|
:disabled="checkDisabled"
|
|
|
- @click.native="paymentCheck">{{form.checkStatus == '审核中'?'审核中':'提交审核'}}
|
|
|
+ @click.native="paymentCheck">{{form.checkStatus == '审批中'?'审批中':'审批提交'}}
|
|
|
</el-dropdown-item>
|
|
|
<el-dropdown-item
|
|
|
:loading="buttonLoading"
|
|
|
:disabled="!checkDisabled"
|
|
|
- @click.native="checkScheduleDialog = true,checkId=form.id">审核进度
|
|
|
+ @click.native="checkScheduleDialog = true,checkId=form.id">审批进度
|
|
|
</el-dropdown-item>
|
|
|
<el-dropdown-item
|
|
|
:disabled="!recallDisabled"
|
|
|
- @click.native="cancelAudit">撤销审核
|
|
|
+ @click.native="cancelAudit">撤销审批
|
|
|
</el-dropdown-item>
|
|
|
</el-dropdown-menu>
|
|
|
</el-dropdown>
|
|
@@ -36,7 +36,7 @@
|
|
|
size="small"
|
|
|
:loading="buttonLoading"
|
|
|
class="el-button--small-yh"
|
|
|
- :disabled="!checkDisabled || form.checkStatus == '审核中'"
|
|
|
+ :disabled="form.checkStatus !== '审批通过'"
|
|
|
@click.stop="settlement">结算
|
|
|
</el-button>
|
|
|
<el-button type="primary"
|
|
@@ -60,7 +60,7 @@
|
|
|
:loading="buttonLoading"
|
|
|
:disabled="buttonDisabled"
|
|
|
@click.stop="openCheckDialog">
|
|
|
- 审核
|
|
|
+ 审批
|
|
|
</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -165,7 +165,7 @@
|
|
|
</div>
|
|
|
<el-dialog
|
|
|
append-to-body
|
|
|
- title="审核进度"
|
|
|
+ title="审批进度"
|
|
|
class="el-dialogDeep"
|
|
|
:visible.sync="checkScheduleDialog"
|
|
|
width="40%"
|
|
@@ -176,6 +176,7 @@
|
|
|
>
|
|
|
<check-schedule
|
|
|
:checkId="checkId"
|
|
|
+ :batchNo="batchNo"
|
|
|
@choceScheduleFun="choceScheduleFun"
|
|
|
>
|
|
|
</check-schedule>
|
|
@@ -235,6 +236,7 @@
|
|
|
recallDisabled:false,
|
|
|
checkDialog:false,
|
|
|
checkId:'',
|
|
|
+ batchNo:'',
|
|
|
parentId:0,
|
|
|
id:"",
|
|
|
dataList: [],
|
|
@@ -415,6 +417,7 @@
|
|
|
}
|
|
|
this.auditDisabled = true
|
|
|
this.buttonLoading = true;
|
|
|
+ this.batchNo = this.detailData.check.batchNo
|
|
|
getDetails(this.detailData.check.srcBillId).then(res => {
|
|
|
this.afterEcho(res.data.data)
|
|
|
}).finally(()=>{
|
|
@@ -588,7 +591,7 @@
|
|
|
this.oldForm = Object.assign({},data);
|
|
|
|
|
|
this.checkDisabled = data.checkStatus === "录入"?false:true;
|
|
|
- this.recallDisabled = data.checkStatus === "提交"?true:false;
|
|
|
+ this.recallDisabled = data.checkStatus === "审批提交"?true:false;
|
|
|
|
|
|
this.option.column.forEach(item =>{
|
|
|
if( item.prop == "remark" ){
|