From 3fbde7f1933dab86f60f3a745fa2d9352593c480 Mon Sep 17 00:00:00 2001 From: aixianling Date: Fri, 17 Jan 2025 09:25:50 +0800 Subject: [PATCH] =?UTF-8?q?feat(AppInsuranceAudit):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=AE=A1=E6=89=B9=E7=BB=84=E4=BB=B6=E5=B9=B6=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E6=8A=95=E4=BF=9D=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增 AiAudit 组件用于审批操作 - 在投保页面引入并使用 AiAudit 组件 - 优化投保页面布局和样式 --- project/xumu/AppInsuranceAudit/add.vue | 13 +++++++------ project/xumu/components/AiAudit.vue | 19 +++++++++++++++++++ 2 files changed, 26 insertions(+), 6 deletions(-) create mode 100644 project/xumu/components/AiAudit.vue diff --git a/project/xumu/AppInsuranceAudit/add.vue b/project/xumu/AppInsuranceAudit/add.vue index e4d95061..cd7fb23c 100644 --- a/project/xumu/AppInsuranceAudit/add.vue +++ b/project/xumu/AppInsuranceAudit/add.vue @@ -2,6 +2,7 @@ import { mapState } from "vuex" import AiEartagPicker from "@project/xumu/components/AiEartagPicker.vue"; import AiIdcardRemote from "@project/xumu/components/AiIdcardRemote.vue"; +import AiAudit from "../components/AiAudit.vue"; const columns = [ { label: "序号", type: "index" }, @@ -11,7 +12,7 @@ const columns = [ ] export default { name: "iaAdd", - components: { AiIdcardRemote, AiEartagPicker }, + components: { AiIdcardRemote, AiEartagPicker, AiAudit}, props: { instance: Function, permissions: Function, @@ -129,8 +130,8 @@ export default { - + @@ -163,7 +164,8 @@ export default {
- +
@@ -181,8 +183,7 @@ export default {
- + diff --git a/project/xumu/components/AiAudit.vue b/project/xumu/components/AiAudit.vue new file mode 100644 index 00000000..b247c974 --- /dev/null +++ b/project/xumu/components/AiAudit.vue @@ -0,0 +1,19 @@ + + \ No newline at end of file