|
@@ -0,0 +1,209 @@
|
|
|
+<template>
|
|
|
+ <view class="content flex flex_column">
|
|
|
+ <view class="searchBar">
|
|
|
+ <view class="search flex align_center">
|
|
|
+ <view class="input">
|
|
|
+ <u-search
|
|
|
+ focus
|
|
|
+ v-model="queryWord"
|
|
|
+ @input="change"
|
|
|
+ @custom="getpartList"
|
|
|
+ @search="getpartList"
|
|
|
+ @clear="clearSearch"
|
|
|
+ :height="80"
|
|
|
+ bg-color="#fff"
|
|
|
+ :action-style="{border:'0.1rpx solid #00aaff',borderRadius:'50rpx',color:'#00aaff'}"
|
|
|
+ placeholder="请输入产品编码或名称搜索"></u-search>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="check-list">
|
|
|
+ <scroll-view scroll-y class="scroll-view" @scrolltolower="onreachBottom">
|
|
|
+ <view class="partList-list-box" v-for="item in partList" :key="item.id">
|
|
|
+ <view class="product flex align_center" @click="toEdit(item)">
|
|
|
+ <view class="flex align_center flex_1">
|
|
|
+ <view class="pimgs">
|
|
|
+ <u-image :src="item.images?item.images:`/static/def_imgs.png`" width="128" height="128" border-radius="10"></u-image>
|
|
|
+ </view>
|
|
|
+ <view class="pinfo">
|
|
|
+ <view class="pname">
|
|
|
+ <text>{{item.shelfPlaceCode}}</text>{{item.code}}
|
|
|
+ </view>
|
|
|
+ <view class="ptxt flex align_center justify_between">
|
|
|
+ <view>
|
|
|
+ <text class="pcode">{{item.name}}</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view style="padding: 20upx;">
|
|
|
+ <u-empty :src="`/static/nodata.png`" icon-size="180" :text="noDataText" img-width="120" v-if="partList.length==0 && status!='loading'" mode="list"></u-empty>
|
|
|
+ <u-loadmore v-if="(total>=partList.length&&partList.length)||status=='loading'" :status="status" />
|
|
|
+ </view>
|
|
|
+ </scroll-view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ import { getShelfProductList } from '@/api/shelf'
|
|
|
+ export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ queryWord: '',
|
|
|
+ shelfName:'',
|
|
|
+ shelfSn: '',
|
|
|
+ pageNo:1,
|
|
|
+ pageSize: 20,
|
|
|
+ total: 0, // 列表总数
|
|
|
+ noDataText: '暂无产品',
|
|
|
+ status: 'nomore',
|
|
|
+ partList: [],
|
|
|
+ }
|
|
|
+ },
|
|
|
+ onLoad(opts) {
|
|
|
+ this.shelfSn = this.$store.state.vuex_storeShelf.shelfSn
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ //取货
|
|
|
+ toEdit(item){
|
|
|
+ const params = Object.assign({shelfSn: this.shelfSn, billSource: 'product_code'},item)
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages/queryByCode/confirmQh?data='+ encodeURIComponent(JSON.stringify(params))
|
|
|
+ })
|
|
|
+ },
|
|
|
+ clearSearch(){
|
|
|
+ this.queryWord = ''
|
|
|
+ this.pageNo = 1
|
|
|
+ this.partList = []
|
|
|
+ },
|
|
|
+ change(v){
|
|
|
+ if(v==''){
|
|
|
+ this.clearSearch()
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 获取数字货架列表
|
|
|
+ getpartList(){
|
|
|
+ const _this = this
|
|
|
+ let params = {
|
|
|
+ pageNo: this.pageNo,
|
|
|
+ pageSize: this.pageSize,
|
|
|
+ code: this.queryWord,
|
|
|
+ }
|
|
|
+ _this.status = 'loading'
|
|
|
+ getShelfProductList(params).then(res => {
|
|
|
+ uni.hideLoading()
|
|
|
+ if(res.status == 200){
|
|
|
+ let list = res.data.list
|
|
|
+ console.log(list)
|
|
|
+ if (list && list.length){
|
|
|
+ // 分页 拼接数据
|
|
|
+ if (_this.pageNo != 1) {
|
|
|
+ _this.partList = _this.partList ? _this.partList.concat(list) : list
|
|
|
+ } else {
|
|
|
+ _this.partList = list
|
|
|
+ }
|
|
|
+ this.total = res.data.count
|
|
|
+ if (_this.partList.length == res.data.count) {
|
|
|
+ _this.status = 'nomore'
|
|
|
+ } else {
|
|
|
+ _this.status = 'loadmore'
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ _this.partList = list || []
|
|
|
+ this.total = 0
|
|
|
+ _this.status = 'nomore'
|
|
|
+ }
|
|
|
+ _this.noDataText = '暂无匹配产品'
|
|
|
+ }else{
|
|
|
+ _this.status = 'loadmore'
|
|
|
+ _this.partList = []
|
|
|
+ _this.total = 0
|
|
|
+ _this.noDataText = res.message ? res.message : '网络似乎出错了,请稍后再试'
|
|
|
+ }
|
|
|
+ this.showTab = false
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 加载更多
|
|
|
+ onreachBottom () {
|
|
|
+ if(this.partList.length < this.total ){
|
|
|
+ this.pageNo++
|
|
|
+ this.getpartList()
|
|
|
+ }else{
|
|
|
+ this.status = "nomore"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less">
|
|
|
+.content{
|
|
|
+ height: 100vh;
|
|
|
+ width: 100%;
|
|
|
+ padding: 0 0.5rem;
|
|
|
+ background: #fff;
|
|
|
+ .searchBar{
|
|
|
+ padding: 0 0.3rem;
|
|
|
+ .search{
|
|
|
+ padding: 0.5rem 0.5rem 0.3rem 0.5rem;
|
|
|
+ .input{
|
|
|
+ flex-grow: 1;
|
|
|
+ border:0.1rpx solid #eee;
|
|
|
+ padding: 0.1rpx;
|
|
|
+ border-radius: 50rpx;
|
|
|
+ padding-right: 10rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .check-list{
|
|
|
+ flex-grow: 1;
|
|
|
+ .scroll-view{
|
|
|
+ height: calc(100vh - 180rpx);
|
|
|
+ box-sizing: border-box;
|
|
|
+ }
|
|
|
+ .partList-list-box{
|
|
|
+ padding: 20rpx 30rpx;
|
|
|
+ border-bottom: 2rpx solid #f5f5f5;
|
|
|
+ &:last-child{
|
|
|
+ border:0;
|
|
|
+ }
|
|
|
+ .product{
|
|
|
+ flex-grow: 1;
|
|
|
+ &:active{
|
|
|
+ opacity: 0.6;
|
|
|
+ background-color: #f8f8f8;
|
|
|
+ }
|
|
|
+ .pinfo{
|
|
|
+ flex-grow: 1;
|
|
|
+ padding-left: 20rpx;
|
|
|
+ .pname{
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #191919;
|
|
|
+ margin-bottom: 10rpx;
|
|
|
+ text{
|
|
|
+ font-weight: normal;
|
|
|
+ margin-right: 6rpx;
|
|
|
+ padding: 0 10rpx;
|
|
|
+ background: rgba(3, 54, 146, 0.15);
|
|
|
+ border-radius: 100rpx;
|
|
|
+ color: #033692;
|
|
|
+ font-size: 24rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .ptxt{
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #333;
|
|
|
+ font-weight: bold;
|
|
|
+ .pnums{
|
|
|
+ color: #222;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|