feat(xumu): 新增理赔申请和贷款申请功能

- 添加理赔申请和贷款申请的路由、页面组件和相关逻辑
- 实现理赔申请和贷款申请的数据获取、表单提交和审核流程
- 优化耳标选择器组件,支持在不同场景下的使用
- 调整图片上传组件,增加只读模式和预览功能
This commit is contained in:
aixianling
2025-01-02 15:30:44 +08:00
parent b6dcddac6f
commit 437ae1425c
12 changed files with 730 additions and 92 deletions

View File

@@ -11,8 +11,13 @@
<slot name="footer"/>
</template>
<div v-else class="dialog-footer" slot="footer">
<el-button @click="onCancel">取消</el-button>
<el-button @click="onConfirm" type="primary">确认</el-button>
<template v-if="$slots.foot">
<slot name="foot"/>
</template>
<template v-else>
<el-button @click="onCancel">取消</el-button>
<el-button @click="onConfirm" type="primary">确认</el-button>
</template>
</div>
</el-dialog>
</section>
@@ -144,7 +149,7 @@ export default {
}
.el-button {
width: 92px !important;
min-width: 92px !important;
}
}