更新优化

This commit is contained in:
weipengfei 2023-09-11 15:06:15 +08:00
parent 695fdef530
commit 391901b499
3 changed files with 9 additions and 1 deletions

View File

@ -128,6 +128,11 @@
/>
</template>
</el-table-column>
<el-table-column
label="更新时间"
prop="update_time"
show-overflow-tooltip
/>
<el-table-column label="操作" width="120" fixed="right">
<template #default="{ row }">
<el-button

View File

@ -694,6 +694,9 @@ const showCreateConctPop = (row) => {
(contractId.value = row.id);
};
const InitiateContract = async () => {
if (!contractFormData.value.party_a) return ElMessage.error("甲方不能为空");
if (!contractFormData.value.contract_type)
return ElMessage.error("合同类型不能为空");
await initiate_contract({
id: contractId.value,
...contractFormData.value,

View File

@ -10,7 +10,7 @@
placeholder="请输入订单编号"
/>
</el-form-item>
<el-form-item label="用户id" prop="nickname">
<el-form-item label="用户" prop="nickname">
<el-input
class="w-[280px]"
v-model="queryParams.nickname"