用户中心和采购计划完善
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<view class="container">
|
||||
<!-- 采购单列表(滚动加载区域) -->
|
||||
<!-- 出库单列表(滚动加载区域) -->
|
||||
<scroll-view
|
||||
scroll-y
|
||||
@scrolltolower="loadMore"
|
||||
@@ -19,7 +19,7 @@
|
||||
>
|
||||
<!-- 单据头部 -->
|
||||
<view class="doc-header">
|
||||
<view class="doc-title">采购单</view>
|
||||
<view class="doc-title">出库单</view>
|
||||
<uni-tag
|
||||
:type="item.status === 1 ? 'success' : 'warning'"
|
||||
class="status-tag"
|
||||
@@ -72,7 +72,7 @@
|
||||
<!-- 空状态 -->
|
||||
<view class="empty-state" v-else-if="!loading && TaskList.length === 0">
|
||||
<uni-icon type="empty" size="60" color="#ccc"></uni-icon>
|
||||
<text class="empty-text">暂无采购单数据</text>
|
||||
<text class="empty-text">暂无出库单数据</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@@ -98,7 +98,7 @@
|
||||
<view class="popup-container">
|
||||
<!-- 弹窗标题栏 -->
|
||||
<!-- <view class="popup-header">
|
||||
<text class="popup-title">采购单明细</text>
|
||||
<text class="popup-title">出库单明细</text>
|
||||
<uni-icon
|
||||
type="close"
|
||||
size="24"
|
||||
@@ -156,7 +156,7 @@
|
||||
|
||||
<view class="empty-state" v-else>
|
||||
<uni-icon type="empty" size="50" color="#ccc"></uni-icon>
|
||||
<text class="empty-text">暂无采购单明细</text>
|
||||
<text class="empty-text">暂无出库单明细</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -173,7 +173,7 @@ export default {
|
||||
name: "PurchaseOrderList",
|
||||
data() {
|
||||
return {
|
||||
// 采购单列表数据
|
||||
// 出库单列表数据
|
||||
TaskList: [],
|
||||
// 详情数据
|
||||
warehouseTaskList: [],
|
||||
@@ -219,7 +219,7 @@ export default {
|
||||
this.getList();
|
||||
},
|
||||
|
||||
/** 查询采购单列表 */
|
||||
/** 查询出库单列表 */
|
||||
getList() {
|
||||
// 显示加载状态
|
||||
this.loading = true;
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user