From e6a86770788ee116c7d196b63b05ec4e1c993595 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Fri, 9 Jan 2026 19:00:17 +0800 Subject: [PATCH] =?UTF-8?q?feat(house):=20=E6=B7=BB=E5=8A=A0=E6=88=BF?= =?UTF-8?q?=E5=B1=8B=E4=BF=A1=E6=81=AF=E8=A1=A8=E5=8D=95=E4=B8=AD=E7=9A=84?= =?UTF-8?q?=E5=8D=95=E4=BD=8D=E5=AD=97=E6=AE=B5=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在房屋信息模型中添加了租金单位、月租金单位和面积单位字段 - 修改表单界面为面积、单价和总价字段添加单位输入框 - 更新字典选择器的代码配置从 premium 到 premium2 - 设置默认单位值为泰铢和泰铢/菜 - 修复表单提交时使用正确的租金字段映射 --- src/components/DictSelect/index.vue | 84 +++++++++++++++++-- src/views/house/info/components/info-edit.vue | 1 + .../house/maimai/components/info-edit.vue | 12 +-- 3 files changed, 83 insertions(+), 14 deletions(-) diff --git a/src/components/DictSelect/index.vue b/src/components/DictSelect/index.vue index bdcc5c8..4547a26 100644 --- a/src/components/DictSelect/index.vue +++ b/src/components/DictSelect/index.vue @@ -5,7 +5,7 @@ :show-search="true" optionFilterProp="label" :options="data" - :value="value" + :value="innerValue" :placeholder="placeholder" @update:value="updateValue" :style="`width: ${width}px`" @@ -15,13 +15,14 @@