门店新增下单类型提示

master
gongfuxiang 2023-12-12 00:58:11 +08:00
parent f3ef71f3b9
commit 944efd8531
6 changed files with 310 additions and 169 deletions

10
App.vue
View File

@ -47,6 +47,14 @@
// 2.lang
default_language: 'zh-Hans',
// tabbar
tabbar_pages: [
'/pages/index/index',
'/pages/goods-category/goods-category',
'/pages/cart/cart',
'/pages/user/user'
],
//
// 使0 , 1
is_share_use_image: 1,
@ -106,8 +114,6 @@
// 使 currency_symbol 0, 1
is_wallet_use_fixed_currency_symbol: 0,
// tabbar
tabbar_pages: ['/pages/index/index', '/pages/goods-category/goods-category', '/pages/cart/cart', '/pages/user/user'],
// key
//

View File

@ -624,7 +624,7 @@ button:before {
}
.br-top-shadow {
box-shadow: 0rpx -4rpx 10rpx 0px rgba(0, 0, 0, 0.05);
box-shadow: 0rpx -4rpx 10rpx 0px rgba(0, 0, 0, 0.03);
}
/**

View File

@ -1,10 +1,9 @@
<template>
<view :class="theme_view">
<view v-if="propStatus">
<!-- 弹层背景 -->
<!-- 购物车弹层背景 -->
<view v-if="cart_status" class="plugins-realstore-cart-mask wh-auto ht-auto pf" @tap="cart_switch_event"></view>
<!-- 购物列表 -->
<!-- 购物车列表 -->
<view class="plugins-realstore-cart-content pf wh-auto">
<view v-if="cart_status" class="bg-white border-radius-main pr oh margin-main">
<block v-if="(cart || null) != null && (cart.data || null) != null && cart.data.length > 0">
@ -95,6 +94,34 @@
</view>
</view>
</view>
<!-- 下单类型选择弹窗 -->
<block v-if="buy_use_type_choice_status">
<!-- 下单类型选择弹层背景 -->
<view class="plugins-realstore-buy-type-mask wh-auto ht-auto pf"></view>
<!-- 下单类型弹窗选择 -->
<view class="plugins-realstore-buy-type-choice pf bg-white border-radius-main padding-xxl">
<view class="tc margin-top-xs margin-bottom-xl">
<text class="cr-grey text-size">请选择下单类型</text>
<view class="fr" @tap="buy_use_type_choice_close_event">
<iconfont name="icon-huiyuan-guanbi" size="28rpx" color="#999"></iconfont>
</view>
</view>
<block v-for="(item, index) in info.buy_use_type_list" :key="index">
<view :class="'item pr padding border-radius-main item-'+item.index" :data-index="index" @tap="buy_use_type_choice_event">
<image class="left-icon dis-inline-block va-m" :src="static_url+'buy_use_type/'+index+'.png'" mode="aspectFit"></image>
<text class="cr-black text-size-sm va-m margin-left-sm">{{item.name}}</text>
<view v-if="item.index == 0" class="scan-icon pa padding" :data-index="index" @tap.stop="search_icon_event">
<iconfont name="icon-mendian-sousuosm" color="#02b3c2"></iconfont>
</view>
<view class="pa right-arrow">
<iconfont name="icon-qiandao-jiantou2" color="#333"></iconfont>
</view>
</view>
</block>
</view>
</block>
<!-- 商品购买 -->
<component-goods-buy ref="goods_buy" :propCurrencySymbol="propCurrencySymbol" v-on:CartSuccessEvent="goods_cart_back_event"></component-goods-buy>
@ -110,24 +137,30 @@
import componentGoodsBuy from '../../components/goods-buy/goods-buy';
import componentCartParaCurve from '../../components/cart-para-curve/cart-para-curve';
import componentBadge from '../../components/badge/badge';
var static_url = app.globalData.get_static_url('realstore', true);
export default {
data() {
return {
theme_view: app.globalData.get_theme_value_view(),
theme_color: app.globalData.get_theme_color(),
static_url: static_url,
params: {},
is_first: 1,
cart_status: false,
cart: null,
info: null,
base: null,
//
settlement_btn_status: false,
settlement_btn_text: '加载中',
//
temp_opt_data: null,
//
cache_buy_use_type_index_key: 'cache_plugins_realstore_buy_use_type_index',
cache_buy_use_type_index_key: 'cache_plugins_realstore_buy_use_type_index_',
buy_use_type_index: 0,
//
buy_use_type_choice_status: false,
//
realstore_goods_data: null,
realstore_goods_data_cart_status: false,
@ -188,13 +221,23 @@
}
}
this.setData({
params: params || {},
params: params,
info: info,
base: params.base || null,
realstore_goods_data: realstore_goods_data,
realstore_goods_data_cart_status: cart_status,
realstore_goods_data_cart_text: cart_text,
});
//
//
var index = this.get_cache_buy_use_type_index();
if((this.base || null) != null && parseInt(this.base.is_tips_user_choice_buy_use_type || 0) == 1 && (index === null || index === '') && (this.info.buy_use_type_list || null) != null && this.info.buy_use_type_list.length > 0 && (this.info.status_info || null) != null && this.info.status_info.status == 1) {
this.setData({
buy_use_type_choice_status: true
});
}
//
this.setData({
buy_use_type_index: this.get_buy_use_type_index()
@ -216,13 +259,13 @@
}, 'cart'),
dataType: 'json',
success: (res) => {
if (res.data.code == 0) {
if(res.data.code == 0) {
this.setData({
cart: res.data.data,
});
//
if (this.is_first == 1 && (this.params.is_show_cart || 0) == 1) {
if(this.is_first == 1 && (this.params.is_show_cart || 0) == 1) {
this.cart_event(true);
}
@ -280,14 +323,14 @@
//
starting_price_handle() {
var starting_price = parseFloat(this.info.starting_price) || 0;
if (starting_price > 0 && (this.cart || null) != null) {
if(starting_price > 0 && (this.cart || null) != null) {
if(parseFloat(this.cart.total_price) < starting_price) {
//
var limit_type = this.info.starting_price_limit_type_list || [];
if (limit_type.length > 0) {
if(limit_type.length > 0) {
var index = this.get_buy_use_type_index();
var buy_use_type = this.info.buy_use_type_list[index];
if (limit_type.indexOf(buy_use_type['index']) != -1 || limit_type.indexOf(buy_use_type['index'].toString()) != -1) {
if(limit_type.indexOf(buy_use_type['index']) != -1 || limit_type.indexOf(buy_use_type['index'].toString()) != -1) {
return buy_use_type['name'] + '起步'+ this.propCurrencySymbol + starting_price;
}
} else {
@ -323,24 +366,24 @@
//
buy_submit_event(e) {
if (!app.globalData.is_single_page_check()) {
if(!app.globalData.is_single_page_check()) {
return false;
}
//
if (!this.is_status_check()) {
if(!this.is_status_check()) {
return false;
}
//
var ids = [];
if ((this.cart || null) != null) {
if((this.cart || null) != null) {
var temp_data = this.cart.data || [];
for (var i in temp_data) {
ids.push(temp_data[i]['id']);
}
}
if (ids.length <= 0) {
if(ids.length <= 0) {
app.globalData.showToast('请先加购商品');
return false;
}
@ -365,11 +408,11 @@
//
is_status_check() {
if ((this.info || null) == null) {
if((this.info || null) == null) {
app.globalData.showToast('门店信息有误');
return false;
} else {
if (this.info.status_info.status != 1) {
if(this.info.status_info.status != 1) {
app.globalData.showToast(this.info.status_info.msg);
return false;
}
@ -385,7 +428,7 @@
confirmText: '确认',
cancelText: '暂不',
success: (result) => {
if (result.confirm) {
if(result.confirm) {
this.setData({
temp_opt_data: null,
});
@ -403,13 +446,13 @@
//
cart_stock_event(e) {
if (!app.globalData.is_single_page_check()) {
if(!app.globalData.is_single_page_check()) {
return false;
}
var user = app.globalData.get_user_info(this);
if (user != false) {
if(user != false) {
//
if (app.globalData.user_is_need_login(user)) {
if(app.globalData.user_is_need_login(user)) {
uni.navigateTo({
url: '/pages/login/login?event_callback=cart_stock_event',
});
@ -419,10 +462,10 @@
var type = parseInt(e.currentTarget.dataset.type) || 0;
var temp_data = this.cart.data;
var temp_goods = temp_data[index];
//
var opt_number = this.stock_handle(type, temp_goods, 'stock');
if (opt_number === false) {
if(opt_number === false) {
return false;
}
@ -432,7 +475,7 @@
});
//
if (opt_number == 0) {
if(opt_number == 0) {
this.cart_delete(temp_goods['id'], temp_goods.goods_id);
} else {
var number = type == 0 ? parseInt(temp_goods['stock']) - opt_number : opt_number + parseInt(temp_goods['stock']);
@ -446,15 +489,15 @@
stock_handle(type, goods, stock_field) {
//
var stock = parseInt(goods[stock_field]) || 0;
if (type == 0) {
if(type == 0) {
stock -= 1;
} else {
stock += 1;
}
if (stock < 0) {
if(stock < 0) {
stock = 0;
}
//
var buy_min_number = parseInt(goods['buy_min_number']) || 1;
var buy_max_number = parseInt(goods['buy_max_number']) || 0;
@ -462,49 +505,49 @@
var spec_buy_max_number = parseInt(goods['spec_buy_max_number']) || 0;
var inventory = parseInt(goods['inventory']);
var inventory_unit = goods['inventory_unit'];
//
var min = spec_buy_min_number > 0 ? spec_buy_min_number : buy_min_number;
if (min > 0) {
if (type == 0) {
if (stock < min) {
if(min > 0) {
if(type == 0) {
if(stock < min) {
stock = 0;
}
} else {
if (stock < min) {
if(stock < min) {
stock = min;
}
}
}
//
var max = spec_buy_max_number > 0 ? spec_buy_max_number : buy_max_number;
if (max > 0 && stock > max) {
if(max > 0 && stock > max) {
stock = max;
app.globalData.showToast('限购' + max + inventory_unit);
return false;
}
//
if (goods[stock_field] == stock) {
if(goods[stock_field] == stock) {
app.globalData.showToast('数量未改变');
return false;
}
//
var opt_number = 1;
if (type == 0) {
if (stock <= 0) {
if(type == 0) {
if(stock <= 0) {
opt_number = 0;
}
} else {
if (stock > goods['buy_number']) {
if(stock > goods['buy_number']) {
opt_number = stock - goods['buy_number'];
}
}
return opt_number;
},
//
cart_save(goods_id, stock, spec = '') {
uni.request({
@ -517,7 +560,7 @@
},
dataType: 'json',
success: (res) => {
if (res.data.code == 0) {
if(res.data.code == 0) {
//
this.cart_opt_success_handle({
type: 'save',
@ -525,7 +568,7 @@
stock: stock,
});
} else {
if (app.globalData.is_login_check(res.data)) {
if(app.globalData.is_login_check(res.data)) {
app.globalData.showToast(res.data.msg);
}
}
@ -535,7 +578,7 @@
},
});
},
//
cart_update(cart_id, goods_id, stock) {
uni.request({
@ -548,7 +591,7 @@
},
dataType: 'json',
success: (res) => {
if (res.data.code == 0) {
if(res.data.code == 0) {
//
this.cart_opt_success_handle({
type: 'update',
@ -557,7 +600,7 @@
stock: stock,
});
} else {
if (app.globalData.is_login_check(res.data)) {
if(app.globalData.is_login_check(res.data)) {
app.globalData.showToast(res.data.msg);
} else {
app.globalData.showToast('提交失败,请重试!');
@ -569,7 +612,7 @@
},
});
},
//
cart_delete(cart_id, goods_id = null) {
uni.request({
@ -580,7 +623,7 @@
},
dataType: 'json',
success: (res) => {
if (res.data.code == 0) {
if(res.data.code == 0) {
//
this.cart_opt_success_handle({
type: (goods_id === null) ? 'all-delete' : 'delete',
@ -589,7 +632,7 @@
stock: 0,
});
} else {
if (app.globalData.is_login_check(res.data)) {
if(app.globalData.is_login_check(res.data)) {
app.globalData.showToast(res.data.msg);
} else {
app.globalData.showToast('提交失败,请重试!');
@ -601,11 +644,77 @@
},
});
},
//
search_icon_event(e) {
this.buy_use_type_choice_event(e);
this.search_icon_handle(e);
},
// iconid
search_icon_handle(e) {
var user = app.globalData.get_user_info(this, 'search_icon_handle');
if (user != false) {
//
if (app.globalData.user_is_need_login(user)) {
uni.navigateTo({
url: '/pages/login/login?event_callback=search_icon_handle',
});
return false;
} else {
//
if (!this.is_status_check()) {
return false;
}
//
var self = this;
uni.scanCode({
success: function (res) {
uni.showLoading({
title: '处理中...',
mask: true,
});
uni.request({
url: app.globalData.get_request_url('scan', 'detail', 'realstore'),
method: 'POST',
data: self.request_params_merge(
{
value: res.result,
}, 'buy'),
dataType: 'json',
success: (res) => {
uni.hideLoading();
if (res.data.code == 0) {
if (res.data.data.is_error == 1) {
app.globalData.showToast(res.data.data.is_error_msg);
} else {
//
self.cart_save(res.data.data.goods_id, 1, res.data.data.spec);
}
} else {
if (app.globalData.is_login_check(res.data)) {
app.globalData.showToast(res.data.msg);
} else {
app.globalData.showToast('提交失败,请重试!');
}
}
},
fail: () => {
uni.hideLoading();
app.globalData.showToast('网络开小差了哦~');
},
});
},
});
}
}
},
//
goods_opt_handle(type, goods, spec, stock_field, pos = null) {
var opt_number = this.stock_handle(type, goods, stock_field);
if (opt_number === false) {
if(opt_number === false) {
return false;
}
@ -622,13 +731,13 @@
var cart_item = this.goods_opt_cart_data(type, goods, spec);
//
if (opt_number == 0) {
if (cart_item == null) {
if(opt_number == 0) {
if(cart_item == null) {
app.globalData.showToast('购物车id有误');
return false;
}
this.cart_delete(cart_item.id, cart_item.goods_id);
} else if (cart_item == null) {
} else if(cart_item == null) {
this.cart_save(goods['id'], opt_number, spec);
} else {
var number = type == 0 ? parseInt(cart_item['stock']) - opt_number : opt_number + parseInt(cart_item['stock']);
@ -642,13 +751,13 @@
// spec
goods_opt_cart_data(type, goods, spec = '') {
var cart_item = null;
if (type == 0 || (type == 1 && goods['buy_number'] > 0)) {
if(type == 0 || (type == 1 && goods['buy_number'] > 0)) {
var cart_data = this.cart.data;
var params_spec = (spec || null) == null || typeof spec != 'object' ? '' : JSON.stringify(spec);
for (var i in cart_data) {
if (goods['id'] == cart_data[i]['goods_id']) {
if(goods['id'] == cart_data[i]['goods_id']) {
var cart_spec = (cart_data[i]['spec'] || null) == null || typeof cart_data[i]['spec'] != 'object' ? '' : JSON.stringify(cart_data[i]['spec']);
if (type == 0 || (type == 1 && cart_spec == params_spec)) {
if(type == 0 || (type == 1 && cart_spec == params_spec)) {
cart_item = cart_data[i];
}
break;
@ -657,7 +766,7 @@
}
return cart_item;
},
//
cart_opt_success_handle(params) {
//
@ -672,13 +781,13 @@
// 线
cart_para_curve_handle() {
if ((this.temp_opt_data || null) != null && (this.temp_opt_data.pos || null) != null && (this.temp_opt_data.type || 0) == 1) {
if ((this.$refs.cart_para_curve || null) != null) {
if((this.temp_opt_data || null) != null && (this.temp_opt_data.pos || null) != null && (this.temp_opt_data.type || 0) == 1) {
if((this.$refs.cart_para_curve || null) != null) {
this.$refs.cart_para_curve.init(null, this.temp_opt_data.pos, this.temp_opt_data.goods.images, 0);
}
}
},
// 使
buy_use_type_event() {
var self = this;
@ -687,47 +796,73 @@
return v.name;
}),
success: function (res) {
self.setData({
buy_use_type_index: res.tapIndex,
});
uni.setStorageSync(self.cache_buy_use_type_index_key, res.tapIndex);
//
self.get_cart_data();
//
self.$emit('BuyTypeSwitchEvent', res.tapIndex);
self.buy_use_type_confirm_handle(self, res.tapIndex);
},
});
},
//
buy_use_type_choice_event(e) {
this.buy_use_type_confirm_handle(this, e.currentTarget.dataset.index);
this.setData({
buy_use_type_choice_status: false,
});
},
//
buy_use_type_confirm_handle(self, index) {
self.setData({
buy_use_type_index: index,
});
uni.setStorageSync(self.cache_buy_use_type_index_key+self.info.id, index);
//
self.get_cart_data();
//
self.$emit('BuyTypeSwitchEvent', index);
},
//
buy_use_type_choice_close_event(e) {
this.setData({
buy_use_type_choice_status: false,
});
},
// 使0
get_buy_use_type_index() {
var index = uni.getStorageSync(this.cache_buy_use_type_index_key);
if ((this.info || null) != null) {
if((this.info || null) != null) {
// 使
if (index === null || index === '') {
var index = this.get_cache_buy_use_type_index();
if(index === null || index === '') {
//
if (this.info.default_buy_use_type != undefined && this.info.default_buy_use_type != -1) {
if(this.info.default_buy_use_type != undefined && this.info.default_buy_use_type != -1) {
// 0
var temp_index = null;
for (var i in this.info.buy_use_type_list) {
if (this.info.buy_use_type_list[i]['index'] == this.info.default_buy_use_type) {
if(this.info.buy_use_type_list[i]['index'] == this.info.default_buy_use_type) {
temp_index = i;
}
}
if (temp_index !== null) {
if(temp_index !== null) {
index = temp_index;
}
}
}
// 0
if (this.info.buy_use_type_list[index] == undefined) {
if(this.info.buy_use_type_list[index] == undefined) {
index = 0;
}
return index;
}
return index || 0;
return 0;
},
//
get_cache_buy_use_type_index() {
return uni.getStorageSync(this.cache_buy_use_type_index_key+this.info.id);
},
//
@ -735,29 +870,29 @@
// buy / init / data / cart
request_params_merge(data, type = 'init') {
// 使
var index = this.get_buy_use_type_index();
if ((this.info || null) != null && (this.info.buy_use_type_list || null) != null && this.info.buy_use_type_list.length > 0) {
if (this.info.buy_use_type_list[index] == undefined) {
if((this.info || null) != null && (this.info.buy_use_type_list || null) != null && this.info.buy_use_type_list.length > 0) {
var index = this.get_buy_use_type_index();
if(this.info.buy_use_type_list[index] == undefined) {
index = 0;
}
data['buy_use_type_index'] = index;
}
//
if (type == 'init' || type == 'buy') {
if(type == 'init' || type == 'buy') {
//
if ((this.params.tablecode_id || null) != null) {
if((this.params.tablecode_id || null) != null) {
data['tablecode_id'] = this.params.tablecode_id;
}
}
//
if (type == 'init' || type == 'data' || type == 'cart') {
if(type == 'init' || type == 'data' || type == 'cart') {
//
var lng = 0;
var lat = 0;
var user_location = app.globalData.choice_user_location_init();
if ((user_location || null) != null) {
if((user_location || null) != null) {
lng = user_location.lng || 0;
lat = user_location.lat || 0;
}
@ -766,7 +901,7 @@
}
//
if (type == 'buy') {
if(type == 'buy') {
// id
data['realstore_id'] = this.info.id;
}
@ -789,18 +924,20 @@
};
</script>
<style>
.plugins-realstore-cart-mask {
.plugins-realstore-cart-mask,
.plugins-realstore-buy-type-mask {
left: 0;
top: 0;
background: rgb(0, 0, 0, 0.6);
z-index: 5;
}
.plugins-realstore-cart-content {
.plugins-realstore-cart-content,
.plugins-realstore-buy-type-choice {
left: 0;
bottom: 0;
z-index: 6;
}
/**
* 购物车列表
*/
@ -846,4 +983,46 @@
.plugins-realstore-cart-botton-nav .cart-icon-total {
padding-left: 40rpx;
}
/**
* 弹窗下单类型选择
*/
.plugins-realstore-buy-type-mask {
z-index: 10;
}
.plugins-realstore-buy-type-choice {
z-index: 11;
width: calc(100% - 240rpx);
left: 80rpx;
top: calc(50% + 50rpx);
height: max-content;
margin-top: -50%;
}
.plugins-realstore-buy-type-choice .item-0 {
background: #E8FFF2;
}
.plugins-realstore-buy-type-choice .item-1 {
background: #FFF9DC;
}
.plugins-realstore-buy-type-choice .item-2 {
background: #FFE8DC;
}
.plugins-realstore-buy-type-choice .item-3 {
background: #EDF9FF;
}
.plugins-realstore-buy-type-choice .item:not(:last-child) {
margin-bottom: 32rpx;
}
.plugins-realstore-buy-type-choice .item .left-icon {
width: 68rpx;
height: 68rpx;
}
.plugins-realstore-buy-type-choice .item .right-arrow {
top: 40rpx;
right: 20rpx;
}
.plugins-realstore-buy-type-choice .item .scan-icon {
top: 16rpx;
right: 60rpx;
}
</style>

View File

@ -270,12 +270,12 @@
</block>
<!-- 门店 -->
<view v-if="plugins_realstore_data != null && plugins_realstore_data.length > 0" class="plugins-realstore-container">
<view v-if="plugins_realstore_data != null && ((plugins_realstore_data.data || null) != null) && plugins_realstore_data.data.length > 0" class="plugins-realstore-container">
<view class="spacing-nav-title flex-row align-c jc-sb text-size-xs">
<text class="text-wrapper title-left-border single-text flex-1 flex-width padding-right-main">相关门店</text>
<navigator url="/pages/plugins/realstore/index/index" hover-class="none" class="arrow-right padding-right cr-grey">更多</navigator>
</view>
<component-realstore-list :propDataList="plugins_realstore_data" :propIsFavor="false"></component-realstore-list>
<component-realstore-list :propDataList="plugins_realstore_data.data" :propRealstoreDetailQuery="'&source_goods_id='+goods.id" :propIsFavor="false"></component-realstore-list>
</view>
<!-- 多商户 -->
@ -539,8 +539,8 @@
</view>
</view>
<view class="plugins-realstore-popup">
<block v-if="(plugins_realstore_data || null) != null && plugins_realstore_data.length > 0">
<component-realstore-list :propDataList="plugins_realstore_data" :propRealstoreDetailQuery="'&source_goods_id='+goods.id" :propIsFavor="false"></component-realstore-list>
<block v-if="(plugins_realstore_data || null) != null && ((plugins_realstore_data.data || null) != null) && plugins_realstore_data.data.length > 0">
<component-realstore-list :propDataList="plugins_realstore_data.data" :propRealstoreDetailQuery="'&source_goods_id='+goods.id" :propIsFavor="false"></component-realstore-list>
</block>
<block v-else>
<view class="cr-grey tc padding-top-xl padding-bottom-xxxl">无相关门店信息</view>
@ -859,14 +859,7 @@
});
//
var value = 4;
if (this.is_opt_cart != 1) {
value--;
}
if (this.common_app_is_online_service != 1) {
value--;
}
this.setData({ bottom_nav_bus_number: value });
this.bottom_nav_bus_number_handle();
} else {
app.globalData.is_config(this, 'init_config');
}
@ -932,29 +925,35 @@
}
//
if((this.plugins_realstore_data || null) != null) {
if((this.plugins_realstore_data || null) != null && (this.plugins_realstore_data.data || null) != null) {
var realstore_info = null;
var len = this.plugins_realstore_data.length;
var len = this.plugins_realstore_data.data.length;
if(len > 1) {
var realstore_id = this.params.realstore_id || null;
if(realstore_id != null) {
this.plugins_realstore_data.forEach(function(item, index) {
this.plugins_realstore_data.data.forEach(function(item, index) {
if(item.id == realstore_id) {
realstore_info = item;
}
});
}
} else {
realstore_info = this.plugins_realstore_data[0];
realstore_info = this.plugins_realstore_data.data[0];
}
if(realstore_info != null) {
this.setData({
plugins_realstore_cart_nav_status: true
});
this.$refs.realstore_cart.init({...{info: realstore_info, realstore_goods_data: {...{buy_button: this.buy_button}, ...this.goods}}, ...this.params});
this.$refs.realstore_cart.init({...{base: this.plugins_realstore_data.base, info: realstore_info, realstore_goods_data: {...{buy_button: this.buy_button}, ...this.goods}}, ...this.params});
}
}
//
if(parseInt(data.is_hide_goods_detail_bottom_opt_cart || 0) == 1) {
this.setData({is_opt_cart: 0});
this.bottom_nav_bus_number_handle();
}
//
this.setData({
//
@ -994,6 +993,18 @@
});
},
//
bottom_nav_bus_number_handle() {
var value = 4;
if (this.is_opt_cart != 1) {
value--;
}
if (this.common_app_is_online_service != 1) {
value--;
}
this.setData({ bottom_nav_bus_number: value });
},
//
top_nav_left_back_event(e) {
var pages = getCurrentPages();
@ -1099,9 +1110,9 @@
break;
//
case 'plugins-realstore':
var temp_data_list = this.plugins_realstore_data || [];
var temp_data_list = this.plugins_realstore_data.data || [];
if (temp_data_list.length == 1) {
app.globalData.url_open(temp_data_list[0]['url']);
app.globalData.url_open(temp_data_list[0]['url']+'&source_goods_id='+this.goods.id);
} else {
this.setData({
popup_realstore_status: true,

View File

@ -131,7 +131,7 @@ page {
min-width: 32rpx;
}
.goods-list .goods-item.item-highlight {
box-shadow: 0rpx 9rpx 20rpx 0px rgba(0, 0, 0, 0.1);
box-shadow: 0rpx 8rpx 12rpx 0px rgba(0, 0, 0, 0.06);
background: #F7FBF6 !important;
}

View File

@ -731,7 +731,7 @@
//
get_cart_data() {
this.$refs.realstore_cart.init({...{info: this.info}, ...this.params});
this.$refs.realstore_cart.init({...{base: this.data_base, info: this.info}, ...this.params});
},
//
@ -752,62 +752,7 @@
// iconid
search_icon_event(e) {
var user = app.globalData.get_user_info(this);
if (user != false) {
//
if (app.globalData.user_is_need_login(user)) {
uni.navigateTo({
url: '/pages/login/login?event_callback=search_icon_event',
});
return false;
} else {
//
if (!this.$refs.realstore_cart.is_status_check()) {
return false;
}
//
var self = this;
uni.scanCode({
success: function (res) {
uni.showLoading({
title: '处理中...',
mask: true,
});
uni.request({
url: app.globalData.get_request_url('scan', 'detail', 'realstore'),
method: 'POST',
data: self.$refs.realstore_cart.request_params_merge(
{
value: res.result,
}, 'buy'),
dataType: 'json',
success: (res) => {
uni.hideLoading();
if (res.data.code == 0) {
if (res.data.data.is_error == 1) {
app.globalData.showToast(res.data.data.is_error_msg);
} else {
//
self.$refs.realstore_cart.cart_save(res.data.data.goods_id, 1, res.data.data.spec);
}
} else {
if (app.globalData.is_login_check(res.data)) {
app.globalData.showToast(res.data.msg);
} else {
app.globalData.showToast('提交失败,请重试!');
}
}
},
fail: () => {
uni.hideLoading();
app.globalData.showToast('网络开小差了哦~');
},
});
},
});
}
}
this.$refs.realstore_cart.search_icon_handle();
},
//