123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286 |
- <template>
- <view class="productList flex flex_column">
- <view class="productList-search">
- <view class="search flex align_center">
- <view class="input">
- <u-search
- v-model="queryWord"
- @input="$u.debounce(getProductList, 800)"
- @custom="$u.debounce(getProductList, 500)"
- @search="$u.debounce(getProductList, 500)"
- @clear="clearSearch"
- bg-color="#fff"
- :show-action="false"
- placeholder="请输入产品编码查询"></u-search>
- </view>
- <!-- <view class="icon">
- </view> -->
- </view>
- </view>
- <view class="productList-body">
- <view v-if="status == 'loading'"><u-loadmore :status="status" :load-text="loadText" /></view>
- <view class="partList-list-box" v-for="item in productList" :key="item.shelfCartSn">
- <view class="flex align_center flex_1">
- <view class="pimgs">
- <u-image :src="item.images?item.images:`../../static/${$config('themePath')}/def_img@2x.png`" width="120" height="120" border-radius="10"></u-image>
- </view>
- <view class="pinfo">
- <view class="pname">
- <text v-if="item.shelfCartApi">{{item.shelfCartApi.shelfPlaceCode}}</text>
- <text v-else-if="item.shelfProductApi">{{item.shelfProductApi.shelfPlaceCode}}</text>
- {{item.productName}}
- </view>
- <view class="ptxt flex justify_between">
- <text style="word-break: break-all;">{{item.code}}</text>
- <view v-if="item.shelfProductApi&&item.shelfProductApi.enableFlag==1">
- 可用库存:<text>{{item.shelfProductApi.qty}}</text>{{item.unit}}
- </view>
- </view>
- </view>
- </view>
- <view class="ptools flex align_center justify_between">
- <view></view>
- <view class="pcurnums flex align_center">
- <view class="u-ninput" v-if="item.shelfCartApi">
- <u-number-box :long-press="false" :index="item.id" :input-height="60" @blur="updateNums" @minus="updateNums" @plus="updateNums" color="#000" bg-color="#fff" v-model="item.shelfCartApi.qty" :min="1"></u-number-box>
- </view>
- <view v-else>
- <u-button :loading="status == 'loading'" @click="addItem(item)" plain style="height: 50rpx;line-height: 50rpx;" size="mini" shape="circle">
- <u-icon name="plus"></u-icon> 添加
- </u-button>
- </view>
- </view>
- </view>
- </view>
- <view v-if="productList && productList.length == 0 && status == 'nomore'">
- <u-empty :text="noDataText" mode="list" :img-width="200" :margin-top="60"></u-empty>
- </view>
- <view style="padding: 20upx;" v-if="productList.length && status != 'nomore'">
- <u-loadmore :status="status" :load-text="loadText" />
- </view>
- </view>
- </view>
- </template>
- <script>
- import { queryProductPage, shelfCartSave } from '@/api/shelfCart'
- export default {
- data() {
- return {
- shelfSn: null,
- shelfName: '',
- layer:'',
- queryWord: '',
- productList: [],
- total: 0, // 列表总数
- noDataText: '暂无产品',
- status: 'nomore',
- shelfPlaceCode: '',
- fromPage: null,
- loadText: {
- loading: '努力加载中',
- loadmore: '最多显示前20条匹配产品,请尝试输入更多内容'
- }
- }
- },
- onLoad(options) {
- this.shelfSn = options.shelfSn
- this.layer = options.layer
- this.shelfName = options.shelfName
- this.customerSn = options.customerSn
- this.fromPage = options.from||''
- console.log(options)
- },
- onReady() {
- uni.setNavigationBarTitle({
- title: '按产品编码搜索—' +this.layer+'层'
- })
- },
- onBackPress(e) {
- console.log(e)
- if(!this.fromPage){
- uni.redirectTo({
- url: "/pages/batchShelves/cartList?shelfSn="+this.shelfSn+'&layer='+this.layer+'&shelfName='+this.shelfName+'&customerSn='+this.customerSn
- })
- }else{
- return false
- }
- return true
- },
- onNavigationBarButtonTap(e) {
- this.scanProduct()
- },
- methods: {
- scanProduct(){
- uni.redirectTo({
- url: "/pages/batchShelves/scanProduct?shelfSn="+this.shelfSn+'&layer='+this.layer+'&shelfName='+this.shelfName+'&customerSn='+this.customerSn+'&from='+this.fromPage
- })
- },
- clearSearch(){
- this.queryWord = ''
- this.productList = []
- this.getProductList()
- },
- getProductList(){
- const _this = this
- if(this.queryWord == ''){
- this.productList = []
- return
- }
- let params = {
- pageNo:1,
- pageSize:20,
- code: this.$u.trim(this.queryWord),
- shelfSn: this.shelfSn,
- shelfTierCode: this.layer
- }
- console.log(params)
- this.status = 'loading'
- queryProductPage(params).then(res => {
- console.log(res)
- if(res.status == 200&&res.data&&res.data.page&&res.data.page.list&&res.data.page.list.length){
- this.productList = res.data.page.list
- this.shelfPlaceCode = res.data.shelfPlaceCode
- this.total = res.data.page.count
- this.status = 'loadmore'
- }else{
- this.productList = []
- this.shelfPlaceCode = ''
- this.total = 0
- this.noDataText = '没有搜索到相关产品'
- this.status = 'nomore'
- }
- console.log(this.status)
- })
- },
- // 新增
- addItem(item){
- if(item.shelfProductApi&&item.shelfProductApi.enableFlag==0){
- uni.showToast({
- icon:'none',
- title: '此产品已被禁用,不可添加!'
- })
- return false
- }
- this.saveData(item,1)
- },
- // 修改数量
- updateNums(e){
- console.log(e)
- const row = this.productList.find(item => item.id == e.index)
- const nums = e.value
- this.saveData(row,nums)
- },
- saveData(row,nums){
- // 继续修改数量
- uni.showLoading({
- title: '正在保存...'
- })
- const item = row.shelfCartApi || row.shelfProductApi
- const params = {
- shelfSn: this.shelfSn,
- shelfName: this.shelfName,
- shelfTierCode: item?item.shelfTierCode:this.layer,
- shelfPlaceSn: item?item.shelfPlaceSn:undefined,
- shelfPlaceCode: item?item.shelfPlaceCode:this.shelfPlaceCode,
- productSn: row.productSn,
- productCode: row.code,
- qty: nums,
- price: row.price,
- cost: row.terminalPrice,
- shelfCartSn: item?item.shelfCartSn:undefined
- }
- console.log(params)
- shelfCartSave(params).then(res => {
- uni.hideLoading()
- if(res.status == 200){
- // this.toashMsg(res.message)
- this.getProductList()
- }
- })
- }
- }
- }
- </script>
- <style lang="less">
- .productList{
- width: 100%;
- height: 100vh;
- .productList-search{
- padding: 20rpx 30rpx;
- background-color: #FFFFFF;
- .search{
- padding: 0.1rem;
- border-radius: 50rpx;
- border:1rpx solid #eee;
- .input{
- flex-grow: 1;
- padding: 4rpx;
- }
- .icon{
- width: 13%;
- text-align: center;
- font-size: 46rpx;
- color: #999;
- }
- }
- }
- .productList-body{
- flex-grow: 1;
- background-color: #fff;
- padding: 0 40upx;
- overflow: auto;
- .partList-list-box{
- padding: 10px 0;
- border-bottom: 2rpx solid #f5f5f5;
- .pinfo{
- flex-grow: 1;
- padding-left: 20rpx;
- .pname{
- color: #666;
- font-size: 26rpx;
- font-weight: bold;
- word-break: break-all;
- text{
- font-weight: normal;
- margin-right: 10rpx;
- padding: 0 10rpx;
- background: rgba(3, 54, 146, 0.15);
- border-radius: 30rpx;
- color: #033692;
- font-size: 26rpx;
- }
- }
- .ptxt{
- color: #666;
- font-size: 26rpx;
- padding: 10upx 0;
- }
- }
- .ptools{
- color: #666;
- font-size: 24rpx;
- .u-ninput{
- border: 2rpx solid #eee;
- border-radius: 50rpx;
- padding: 0 6rpx;
- }
- /deep/ .u-icon-disabled{
- background: #fff!important;
- }
- /deep/ .u-number-input{
- margin: 0 0;
- border: 2rpx solid #eee;
- border-top: 0;
- border-bottom: 0;
- }
- /deep/ .u-icon-plus, /deep/ .u-icon-minus{
- border-radius: 50rpx;
- }
- }
- }
- }
-
- }
- </style>
|