feat(AppInsuranceAudit): 添加审批组件并优化投保页面
- 新增 AiAudit 组件用于审批操作 - 在投保页面引入并使用 AiAudit 组件 - 优化投保页面布局和样式
This commit is contained in:
19
project/xumu/components/AiAudit.vue
Normal file
19
project/xumu/components/AiAudit.vue
Normal 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>
|
||||
Reference in New Issue
Block a user