1、完善合约状态字典,以适应多部门流程化操作,初创版直接从申请阶段执行。合约审核后,需要执行完善会员信息和认领菜地2个操作。
2、将菜单会员签约改成合约登记,将农场会员改成会员入驻(实际是执行合约的完善会员信息和认领菜地步骤)。
This commit is contained in:
@ -138,7 +138,7 @@
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
:disabled="scope.row.status != '1'"
|
||||
:disabled="scope.row.status != '3'"
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit"
|
||||
@ -147,7 +147,7 @@
|
||||
>修改
|
||||
</el-button>
|
||||
<el-button
|
||||
:disabled="scope.row.status != '1'"
|
||||
:disabled="scope.row.status != '3'"
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@ -421,7 +421,7 @@
|
||||
},
|
||||
/** 审核按钮操作 */
|
||||
handleAudit(row) {
|
||||
if (this.curRowData.status != '1') {
|
||||
if (this.curRowData.status != '3') {
|
||||
this.$modal.alertWarning("只有待定状态的合约才可以审核!");
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user