feat(AppInsuranceAudit): 添加审批组件并优化投保页面

- 新增 AiAudit 组件用于审批操作
- 在投保页面引入并使用 AiAudit 组件
- 优化投保页面布局和样式
This commit is contained in:
aixianling
2025-01-17 09:25:50 +08:00
parent e5abd1514b
commit 3fbde7f193
2 changed files with 26 additions and 6 deletions

View File

@@ -0,0 +1,19 @@
<script>
const options = [
{ dictValue: 2, dictName: '同意' },
{ dictValue: 3, dictName: '不同意' }
]
export default {
name: "AiAudit",
data() {
return {
options, auditStatus: ""
}
},
}
</script>
<template>
<section class="AiAudit">
<ai-select v-model="auditStatus" :select-list="options" v-bind="$attrs" v-on="$listeners" />
</section>
</template>