|
@@ -298,7 +298,6 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<el-button type="primary" @click="submit" :disabled="notChange" v-if="form.fBillstatus < 4">请 核</el-button>
|
|
|
- <el-button type="success" @click="BackSubmit" v-if="form.fBillstatus === '6'">撤销请核</el-button>
|
|
|
|
|
|
<div class="dialogTableTitle flex a-center jlr">
|
|
|
<h2>标题</h2>
|
|
@@ -430,6 +429,7 @@
|
|
|
<el-button v-if="approve === true" @click="goApproval">审批</el-button>
|
|
|
<el-button type="danger" :disabled="disappear" @click="approvalRevocation" v-if="form.fBillstatus === '4'">撤销审批</el-button>
|
|
|
<el-button type="info" v-if="notChange" @click="addOrUpdateHandle()">查看审批流</el-button>
|
|
|
+ <el-button type="success" @click="BackSubmit" v-if="form.fBillstatus === '6'">撤销请核</el-button>
|
|
|
<el-button type="primary" @click="submitForm" :disabled="notChange">确 定</el-button>
|
|
|
<el-button v-if="cancelButton === true" @click="cancel">取 消</el-button>
|
|
|
<el-button v-if="cancelButton === false" @click="homePage">取消</el-button>
|
|
@@ -582,6 +582,7 @@ export default {
|
|
|
// this.getDicts("data_unitfees").then(response => {
|
|
|
// this.jFeetunitOptions = response.data;
|
|
|
// });
|
|
|
+ this.register()
|
|
|
},
|
|
|
activated(){
|
|
|
this.Jump()
|
|
@@ -815,17 +816,17 @@ export default {
|
|
|
// 仓储费状态修改
|
|
|
handleStatusChange(row) {
|
|
|
if(row.fBillstatus == '6'){
|
|
|
- let text = row.fBillstatus === '0' ? '启用' : '停用'
|
|
|
+ let text = row.fStatus === '0' ? '启用' : '停用'
|
|
|
this.$confirm('确认要"' + text + '""' + row.fCorpid + '"用户吗?', '警告', {
|
|
|
confirmButtonText: '确定',
|
|
|
cancelButtonText: '取消',
|
|
|
type: 'warning'
|
|
|
}).then(function() {
|
|
|
- return updateAgreement_s(row.fId, row.fBillstatus)
|
|
|
+ return updateAgreement_s(row.fId, row.fStatus)
|
|
|
}).then(() => {
|
|
|
this.msgSuccess(text + '成功')
|
|
|
}).catch(function() {
|
|
|
- row.fBillstatus = row.fBillstatus === '0' ? '1' : '0'
|
|
|
+ row.fStatus = row.fStatus === '0' ? '1' : '0'
|
|
|
})
|
|
|
}else{
|
|
|
row.fStatus = 0
|