This commit is contained in:
weipengfei 2023-09-09 20:07:55 +08:00
parent 3cfbbe1637
commit 814949729e
2 changed files with 7 additions and 7 deletions

View File

@ -50,9 +50,9 @@
<el-radio :label="2">拒绝</el-radio>
</el-radio-group>
</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
v-model="formData.notes"
v-model="formData.deny_desc"
clearable
type="textarea"
placeholder="请输入备注"
@ -125,7 +125,7 @@ const formData = reactive({
amount: "",
status: "",
transfer_voucher: "",
notes: "",
deny_desc: "",
});
//
@ -151,7 +151,7 @@ const formRules = reactive<any>({
trigger: ["blur"],
},
],
notes: [
deny_desc: [
{
required: true,
message: "请填写拒绝原因",

View File

@ -9,12 +9,12 @@
<el-row>
<el-col :span="12">姓名: 张三三</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"
>押金: <span style="color: #e6a23c">0.00</span>
>押金: <span style="color: #e6a23c; font-weight: bold">0.00</span>
</el-col>
<el-col :span="12"
>收益: <span style="color: #67c23a">0.00</span>
>收益: <span style="color: #67c23a; font-weight: bold">0.00</span>
</el-col>
</el-row>
</div>