更新
This commit is contained in:
parent
3cfbbe1637
commit
814949729e
@ -50,9 +50,9 @@
|
|||||||
<el-radio :label="2">拒绝</el-radio>
|
<el-radio :label="2">拒绝</el-radio>
|
||||||
</el-radio-group>
|
</el-radio-group>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-if="formData.status == 2" label="备注" prop="notes">
|
<el-form-item v-if="formData.status == 2" label="备注" prop="deny_desc">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="formData.notes"
|
v-model="formData.deny_desc"
|
||||||
clearable
|
clearable
|
||||||
type="textarea"
|
type="textarea"
|
||||||
placeholder="请输入备注"
|
placeholder="请输入备注"
|
||||||
@ -125,7 +125,7 @@ const formData = reactive({
|
|||||||
amount: "",
|
amount: "",
|
||||||
status: "",
|
status: "",
|
||||||
transfer_voucher: "",
|
transfer_voucher: "",
|
||||||
notes: "",
|
deny_desc: "",
|
||||||
});
|
});
|
||||||
|
|
||||||
// 表单验证
|
// 表单验证
|
||||||
@ -151,7 +151,7 @@ const formRules = reactive<any>({
|
|||||||
trigger: ["blur"],
|
trigger: ["blur"],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
notes: [
|
deny_desc: [
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: "请填写拒绝原因",
|
message: "请填写拒绝原因",
|
||||||
|
@ -9,12 +9,12 @@
|
|||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="12">姓名: 张三三</el-col>
|
<el-col :span="12">姓名: 张三三</el-col>
|
||||||
<el-col :span="12">电话: 1888888888888</el-col>
|
<el-col :span="12">电话: 1888888888888</el-col>
|
||||||
<el-col :span="24">身份: 超级管理员</el-col>
|
<el-col :span="24">角色: 超级管理员</el-col>
|
||||||
<el-col :span="12"
|
<el-col :span="12"
|
||||||
>押金: <span style="color: #e6a23c">0.00</span>元
|
>押金: <span style="color: #e6a23c; font-weight: bold">0.00</span>元
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12"
|
<el-col :span="12"
|
||||||
>收益: <span style="color: #67c23a">0.00</span>元
|
>收益: <span style="color: #67c23a; font-weight: bold">0.00</span>元
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user