1、完善合约状态字典,以适应多部门流程化操作,初创版直接从申请阶段执行。合约审核后,需要执行完善会员信息和认领菜地2个操作。

2、将菜单会员签约改成合约登记,将农场会员改成会员入驻(实际是执行合约的完善会员信息和认领菜地步骤)。
This commit is contained in:
jlt
2022-04-05 13:55:17 +08:00
parent c703bb5da1
commit 813671020b
4 changed files with 81 additions and 39 deletions

View File

@ -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;
}