248 lines
7.6 KiB
Vue
248 lines
7.6 KiB
Vue
|
|
<template>
|
|||
|
|
<!-- 编码出库-->
|
|||
|
|
<view class="page-container">
|
|||
|
|
<view class="complete-btn">
|
|||
|
|
<view class="btn" @click="changeTab(1)">
|
|||
|
|
<span>已完成</span>
|
|||
|
|
<div v-if="active == 1" class="bt-line"></div>
|
|||
|
|
</view>
|
|||
|
|
<view class="btn" style="margin-left: 120rpx" @click="changeTab(2)">
|
|||
|
|
<span>未完成</span>
|
|||
|
|
<div v-if="active == 2" class="bt-line"></div>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
<uni-row :gutter="24" class="search-form">
|
|||
|
|
<uni-col :span="12">
|
|||
|
|
<view>
|
|||
|
|
<uni-datetime-picker
|
|||
|
|
v-model="dateArray"
|
|||
|
|
type="daterange"
|
|||
|
|
@maskClick="maskClick"
|
|||
|
|
@change="onChangeDate"
|
|||
|
|
placeholder="选择日期范围"
|
|||
|
|
/>
|
|||
|
|
</view>
|
|||
|
|
</uni-col>
|
|||
|
|
<uni-col :span="8">
|
|||
|
|
<view>
|
|||
|
|
<uni-easyinput placeholder="请输入内容" v-model="queryParams.keyWord" />
|
|||
|
|
</view>
|
|||
|
|
</uni-col>
|
|||
|
|
<uni-col :span="4">
|
|||
|
|
<view class="search" @click="getTableList()">搜索</view>
|
|||
|
|
</uni-col>
|
|||
|
|
</uni-row>
|
|||
|
|
|
|||
|
|
<scroll-view scroll-y @scrolltolower="onScrollTolower" class="scroll-container">
|
|||
|
|
<view
|
|||
|
|
class="table-list-item"
|
|||
|
|
v-for="(item, index) in tableList"
|
|||
|
|
:key="index"
|
|||
|
|
@click="handleItem(item)"
|
|||
|
|
>
|
|||
|
|
<div class="line"></div>
|
|||
|
|
<uni-row :gutter="24">
|
|||
|
|
<uni-col :span="6">申请时间:</uni-col>
|
|||
|
|
<uni-col :span="18"
|
|||
|
|
><div class="cont">{{ item.createTime }}</div></uni-col
|
|||
|
|
>
|
|||
|
|
</uni-row>
|
|||
|
|
<uni-row :gutter="24">
|
|||
|
|
<uni-col :span="6">领料单号:</uni-col>
|
|||
|
|
<uni-col :span="18"
|
|||
|
|
><div class="cont">{{ item.code }}</div></uni-col
|
|||
|
|
>
|
|||
|
|
</uni-row>
|
|||
|
|
<uni-row :gutter="24">
|
|||
|
|
<uni-col :span="6">领料物资:</uni-col>
|
|||
|
|
<uni-col :span="18"
|
|||
|
|
><div class="cont">{{ item.purchaseMaTypeName }}</div></uni-col
|
|||
|
|
>
|
|||
|
|
</uni-row>
|
|||
|
|
<uni-row :gutter="24">
|
|||
|
|
<uni-col :span="6">领料单位:</uni-col>
|
|||
|
|
<uni-col :span="18"
|
|||
|
|
><div class="cont">{{ item.purchaseMaNumber }}</div></uni-col
|
|||
|
|
>
|
|||
|
|
</uni-row>
|
|||
|
|
<uni-row :gutter="24">
|
|||
|
|
<uni-col :span="6">领料工程:</uni-col>
|
|||
|
|
<uni-col :span="18"><div class="cont"></div></uni-col>
|
|||
|
|
</uni-row>
|
|||
|
|
<uni-row :gutter="24">
|
|||
|
|
<uni-col :span="6">领料人:</uni-col>
|
|||
|
|
<uni-col :span="18">
|
|||
|
|
<div class="cont">{{ item.leasePerson }}</div>
|
|||
|
|
</uni-col>
|
|||
|
|
</uni-row>
|
|||
|
|
<uni-row :gutter="24">
|
|||
|
|
<uni-col :span="6">预领数量:</uni-col>
|
|||
|
|
<uni-col :span="18">
|
|||
|
|
<div class="cont">{{ item.alNum }}</div>
|
|||
|
|
</uni-col>
|
|||
|
|
</uni-row>
|
|||
|
|
<uni-row :gutter="24">
|
|||
|
|
<uni-col :span="6">已领数量:</uni-col>
|
|||
|
|
<uni-col :span="18">
|
|||
|
|
<div class="cont">{{ item.alNum }}</div>
|
|||
|
|
</uni-col>
|
|||
|
|
</uni-row>
|
|||
|
|
<uni-row :gutter="24">
|
|||
|
|
<uni-col :span="6">待领数量:</uni-col>
|
|||
|
|
<uni-col :span="18">
|
|||
|
|
<div class="cont">{{ item.alNum }}</div>
|
|||
|
|
</uni-col>
|
|||
|
|
</uni-row>
|
|||
|
|
<uni-row :gutter="24">
|
|||
|
|
<uni-col :span="6">状态:</uni-col>
|
|||
|
|
<uni-col :span="18">
|
|||
|
|
<div class="cont">未完成</div>
|
|||
|
|
</uni-col>
|
|||
|
|
</uni-row>
|
|||
|
|
</view>
|
|||
|
|
<view class="loading-text"> {{ finish ? '没有更多数据了~' : '正在加载...' }} </view>
|
|||
|
|
</scroll-view>
|
|||
|
|
</view>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<script setup>
|
|||
|
|
import { ref, reactive } from 'vue'
|
|||
|
|
import { getPickingOutboundListAPI } from '@/services/picking/outbound.js'
|
|||
|
|
import { onLoad } from '@dcloudio/uni-app'
|
|||
|
|
const active = ref(1)
|
|||
|
|
const tableList = ref([])
|
|||
|
|
const statusList = ref(['3', '13', '4', '14', '19'])
|
|||
|
|
const finish = ref(false) // 判断数据是否加载完毕
|
|||
|
|
// 查询参数
|
|||
|
|
const queryParams = ref({
|
|||
|
|
startTime: '', // 开始时间
|
|||
|
|
endTime: '', // 结束时间
|
|||
|
|
keyWord: '',
|
|||
|
|
pageNum: 1,
|
|||
|
|
pageSize: 3,
|
|||
|
|
})
|
|||
|
|
const dateArray = ref([]) //日期范围
|
|||
|
|
|
|||
|
|
// 日期 change 事件
|
|||
|
|
const onChangeDate = (val) => {
|
|||
|
|
const [val_1, val_2] = val
|
|||
|
|
queryParams.value.startTime = val_1
|
|||
|
|
queryParams.value.endTime = val_2
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 获取列表数据
|
|||
|
|
const getTableList = async () => {
|
|||
|
|
console.log('queryParams.value查询参数', queryParams.value)
|
|||
|
|
const res = await getPickingOutboundListAPI(queryParams.value)
|
|||
|
|
if (res.total > tableList.value.length) {
|
|||
|
|
tableList.value = [...tableList.value, ...res.rows]
|
|||
|
|
} else {
|
|||
|
|
finish.value = true
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 页面加载完毕
|
|||
|
|
onLoad(() => {
|
|||
|
|
getTableList()
|
|||
|
|
})
|
|||
|
|
|
|||
|
|
// 滚动触底事件
|
|||
|
|
const onScrollTolower = () => {
|
|||
|
|
if (!finish.value) {
|
|||
|
|
queryParams.value.pageNum++
|
|||
|
|
}
|
|||
|
|
getTableList()
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// tap 栏切换
|
|||
|
|
const changeTab = (index) => {
|
|||
|
|
active.value = index
|
|||
|
|
if (index == 1) {
|
|||
|
|
statusList.value = ['3', '13', '4', '14', '19']
|
|||
|
|
getTableList()
|
|||
|
|
} else if (index == 2) {
|
|||
|
|
statusList.value = ['2', '12']
|
|||
|
|
getTableList()
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
// 点击跳转
|
|||
|
|
const handleItem = (item) => {
|
|||
|
|
console.log('🚀 ~ handleItem ~ item:', item)
|
|||
|
|
// uni.navigateTo({ url: '/pages/new-purchase/accept/acceptDetails' })
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
const maskClick = () => {}
|
|||
|
|
</script>
|
|||
|
|
|
|||
|
|
<style lang="scss" scoped>
|
|||
|
|
.page-container {
|
|||
|
|
display: flex;
|
|||
|
|
height: 100%;
|
|||
|
|
padding: 0 15rpx;
|
|||
|
|
flex-direction: column;
|
|||
|
|
|
|||
|
|
.complete-btn {
|
|||
|
|
display: flex;
|
|||
|
|
padding: 20rpx;
|
|||
|
|
.btn {
|
|||
|
|
display: flex;
|
|||
|
|
flex-direction: column;
|
|||
|
|
align-items: center;
|
|||
|
|
font-size: 30rpx;
|
|||
|
|
font-weight: 800;
|
|||
|
|
}
|
|||
|
|
.bt-line {
|
|||
|
|
width: 80rpx;
|
|||
|
|
height: 4rpx;
|
|||
|
|
background-color: #3784fb;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.search-form {
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
box-sizing: content-box;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.search {
|
|||
|
|
height: 65rpx;
|
|||
|
|
background-color: #3784fb;
|
|||
|
|
text-align: center;
|
|||
|
|
line-height: 65rpx;
|
|||
|
|
color: #fff;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.scroll-container {
|
|||
|
|
.table-list-item {
|
|||
|
|
margin: 20rpx 0;
|
|||
|
|
padding: 20rpx;
|
|||
|
|
background-color: #fff;
|
|||
|
|
min-height: 300rpx;
|
|||
|
|
border-radius: 10rpx;
|
|||
|
|
.title {
|
|||
|
|
display: flex;
|
|||
|
|
justify-content: space-between;
|
|||
|
|
align-items: center;
|
|||
|
|
}
|
|||
|
|
.cont {
|
|||
|
|
display: flex;
|
|||
|
|
justify-content: flex-end;
|
|||
|
|
line-height: 1.9;
|
|||
|
|
}
|
|||
|
|
.line {
|
|||
|
|
margin: 20rpx 0;
|
|||
|
|
height: 1px;
|
|||
|
|
background-color: #e8e8e8;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
// 加载提示文字
|
|||
|
|
.loading-text {
|
|||
|
|
text-align: center;
|
|||
|
|
font-size: 28rpx;
|
|||
|
|
color: #666;
|
|||
|
|
padding: 20rpx 0;
|
|||
|
|
}
|
|||
|
|
</style>
|