PropertyApp/components/select-resource/select-resource.vue
2023-03-09 18:31:13 +08:00

283 lines
6.6 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="select-resource" v-if="showModel">
<view class="cu-bar bg-white search ">
<view class="search-form round">
<text class="cuIcon-search"></text>
<input type="text" placeholder="请输入物品名" v-model="resName" confirm-type="search"></input>
</view>
<view class="search-form round">
<text class="cuIcon-search"></text>
<picker :value="storeHousesIndex" :range="storeHouses" :range-key="'shName'" @change="storeHousesChange">
<view>{{storeHouses[storeHousesIndex].shName}}</view>
</picker>
</view>
</view>
<view class="cu-bar bg-white search ">
<view class="search-form round">
<text class="cuIcon-search"></text>
<picker :value="rssIndex" :range="resourceStoreTypes" :range-key="'name'" @change="rssChange">
<view>{{resourceStoreTypes[rssIndex].name}}</view>
</picker>
</view>
<view class="action">
<button class="cu-btn bg-gradual-green shadow-blur round" @tap="$preventClick(_searchStoreHouses)">搜索</button>
</view>
</view>
<view class="">
<checkbox-group @change="checkboxChange">
<view class="cu-list menu-avatar " v-for="(item,index) in resourceList" :key="index">
<view class="cu-item">
<view>
<checkbox :value="item.resId" :checked="item.checked" />
</view>
<view class="content">
<view class="text-grey">
<text class="ellip">{{item.resName}}({{item.parentRstName}}>{{item.rstName}})</text>
</view>
<view class="text-gray text-sm flex">
<view class="text-cut">
仓库{{item.shName}} > 规格{{item.rssName}}
</view>
</view>
<view class="text-gray text-sm flex">
<view class="text-cut">
价格{{item.price}} > 库存{{item.stock}}
</view>
</view>
</view>
</view>
</view>
</checkbox-group>
<view class="btn-box">
<button type="default" @click="cancel()">取消</button>
<button type="primary" @click="saveSelected()">保存</button>
</view>
<view class="load-more" @click="_loadResourceList()">加载更多</view>
</view>
</view>
</template>
<script>
import {
queryResourceStoreList,
listStoreHouses,
listResourceStoreTypes
} from '../../api/resource/resource.js'
import {getCurrentCommunity} from '../../api/community/community.js'
// 防止多次点击
import {preventClick} from '../../lib/java110/utils/common.js';
import Vue from 'vue'
Vue.prototype.$preventClick = preventClick;
export default {
components: {
},
data() {
return {
onoff: true,
showModel: false,
resourceList: [],
page: 1,
selectedResId: [],
rstId:'',
resName: '',
storeHouses: [{
shName: '请选择仓库'
}],
resourceStoreTypes:[{
rstId:'',
name: '请选择类型'
}],
rssIndex:0,
storeHousesIndex: 0,
shId: '',
}
},
props: {
resOrderType: {
type: String
},
shType: {
type: String
}
},
watch: {
},
created() {
},
computed: {
},
mounted() {
this._loadResourceList();
this._loadStoreHouses();
this._listResourceStoreTypes();
},
methods: {
switchShow: function(){
this.showModel = !this.showModel;
},
_loadStoreHouses: function(){
let _that = this;
let _objData = {
page: 1,
row: 100,
communityId: getCurrentCommunity().communityId,
shType: this.shType,
isShow: true
};
listStoreHouses(this,_objData)
.then(function(res){
_that.storeHouses = _that.storeHouses.concat(res.data);
})
},
_listResourceStoreTypes: function(){
let _that = this;
let _objData = {
page: 1,
row: 100,
communityId: getCurrentCommunity().communityId,
};
listResourceStoreTypes(this,_objData)
.then(function(res){
_that.resourceStoreTypes = _that.resourceStoreTypes.concat(res.data);
})
},
storeHousesChange: function(e){
this.storeHousesIndex = e.target.value;
if (this.storeHousesIndex == 0) {
this.shId = '';
return;
}
let selected = this.storeHouses[this.storeHousesIndex];
this.shId = selected.shId;
},
rssChange: function(e){
this.rssIndex = e.target.value;
if (this.rssIndex == 0) {
this.rstId = '';
return;
}
let selected = this.resourceStoreTypes[this.rssIndex];
this.rstId = selected.rstId;
},
_searchStoreHouses: function() {
this.resourceList = [];
this.page = 1;
this._loadResourceList();
},
_loadResourceList: function(){
let _that = this;
let _data = {
page: this.page,
row: 10,
communityId: getCurrentCommunity().communityId,
resOrderType: this.resOrderType,
shType: this.shType,
shId: this.shId,
resName: this.resName,
parentRstId: this.rstId,
isShow: true
};
queryResourceStoreList(this, _data)
.then(function(res) {
_that.onoff = true;
if(res.resourceStores.length <= 0){
uni.showToast({
title: '已全部加载'
})
return;
}
_that.resourceList = _that.resourceList.concat(res.resourceStores);
_that.page ++;
});
},
checkboxChange: function (e) {
var values = e.detail.value;
this.selectedResId = values;
this.resourceList.forEach((item, index) => {
if(values.includes(item.resId)){
item.checked = true;
}
});
},
removeSelectedItem: function(resId){
this.resourceList.forEach((item, index) => {
if(item.resId == resId){
item.checked = false;
}
})
},
saveSelected: function(){
var selectResourceStores = this.selectedResId;
var resourceStores = this.resourceList;
if (selectResourceStores.length < 1) {
uni.showToast({
title: '请选择物品',
icon: 'none'
})
return;
}
var _resourceStores = [];
for (var i = 0; i < selectResourceStores.length; i++) {
for (var j = 0; j < resourceStores.length; j++) {
if (selectResourceStores[i] == resourceStores[j].resId) {
resourceStores[j].remark = '';
_resourceStores.push(resourceStores[j])
}
}
}
this.$emit('getResourceInfo', _resourceStores);
this.showModel = false;
},
cancel: function(){
this.showModel = false;
}
}
}
</script>
<style>
.select-resource{
position: fixed;
top: 100rpx;
left: 0;
background-color: #fff;
width: 100%;
height: 100%;
overflow-y: scroll;
z-index: 1;
padding-bottom: 100rpx;
}
.btn-box{
padding: 40rpx 0;
display: flex;
flex-direction: row;
}
.btn-box button{
width: 40%;
}
.cu-list.menu-avatar>.cu-item .content{
left: 40rpx;
width: 80%;
}
.cu-list{
margin: 0;
}
</style>