feat(hrm): 新增拨款申请功能并修复仓储显示问题

- 添加拨款申请相关组件、API及页面逻辑
- 修复仓储模块列表显示边框和内容插槽问题
- 更新版本记录至5.2.3版本
This commit is contained in:
砂糖
2026-04-14 09:33:58 +08:00
parent f91ab6d45f
commit 05ff3391c7
10 changed files with 481 additions and 26 deletions

View File

@@ -1,6 +1,6 @@
<template>
<view class="">
<view v-if="files" class="attachment-list">
<view v-if="files && attachmentFiles.length !== 0" class="attachment-list">
<view v-for="(file, index) in attachmentFiles" :key="`${file.ossId}_${index}`" class="attachment-item"
@click="previewFile(file)">
<view class="file-icon">
@@ -15,7 +15,7 @@
</view>
</view>
</view>
<view v-if="files && attachmentFiles.length === 0" class="no-attachment">
<view v-else="files " class="no-attachment">
暂无附件
</view>
</view>