<template>
|
<view class="page">
|
<view class="inventory-locno-bg"/>
|
<u-navbar title="库位" :background="background" :border-bottom="false" :title-bold="true" title-color="#000" back-icon-color="#000"/>
|
<view class="inventory-locno-search">
|
<u-search v-model="keywords" shape="square" bg-color="rgba(250,252,255,0.36)" :show-action="false" placeholder="请输入库位号" @clear="search" @custom="search" @search="search">
|
</u-search>
|
</view>
|
<view class="wrap">
|
<scroll-view class="inventory-locno-scroll-list" scroll-y="true" @scrolltolower="loadMore">
|
<u-cell-group class="inventory-locno-scroll-list-group" :border="false">
|
<view class="content" v-for="(item, index) in list" :key="item.locNo" :index="index"
|
@click="selectNo(item.locNo)">
|
<view class="content-header">
|
<view class="content-header-icon"></view>
|
<view class="content-header-title">{{ item.locName }}</view>
|
</view>
|
<view class="content-body">
|
<view class="row-list">
|
<view class="_label">
|
<view class="_label-icon-1">
|
</view>
|
<view class="_label-name">库位编号:</view>
|
</view>
|
<view class="_content">
|
{{ item.locNo }}
|
</view>
|
</view>
|
<view class="row-list">
|
<view class="_label">
|
<view class="_label-icon-2">
|
</view>
|
<view class="_label-name">库位类型:</view>
|
</view>
|
<view class="_content">
|
{{ item.locTypeName }}
|
</view>
|
</view>
|
<view class="row-list">
|
<view class="_label">
|
<view class="_label-icon-3">
|
</view>
|
<view class="_label-name">库位状态:</view>
|
</view>
|
<view class="_content s1">
|
{{ item.locStatusName }}
|
</view>
|
</view>
|
</view>
|
</view>
|
</u-cell-group>
|
<view class="loadmore" @click="loadMore">
|
<u-loadmore :status="loadStatus"></u-loadmore>
|
</view>
|
</scroll-view>
|
</view>
|
</view>
|
</template>
|
<script>
|
import content_bg from '@/static/custom/inventory/locNoBg.png'
|
export default {
|
data() {
|
return {
|
background:{
|
backgroundImage: `url(${content_bg})`,
|
backgroundAttachment: 'fixed',
|
backgroundSize: '100% auto',
|
backgroundRepeat: 'no-repeat',
|
},
|
keywords: '',
|
alllist: [],
|
originList: [],
|
|
query: {
|
current: 1,
|
size: 10
|
},
|
list: [],
|
count: 0,
|
loadStatus: 'loading'
|
};
|
},
|
onLoad() {
|
this.$u.api.pigxWareHouse.fetchList().then(res => {
|
this.alllist = res.data
|
this.originList = res.data
|
this.loadList()
|
})
|
},
|
methods: {
|
loadMore() {
|
if(this.loadStatus == "nomore" || this.loadStatus == "loading"){
|
return
|
}
|
this.loadStatus = "loading";
|
setTimeout(() => {
|
this.query.current += 1;
|
this.loadList();
|
}, 100);
|
},
|
loadList() {
|
const data = this.originList.slice((this.query.current-1)*this.query.size,this.query.current*this.query.size)
|
this.list = this.list.concat(data);
|
this.loadStatus = "loadmore";
|
if (!data || data.length < this.query.size) {
|
this.loadStatus = "nomore";
|
}
|
},
|
optionsClick(rowIndex, btnIndex) {
|
if (btnIndex == 0) {
|
let self = this;
|
uni.showModal({
|
title: '提示',
|
content: '确认要删除该数据吗?',
|
showCancel: true,
|
success: function(res2) {
|
if (res2.confirm) {
|
let row = self.list[rowIndex];
|
self.$u.api.pigxUser.delete({
|
id: row.userId
|
}).then(res => {
|
self.$u.toast('删除成功');
|
self.query.current = 1
|
self.list = []
|
self.loadList()
|
});
|
}
|
}
|
});
|
}
|
},
|
search(value) {
|
this.list = [];
|
this.query.current = 1;
|
if (value) {
|
this.originList = this.alllist.filter(item => item.locNo.includes(value))
|
} else {
|
this.originList = this.alllist
|
}
|
this.loadList()
|
},
|
selectNo(no) {
|
this.refreshLastPage(no)
|
},
|
|
//刷新上一个页面
|
refreshLastPage(no) {
|
// 告知 A.vue 更新数据
|
// 获取页面栈
|
let pages = getCurrentPages()
|
|
// 获取上一页栈
|
let prevPage = pages[pages.length - 2]
|
|
// 触发上一页 upData 函数(并携带参数)
|
prevPage.$vm.setNo(no)
|
|
// 返回上一页
|
uni.navigateBack({
|
delta: 1
|
})
|
},
|
}
|
};
|
</script>
|
<style lang="scss">
|
.inventory-locno-bg{
|
background-color: #F6F9FF;
|
background-image: url('~@/static/custom/inventory/locNoBg.png');
|
// background: linear-gradient(180deg,rgba(206,227,254,1),rgba(206,227,254,1) 20%,rgba(206,227,254,0.5) 40%,rgba(206,227,254,0.25) 60%,rgba(206,227,254,0.08) 80%,rgba(206,227,254,0));
|
padding: 0 20rpx;
|
background-attachment: fixed;
|
background-size: 100% auto;
|
background-repeat: no-repeat;
|
position: fixed;
|
top: 0;
|
bottom: 0;
|
width: 100%;
|
z-index: -1;
|
}
|
|
.inventory-locno-search{
|
padding: 40rpx 30rpx 20rpx 30rpx;
|
}
|
|
.wrap .inventory-locno-scroll-list{
|
height:calc(100vh - var(--window-top) - var(--window-bottom) - 242rpx);
|
width:100%;
|
}
|
.inventory-locno-scroll-list-group{
|
::v-deep .u-cell-item-box {
|
background-color:rgba(250,252,255,0.36) !important;
|
padding:0rpx 30rpx ;
|
}
|
.content {
|
font-size: 12px;
|
background-color: #FFFFFF;
|
box-sizing: border-box;
|
border-radius: 10rpx;
|
margin: 0rpx 0rpx 16rpx;
|
height: 298rpx;
|
padding: 10rpx 20rpx;
|
box-shadow: none;
|
.content-header{
|
height: 90rpx;
|
display: flex;
|
align-items:center;
|
.content-header-icon{
|
background-image: url('~@/static/custom/moveWareHouse/header_icon.png');
|
background-size: 100% auto;
|
background-repeat: no-repeat;
|
height:28rpx;
|
width:28rpx;
|
}
|
.content-header-title{
|
margin-left: 11rpx;
|
font-size: 26rpx;
|
font-weight: bold;
|
color: #333333;
|
}
|
}
|
.content-body{
|
height:184rpx;
|
background: #F5F9FF;
|
border-radius: 10rpx;
|
padding: 0rpx 23rpx;
|
.row-list {
|
height: 60rpx;
|
display: flex;
|
flex-direction: row;
|
padding: 0px;
|
align-items: center;
|
}
|
.row-list ._label {
|
display: flex;
|
flex: 0.8;
|
color: #909399;
|
align-items: center;
|
._label-icon-1{
|
background-image: url('~@/static/custom/moveWareHouse/label-icon-1.png');
|
background-size: 100% auto;
|
background-repeat: no-repeat;
|
height:26rpx;
|
width:26rpx;
|
}
|
._label-icon-2{
|
background-image: url('~@/static/custom/moveWareHouse/label-icon-2.png');
|
background-size: 100% auto;
|
background-repeat: no-repeat;
|
height:26rpx;
|
width:26rpx;
|
}
|
._label-icon-3{
|
background-image: url('~@/static/custom/moveWareHouse/label-icon-3.png');
|
background-size: 100% auto;
|
background-repeat: no-repeat;
|
height:26rpx;
|
width:26rpx;
|
}
|
._label-name{
|
margin-left: 11rpx;
|
font-size: 26rpx;
|
font-weight: 500;
|
color: #666666;
|
}
|
}
|
|
.row-list ._content {
|
flex: 1.5;
|
text-align: right;
|
color: #909399;
|
font-size: 24rpx;
|
}
|
.row-list .s1 {
|
color:#D35651;
|
}
|
}
|
}
|
}
|
|
</style>
|