|
@@ -1,5 +1,4 @@
|
|
|
<template>
|
|
|
- <!-- #ifdef H5 -->
|
|
|
<zj-page-layout :hasFooter="true">
|
|
|
<template slot="header">
|
|
|
<view class="search-container">
|
|
@@ -127,18 +126,9 @@
|
|
|
</view>
|
|
|
</template>
|
|
|
</zj-page-layout>
|
|
|
- <!-- #endif -->
|
|
|
-
|
|
|
- <!-- #ifndef H5 -->
|
|
|
- <web-view
|
|
|
- :src="webViewHref(`/packageMaterial/pages/sale/product`, pam, crossPagePam)"
|
|
|
- @message="crossPage.$listener"
|
|
|
- ></web-view>
|
|
|
- <!-- #endif -->
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-// #ifdef H5
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
@@ -155,13 +145,13 @@ export default {
|
|
|
wbPayType: null, // 维保工单费用支付方式
|
|
|
|
|
|
keyword: '',
|
|
|
- leftList: [],
|
|
|
- leftCurrent: 0,
|
|
|
- rightList: [],
|
|
|
+ leftList: [],
|
|
|
+ leftCurrent: 0,
|
|
|
+ rightList: [],
|
|
|
loadStatus: 0,
|
|
|
isShowDialog: false,
|
|
|
|
|
|
- cartList: [],
|
|
|
+ cartList: []
|
|
|
}
|
|
|
},
|
|
|
|
|
@@ -171,182 +161,207 @@ export default {
|
|
|
// this.cartList.forEach(item => {
|
|
|
// val = val + item.num;
|
|
|
// })
|
|
|
- return this.cartList.length;
|
|
|
+ return this.cartList.length
|
|
|
},
|
|
|
totalPrice() {
|
|
|
- let val = 0;
|
|
|
+ let val = 0
|
|
|
this.cartList.forEach(item => {
|
|
|
- val = val + (item.num * (item.goodsAmount * 100) / 100);
|
|
|
+ val = val + (item.num * (item.goodsAmount * 100)) / 100
|
|
|
})
|
|
|
- return val;
|
|
|
- },
|
|
|
+ return val
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
- onLoad({type, userMobile, orderNo, salesType, brandId, brandName, categoryId, categoryName, websitId, websitName, wbId, wbIsAllFee, wbPayType}) {
|
|
|
- this.type = type;
|
|
|
- this.userMobile = userMobile;
|
|
|
- this.orderNo = orderNo;
|
|
|
+ onLoad({
|
|
|
+ type,
|
|
|
+ userMobile,
|
|
|
+ orderNo,
|
|
|
+ salesType,
|
|
|
+ brandId,
|
|
|
+ brandName,
|
|
|
+ categoryId,
|
|
|
+ categoryName,
|
|
|
+ websitId,
|
|
|
+ websitName,
|
|
|
+ wbId,
|
|
|
+ wbIsAllFee,
|
|
|
+ wbPayType
|
|
|
+ }) {
|
|
|
+ this.type = type
|
|
|
+ this.userMobile = userMobile
|
|
|
+ this.orderNo = orderNo
|
|
|
// this.salesType = salesType;
|
|
|
// this.brandId = brandId;
|
|
|
// this.brandName = brandName;
|
|
|
- this.categoryId = categoryId;
|
|
|
- this.categoryName = categoryName;
|
|
|
- this.websitId = websitId;
|
|
|
- this.websitName = websitName;
|
|
|
- this.wbId = wbId;
|
|
|
- this.wbIsAllFee = wbIsAllFee;
|
|
|
- this.wbPayType = wbPayType;
|
|
|
+ this.categoryId = categoryId
|
|
|
+ this.categoryName = categoryName
|
|
|
+ this.websitId = websitId
|
|
|
+ this.websitName = websitName
|
|
|
+ this.wbId = wbId
|
|
|
+ this.wbIsAllFee = wbIsAllFee
|
|
|
+ this.wbPayType = wbPayType
|
|
|
|
|
|
uni.setNavigationBarTitle({
|
|
|
- title: type == 'M' ? '选择辅材' : '选择配件'
|
|
|
+ title: type == 'M' ? '选择辅材' : '选择配件'
|
|
|
})
|
|
|
- if(type === 'M') {
|
|
|
- this.getLeftList();
|
|
|
- }else {
|
|
|
- this.getRightList();
|
|
|
+ if (type === 'M') {
|
|
|
+ this.getLeftList()
|
|
|
+ } else {
|
|
|
+ this.getRightList()
|
|
|
}
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
// 获取左侧分类
|
|
|
getLeftList() {
|
|
|
- this.$api.post('/pay/websitCategoryList', {
|
|
|
- pageNum: 1,
|
|
|
- pageSize: -1,
|
|
|
- }).then(res => {
|
|
|
- this.leftList = res.data.records;
|
|
|
- this.leftCurrent = res.data.records.length > 0 ? res.data.records[0].categoryId : 0;
|
|
|
- this.getRightList();
|
|
|
- })
|
|
|
+ this.$api
|
|
|
+ .post('/pay/websitCategoryList', {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: -1
|
|
|
+ })
|
|
|
+ .then(res => {
|
|
|
+ this.leftList = res.data.records
|
|
|
+ this.leftCurrent = res.data.records.length > 0 ? res.data.records[0].categoryId : 0
|
|
|
+ this.getRightList()
|
|
|
+ })
|
|
|
},
|
|
|
|
|
|
// 获取右侧产品
|
|
|
getRightList() {
|
|
|
- this.loadStatus = 1;
|
|
|
- let url = '', params = {};
|
|
|
- if(this.type === 'M') {
|
|
|
- url = '/pay/chargeList';
|
|
|
+ this.loadStatus = 1
|
|
|
+ let url = '',
|
|
|
+ params = {}
|
|
|
+ if (this.type === 'M') {
|
|
|
+ url = '/pay/chargeList'
|
|
|
params = {
|
|
|
categoryId: this.leftCurrent,
|
|
|
- orderId: this.orderNo,
|
|
|
+ orderId: this.orderNo
|
|
|
}
|
|
|
- }else {
|
|
|
- url = '/pay/websitGoodsList';
|
|
|
+ } else {
|
|
|
+ url = '/pay/websitGoodsList'
|
|
|
params = {
|
|
|
categoryName: this.categoryName,
|
|
|
brand: this.brandName,
|
|
|
- orderId: this.orderNo,
|
|
|
+ orderId: this.orderNo
|
|
|
// normType: 'M'
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- this.$api.post(url, {
|
|
|
- pageNum: 1,
|
|
|
- pageSize: -1,
|
|
|
- name: this.keyword,
|
|
|
- ...params
|
|
|
- }).then(res => {
|
|
|
- this.loadStatus = 0;
|
|
|
- let list = res.data.records.map(item => {
|
|
|
- return this.type === 'M' ? {
|
|
|
- goodsId: item.normId,
|
|
|
- goodsName: item.normName,
|
|
|
- goodsCode: item.normCode,
|
|
|
- goodsUnit: item.unit,
|
|
|
- goodsAmount: item.normAmount,
|
|
|
- num: 0
|
|
|
- } : {
|
|
|
- goodsId: item.goodsId,
|
|
|
- goodsName: item.goodsName,
|
|
|
- goodsCode: item.goodsCode,
|
|
|
- goodsUnit: item.goodsSalesUnit,
|
|
|
- goodsAmount: item.normAmount,
|
|
|
- normType: item.normType,
|
|
|
- num: 0
|
|
|
- }
|
|
|
- });
|
|
|
- for(let i = 0; i < list.length; i++) {
|
|
|
- for(let j = 0; j < this.cartList.length; j++) {
|
|
|
- if(list[i].goodsId == this.cartList[j].goodsId) {
|
|
|
- list[i].num = this.cartList[j].num;
|
|
|
+ this.$api
|
|
|
+ .post(url, {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: -1,
|
|
|
+ name: this.keyword,
|
|
|
+ ...params
|
|
|
+ })
|
|
|
+ .then(res => {
|
|
|
+ this.loadStatus = 0
|
|
|
+ let list = res.data.records.map(item => {
|
|
|
+ return this.type === 'M'
|
|
|
+ ? {
|
|
|
+ goodsId: item.normId,
|
|
|
+ goodsName: item.normName,
|
|
|
+ goodsCode: item.normCode,
|
|
|
+ goodsUnit: item.unit,
|
|
|
+ goodsAmount: item.normAmount,
|
|
|
+ num: 0
|
|
|
+ }
|
|
|
+ : {
|
|
|
+ goodsId: item.goodsId,
|
|
|
+ goodsName: item.goodsName,
|
|
|
+ goodsCode: item.goodsCode,
|
|
|
+ goodsUnit: item.goodsSalesUnit,
|
|
|
+ goodsAmount: item.normAmount,
|
|
|
+ normType: item.normType,
|
|
|
+ num: 0
|
|
|
+ }
|
|
|
+ })
|
|
|
+ for (let i = 0; i < list.length; i++) {
|
|
|
+ for (let j = 0; j < this.cartList.length; j++) {
|
|
|
+ if (list[i].goodsId == this.cartList[j].goodsId) {
|
|
|
+ list[i].num = this.cartList[j].num
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
- if(list.length < 1){
|
|
|
- this.loadStatus = 2;
|
|
|
- }
|
|
|
- this.rightList = list;
|
|
|
- }).catch(() => {
|
|
|
- this.loadStatus = 2;
|
|
|
- })
|
|
|
+ if (list.length < 1) {
|
|
|
+ this.loadStatus = 2
|
|
|
+ }
|
|
|
+ this.rightList = list
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.loadStatus = 2
|
|
|
+ })
|
|
|
},
|
|
|
|
|
|
// 切换一级菜单
|
|
|
changeLeft(pid) {
|
|
|
- this.leftCurrent = pid;
|
|
|
- this.getRightList();
|
|
|
+ this.leftCurrent = pid
|
|
|
+ this.getRightList()
|
|
|
},
|
|
|
|
|
|
// 搜索
|
|
|
searchData() {
|
|
|
- this.getRightList();
|
|
|
+ this.getRightList()
|
|
|
},
|
|
|
|
|
|
changeNum(e) {
|
|
|
- let obj = this.rightList.find((item) => item.goodsId === e.name);
|
|
|
- if(e.unit && e.unit != '米') {
|
|
|
- e.value = Math.floor(e.value);
|
|
|
- obj.num = Math.floor(obj.num);
|
|
|
+ let obj = this.rightList.find(item => item.goodsId === e.name)
|
|
|
+ if (e.unit && e.unit != '米') {
|
|
|
+ e.value = Math.floor(e.value)
|
|
|
+ obj.num = Math.floor(obj.num)
|
|
|
}
|
|
|
// 判断对象数组中是否存在该对象
|
|
|
- let index = this.cartList.findIndex((item) => item.goodsId === obj.goodsId);
|
|
|
+ let index = this.cartList.findIndex(item => item.goodsId === obj.goodsId)
|
|
|
// 如果是0,就删除
|
|
|
- if(index !== -1 && e.value == 0) {
|
|
|
- this.cartList.splice(index, 1);
|
|
|
+ if (index !== -1 && e.value == 0) {
|
|
|
+ this.cartList.splice(index, 1)
|
|
|
}
|
|
|
// 如果有就替换,没有就添加
|
|
|
else if (index !== -1) {
|
|
|
- this.cartList.splice(index, 1, obj);
|
|
|
- }
|
|
|
- else {
|
|
|
- if(e.value > 0) {
|
|
|
- this.cartList.push(obj);
|
|
|
+ this.cartList.splice(index, 1, obj)
|
|
|
+ } else {
|
|
|
+ if (e.value > 0) {
|
|
|
+ this.cartList.push(obj)
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
|
|
|
changeCartNum(e) {
|
|
|
- let obj = this.cartList.find((item) => item.goodsId === e.name);
|
|
|
- if(e.unit && e.unit != '米') {
|
|
|
- e.value = Math.floor(e.value);
|
|
|
- obj.num = Math.floor(obj.num);
|
|
|
+ let obj = this.cartList.find(item => item.goodsId === e.name)
|
|
|
+ if (e.unit && e.unit != '米') {
|
|
|
+ e.value = Math.floor(e.value)
|
|
|
+ obj.num = Math.floor(obj.num)
|
|
|
}
|
|
|
- let index = this.cartList.findIndex((item) => item.goodsId === obj.goodsId);
|
|
|
- this.cartList.splice(index, 1, obj);
|
|
|
+ let index = this.cartList.findIndex(item => item.goodsId === obj.goodsId)
|
|
|
+ this.cartList.splice(index, 1, obj)
|
|
|
|
|
|
- this.getRightList();
|
|
|
+ this.getRightList()
|
|
|
},
|
|
|
|
|
|
overlimitFun(index) {
|
|
|
this.$modal({
|
|
|
content: '把该产品从购物车移除?'
|
|
|
- }).then(() => {
|
|
|
- this.cartList.splice(index, 1);
|
|
|
- this.getRightList();
|
|
|
- }).catch(() => {})
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.cartList.splice(index, 1)
|
|
|
+ this.getRightList()
|
|
|
+ })
|
|
|
+ .catch(() => {})
|
|
|
},
|
|
|
|
|
|
clearCart() {
|
|
|
this.$modal({
|
|
|
content: '确定清空购物车?'
|
|
|
- }).then(() => {
|
|
|
- this.cartList = [];
|
|
|
- this.getRightList();
|
|
|
- }).catch(() => {})
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.cartList = []
|
|
|
+ this.getRightList()
|
|
|
+ })
|
|
|
+ .catch(() => {})
|
|
|
},
|
|
|
|
|
|
submitData() {
|
|
|
- if(this.cartList.length < 1) return this.$toast('请选择');
|
|
|
+ if (this.cartList.length < 1) return this.$toast('请选择')
|
|
|
this.$setStorage('materialSaleData', {
|
|
|
type: this.type,
|
|
|
salesType: this.salesType,
|
|
@@ -361,28 +376,13 @@ export default {
|
|
|
wbIsAllFee: this.wbIsAllFee,
|
|
|
wbPayType: this.wbPayType,
|
|
|
goodsList: this.cartList
|
|
|
- });
|
|
|
+ })
|
|
|
this.$navToPage({
|
|
|
url: `/packageMaterial/pages/sale/order`
|
|
|
})
|
|
|
- },
|
|
|
-
|
|
|
- },
|
|
|
-}
|
|
|
-
|
|
|
-// #endif
|
|
|
-// #ifndef H5
|
|
|
-export default {
|
|
|
- data() {
|
|
|
- return {
|
|
|
- pam: {},
|
|
|
}
|
|
|
- },
|
|
|
- onLoad(pam) {
|
|
|
- this.pam = pam;
|
|
|
}
|
|
|
}
|
|
|
-// #endif
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|