修改bug
This commit is contained in:
parent
afc498fdbe
commit
11a21317ef
|
|
@ -70,15 +70,32 @@
|
|||
<a-col :span="12">
|
||||
<a-form-item label="工单状态" v-bind="validateInfos.status" id="WorkOrderForm-status" name="status">
|
||||
<a-input v-model:value="formData.status_dictText" disabled allow-clear></a-input>
|
||||
<!-- {{ formData.status_dictText }} -->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="12">
|
||||
<a-col :span="12" v-show="formData.netUrl">
|
||||
<a-form-item label="访问地址" v-bind="validateInfos.netUrl" id="WorkOrderForm-netUrl"
|
||||
name="netUrl">
|
||||
<a-input v-model:value="formData.netUrl" placeholder="请输入访问地址" :maxlength="100" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="12" v-show="formData.accountNo">
|
||||
<a-form-item label="账号" v-bind="validateInfos.accountNo" id="WorkOrderForm-accountNo"
|
||||
name="accountNo">
|
||||
<a-input v-model:value="formData.accountNo" placeholder="请输入账号" :maxlength="100" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="12" v-show="formData.passwordText">
|
||||
<a-form-item label="密码" v-bind="validateInfos.passwordText" id="WorkOrderForm-passwordText"
|
||||
name="passwordText">
|
||||
<a-input v-model:value="formData.passwordText" placeholder="请输入密码" :maxlength="100" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="12" v-show="formData.replyFile">
|
||||
<a-form-item label="反馈附件" v-bind="validateInfos.replyFile" id="WorkOrderForm-replyFile" name="replyFile">
|
||||
<JUpload v-model:value="formData.replyFile" :maxCount="1"></JUpload>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="12">
|
||||
<a-col :span="12" v-show="formData.replyContent">
|
||||
<a-form-item label="反馈内容" v-bind="validateInfos.replyContent" id="WorkOrderForm-replyContent"
|
||||
name="replyContent">
|
||||
<a-textarea v-model:value="formData.replyContent" :autosize="{ minRows: 1 }" :disabled="false" />
|
||||
|
|
@ -130,6 +147,9 @@ const formData = reactive<Record<string, any>>({
|
|||
handleBy: '',
|
||||
replyContent: '',
|
||||
replyFile: '',
|
||||
netUrl: '',
|
||||
accountNo: '',
|
||||
passwordText: '',
|
||||
});
|
||||
const { createMessage } = useMessage();
|
||||
const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 5 } });
|
||||
|
|
|
|||
Loading…
Reference in New Issue