This commit is contained in:
123 2025-06-04 15:52:06 +08:00
commit 32286efe79

View File

@ -81,6 +81,7 @@
</el-card>
<!-- 添加或修改合同信息对话框 -->
<el-dialog :title="dialog.title" v-model="dialog.visible" width="500px" append-to-body>
<el-form ref="contractInfoFormRef" :model="form" :rules="rules" label-width="110px">
<el-form ref="contractInfoFormRef" :model="form" :rules="rules" label-width="110px">
<el-form-item label="合同编码" prop="contractCode">
<el-input v-model="form.contractCode" placeholder="请输入合同编码" />
@ -182,6 +183,7 @@ const data = reactive<PageData<ContractInfoForm, ContractInfoQuery>>({
const { queryParams, form, rules } = toRefs(data);
const { manage_contract_type,manage_contract_level } = toRefs<any>(proxy?.useDict('manage_contract_type','manage_contract_level'));
const { manage_contract_type,manage_contract_level } = toRefs<any>(proxy?.useDict('manage_contract_type','manage_contract_level'));
/** 查询合同信息列表 */
const getList = async () => {