123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356 |
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- import {
- getCategoryList,
- getProductslist,
- getAttr,
- postCartNum
- } from '@/api/store.js';
- import {cartDel} from "@/api/order.js";
- import {toLogin} from '@/libs/login.js';
- export default {
- data() {
- return {
- attr: {
- cartAttr: false,
- productAttr: [],
- productSelect: {}
- },
- productValue: [],
- };
- },
- created() {
- },
- methods: {
- /**
- * 默认选中属性
- *
- */
- DefaultSelect: function() {
- let productAttr = this.attr.productAttr;
- let value = [];
- for (let key in this.productValue) {
- if (this.productValue[key].stock > 0) {
- value = this.attr.productAttr.length ? key.split(",") : [];
- break;
- }
- }
- for (let i = 0; i < productAttr.length; i++) {
- this.$set(productAttr[i], "index", value[i]);
- }
- //sort();排序函数:数字-英文-汉字;
- let productSelect = this.productValue[value.join(",")];
- this.$set(this.attr.productSelect,"store_name",this.storeName);
- if (productSelect && productAttr.length) {
- this.$set(this.attr.productSelect, "image", productSelect.image);
- this.$set(this.attr.productSelect, "price", productSelect.price);
- this.$set(this.attr.productSelect, "stock", productSelect.stock);
- this.$set(this.attr.productSelect, "unique", productSelect.unique);
- this.$set(this.attr.productSelect, "cart_num", 1);
- this.$set(this.attr.productSelect, 'vip_price', productSelect.vip_price);
- this.$set(this, "attrValue", value.join(","));
- } else if (!productSelect && productAttr.length) {
- this.$set(this.attr.productSelect, "image", this.storeInfo.image);
- this.$set(this.attr.productSelect, "price", this.storeInfo.price);
- this.$set(this.attr.productSelect, "stock", 0);
- this.$set(this.attr.productSelect, "unique", "");
- this.$set(this.attr.productSelect, "cart_num", 0);
- this.$set(this, "attrValue", "");
- this.$set(this.attr.productSelect, 'vip_price', this.storeInfo.vip_price);
- } else if (!productSelect && !productAttr.length) {
- this.$set(this.attr.productSelect, "image", this.storeInfo.image);
- this.$set(this.attr.productSelect, "price", this.storeInfo.price);
- this.$set(this.attr.productSelect, "stock", this.storeInfo.stock);
- this.$set(this.attr.productSelect,"unique",this.storeInfo.unique || "");
- this.$set(this.attr.productSelect, "cart_num", 1);
- this.$set(this, "attrValue", "");
- this.$set(this.attr.productSelect, 'vip_price', this.storeInfo.vip_price);
- }
- },
- /**
- * 属性变动赋值
- *
- */
- ChangeAttr: function(res) {
- let productSelect = this.productValue[res];
- if (productSelect && productSelect.stock >= 0) {
- this.$set(this.attr.productSelect, "image", productSelect.image);
- this.$set(this.attr.productSelect, "price", productSelect.price);
- this.$set(this.attr.productSelect, "stock", productSelect.stock);
- this.$set(this.attr.productSelect, "unique", productSelect.unique);
- this.$set(this.attr.productSelect, 'vip_price', productSelect.vip_price);
- this.$set(this.attr.productSelect, "cart_num", 1);
- this.$set(this, "attrValue", res);
- } else {
- this.$set(this.attr.productSelect, 'image', this.storeInfo.image);
- this.$set(this.attr.productSelect, 'price', this.storeInfo.price);
- this.$set(this.attr.productSelect, 'stock', 0);
- this.$set(this.attr.productSelect, 'unique', '');
- this.$set(this.attr.productSelect, 'cart_num', 0);
- this.$set(this.attr.productSelect, 'vip_price', this.storeInfo.vip_price);
- this.$set(this, 'attrValue', '');
- }
- },
- attrVal(val) {
- this.$set(this.attr.productAttr[val.indexw], 'index', this.attr.productAttr[val.indexw].attr_values[val
- .indexn]);
- },
- /**
- * 购物车手动填写
- *
- */
- iptCartNum: function(e) {
- this.$set(this.attr.productSelect, 'cart_num', e);
- },
- onMyEvent: function() {
- this.$set(this.attr, 'cartAttr', false);
- },
- // 改变多属性购物车
- ChangeCartNumDuo(changeValue) {
- //获取当前变动属性
- let productSelect = this.productValue[this.attrValue];
- //如果没有属性,赋值给商品默认库存
- if (productSelect === undefined && !this.attr.productAttr.length)
- productSelect = this.attr.productSelect;
- //无属性值即库存为0;不存在加减;
- if (productSelect === undefined) return;
- let stock = productSelect.stock || 0;
- let num = this.attr.productSelect;
- this.ChangeCartNum(changeValue, num, stock, 1);
- },
- // 改变单属性购物车
- ChangeCartNumDan(changeValue, index, item) {
- let num = this.tempArr[index];
- let stock = this.tempArr[index].stock;
- this.ChangeCartNum(changeValue, num, stock, 0, item.id);
- },
- ChangeSubDel: function(event) {
- let that = this,
- list = that.cartData.cartList,
- ids = [];
- list.forEach(item => {
- ids.push(item.id)
- });
- cartDel(ids.join(",")).then(res => {
- that.$set(that.cartData, 'cartList', []);
- that.cartData.iScart = false;
- that.totalPrice = 0.00;
- that.page = 1;
- that.loadend = false;
- that.tempArr = [];
- that.productslist();
- that.getCartNum();
- })
- },
- ChangeOneDel: function(id, index) {
- let that = this,
- list = that.cartData.cartList;
- cartDel(id.toString()).then(res => {
- list.splice(index, 1);
- if (!list.length) {
- that.cartData.iScart = false;
- that.page = 1;
- that.loadend = false;
- that.tempArr = [];
- that.productslist();
- };
- that.getCartNum();
- })
- },
- // 多规格加入购物车;
- goCatNum() {
- this.goCat(1, this.id, 1);
- },
- closeList(e) {
- this.$set(this.cartData, 'iScart', e);
- },
- // 已经加入购物车时的购物加减;
- ChangeCartList(changeValue, index) {
- let list = this.cartData.cartList;
- let num = list[index];
- let stock = list[index].trueStock;
- this.ChangeCartNum(changeValue, num, stock, 0, num.product_id, index, 1);
- if (!list.length) {
- this.cartData.iScart = false;
- this.page = 1;
- this.loadend = false;
- this.tempArr = [];
- this.productslist();
- }
- },
- // 购物车加减计算函数
- ChangeCartNum(changeValue, num, stock, isDuo, id, index, cart) {
- if (changeValue) {
- num.cart_num++;
- if (num.cart_num > stock) {
- if (isDuo) {
- this.$set(this.attr.productSelect, "cart_num", stock ? stock : 1);
- this.$set(this, "cart_num", stock ? stock : 1);
- } else {
- num.cart_num = stock ? stock : 0;
- this.$set(this, 'tempArr', this.tempArr);
- this.$set(this.cartData, 'cartList', this.cartData.cartList);
- }
- return this.$util.Tips({
- title: "该产品没有更多库存了"
- });
- } else {
- if (!isDuo) {
- if (cart) {
- this.goCat(0, id, 1, 1, num.product_attr_unique);
- this.getTotalPrice();
- } else {
- this.goCat(0, id, 1);
- }
- }
- }
- } else {
- num.cart_num--;
- if (num.cart_num == 0) {
- this.cartData.cartList.splice(index, 1);
- if (isDuo) {
- this.$set(this.attr.productSelect, "cart_num", 1);
- this.$set(this, "cart_num", 1);
- }
- }
- if (num.cart_num < 0) {
- if (isDuo) {
- this.$set(this.attr.productSelect, "cart_num", 1);
- this.$set(this, "cart_num", 1);
- } else {
- num.cart_num = 0;
- this.$set(this, 'tempArr', this.tempArr);
- this.$set(this.cartData, 'cartList', this.cartData.cartList);
- }
- } else {
- if (!isDuo) {
- if (cart) {
- this.goCat(0, id, 0, 1, num.product_attr_unique);
- this.getTotalPrice();
- } else {
- this.goCat(0, id, 0);
- }
- }
- }
- }
- this.tempArr.forEach((item)=>{
- if(item.id == id){
- item.cart_num = num.cart_num;
- }
- })
- },
- /*
- * 加入购物车
- */
- goCat: function(duo, id, type, cart, unique) {
- let that = this;
- if (duo) {
- let productSelect = that.productValue[this.attrValue];
- //如果有属性,没有选择,提示用户选择
- console.log(productSelect);
-
-
-
-
- if (
- that.attr.productAttr.length &&
- productSelect === undefined
- ) {
- return that.$util.Tips({
- title: "产品库存不足,请选择其它属性"
- });
- }
- }
- let q = {
- product_id: id,
- num: duo ? that.attr.productSelect.cart_num : 1,
- type: type,
- unique: duo ? that.attr.productSelect.unique : cart ? unique : ""
- };
- postCartNum(q)
- .then(function(res) {
- if (duo) {
- that.attr.cartAttr = false;
- // that.page = 1;
- // that.loadend = false;
- that.tempArr.forEach((item, index) => {
- if (item.id == that.id) {
- let arrtStock = that.attr.productSelect.stock
- let objNum = parseInt(item.cart_num) + parseInt(that.attr.productSelect.cart_num);
- item.cart_num = objNum > arrtStock?arrtStock:objNum
- }
- })
- // that.productslist();
- }
-
- that.$util.Tips({
- title: res.msg
- });
-
- that.getCartNum();
- if (!cart) {
- that.getCartList(1);
- }
- })
- .catch(err => {
- return that.$util.Tips({
- title: err
- });
- });
- },
- goCartDuo(item) {
- if (!this.isLogin) {
- toLogin();
- } else {
- if(item.cart_button == 0){
- if(item.is_presale_product){
- uni.navigateTo({
- url: `/pages/activity/goods_details/index?id=${item.id}&type=6`
- })
- }else{
- uni.navigateTo({
- url: `/pages/goods_details/index?id=${item.id}&fromType=1`
- })
- }
- }else{
- this.storeName = item.store_name;
- this.getAttrs(item.id);
- this.$set(this, 'id', item.id);
- this.$set(this.attr, 'cartAttr', true);
- }
- }
- },
- // 点击默认单属性购物车
- goCartDan(item, index) {
- if (!this.isLogin) {
- toLogin();
- } else {
- if(item.cart_button == 0){
- if(item.is_presale_product){
- uni.navigateTo({
- url: `/pages/activity/goods_details/index?id=${item.id}&type=6`
- })
- }else{
- uni.navigateTo({
- url: `/pages/goods_details/index?id=${item.id}&fromType=1`
- })
- }
- }else{
- this.tempArr[index].cart_num = 1;
- this.$set(this, 'tempArr', this.tempArr);
- this.goCat(0, item.id, 1);
- }
- }
- },
- }
- };
|