@@ -1518,8 +1518,17 @@ function customSelectorSelection( | |||
) | |||
handleTotalPrices(form) | |||
} | |||
if (title === 'qtSign') { | |||
field.value.field.forEach((item) => { | |||
if (item.prop === 'qdSignUrl') { | |||
item.form.required = value === '1' ? false : true | |||
console.log(item.form.required, ' item.form.required') | |||
} | |||
}) | |||
} | |||
} | |||
const totalPrices = ref(0) | |||
const handleTotalPrices = (form) => { | |||
// let equityPrice = 0 | |||
// form.equityServicesId.forEach((item) => { |
@@ -64,6 +64,7 @@ export default defineConfig(({ command, mode }) => { | |||
server: { | |||
host: '0.0.0.0', | |||
port: 8085, | |||
hmr:true, | |||
open: true, // 类型: boolean | string在服务器启动时自动在浏览器中打开应用程序; | |||
cors: true, // 类型: boolean | CorsOptions 为开发服务器配置 CORS。默认启用并允许任何源 | |||
proxy: { |