feat(hrm): 新增拨款申请功能并修复仓储显示问题
- 添加拨款申请相关组件、API及页面逻辑 - 修复仓储模块列表显示边框和内容插槽问题 - 更新版本记录至5.2.3版本
This commit is contained in:
@@ -96,17 +96,6 @@
|
||||
height="700rpx"
|
||||
>
|
||||
<view class="popup-container">
|
||||
<!-- 弹窗标题栏 -->
|
||||
<!-- <view class="popup-header">
|
||||
<text class="popup-title">入库单明细</text>
|
||||
<uni-icon
|
||||
type="close"
|
||||
size="24"
|
||||
class="close-icon"
|
||||
@click="$refs.popup.close()"
|
||||
></uni-icon>
|
||||
</view> -->
|
||||
|
||||
<view class="detail-scroll">
|
||||
<view class="detail-document">
|
||||
<!-- 明细头部 -->
|
||||
@@ -116,9 +105,9 @@
|
||||
</view> -->
|
||||
|
||||
<!-- 明细列表 -->
|
||||
<uni-list v-if="warehouseTaskList.length > 0" border="false">
|
||||
<uni-list v-if="warehouseTaskList.length > 0" :border="false">
|
||||
<uni-list-item class="detail-item" v-for="(item, index) in warehouseTaskList" :key="index">
|
||||
<view class="detail-content">
|
||||
<view class="detail-content" slot="body">
|
||||
<view class="detail-title">
|
||||
<text class="item-num">{{ index + 1 }}.</text>
|
||||
<text class="item-name">{{ item.warehouseName }}</text>
|
||||
@@ -277,6 +266,7 @@ export default {
|
||||
showDetail(item) {
|
||||
this.currentItem = item;
|
||||
this.$refs.popup.open();
|
||||
console.log(item.warehouseList)
|
||||
this.warehouseTaskList = item.warehouseList || [];
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user