123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379 |
- <template>
- <view>
- <view v-if="(data || null) != null" class="page-bottom-fixed">
- <view class="padding-horizontal-main padding-top-main">
- <!-- 基础信息 -->
- <view class="base-container tc pr padding-main border-radius-main bg-main oh spacing-mb" :style="'background-color:'+data.color+' !important;background-image:url('+data.images+')'">
- <view class="text cr-white pa bs-bb text-size wh-auto ht-auto">{{data.describe}}</view>
- </view>
- <view v-if="(data.goods || null) != null && data.goods.length > 0">
- <!-- 商品 -->
- <view class="data-list oh">
- <view v-for="(item, index) in data.goods" :key="index" :class="'item padding-main border-radius-main bg-white oh spacing-mb '+(item.is_error == 0 ? '' : 'br-red')">
- <image class="goods-img dis-block border-radius-main fl" :src="item.images" mode="aspectFit" :data-value="item.goods_url" @tap="url_event"></image>
- <view class="right-base fr">
- <label v-if="data.type == 1 && item.is_error == 0" class="fr" :data-index="index" @tap="goods_choice_event">
- <radio :checked="(item.checked == undefined || item.checked == true)" style="transform:scale(0.7)" />
- </label>
- <view :class="'multi-text '+(data.type == 1 ? 'padding-right' : '')">{{item.title}}</view>
- <view class="single-text margin-top-sm">
- <text class="sales-price">{{currency_symbol}}{{item.price}}</text>
- <text v-if="item.original_price != 0" class="original-price margin-left-sm">{{currency_symbol}}{{item.original_price}}</text>
- </view>
- <view class="margin-top-xs">
- <view v-if="item.is_error == 0">
- <view class="va-m dis-inline-block margin-right-xl pr" :data-index="index" @tap="goods_cart_event">
- <uni-icons type="cart" size="16" color="#999"></uni-icons>
- <view class="cart-badge-icon pa">
- <component-badge :propNumber="item.user_cart_count || 0"></component-badge>
- </view>
- </view>
- <text class="cr-gray text-size-xs">{{item.inventory}}{{item.inventory_unit}}</text>
- <view v-if="(item.is_exist_many_spec || 0) == 1" class="br-gray cr-gray round fr padding-left padding-right single-text text-size-xs spec-choice" :data-index="index" @tap="spec_choice_event">{{item.spec_choice_text || '选择规格'}}</view>
- </view>
- <view v-else class="cr-yellow text-size-xs">{{item.error_msg}}</view>
- </view>
- </view>
- </view>
- </view>
- <!-- 导航 -->
- <view class="nav-button bottom-fixed padding-main pr">
- <view class="bottom-line-exclude oh">
- <view class="left-price fl">
- <view v-if="data.estimate_discount_price != 0" class="pa single-text estimate-discount-price">
- <text class="discount-icon cr-white text-size-xs">节省</text>
- <text class="cr-green">{{currency_symbol}}{{data.estimate_discount_price}}</text>
- </view>
- <view :class="'sales-price single-text margin-top-'+(data.estimate_discount_price == 0 ? 'sm' : 'xl')">{{currency_symbol}}{{data.estimate_price}}</view>
- </view>
- <view class="right-button fr tr">
- <button type="default" size="mini" class="bg-main br-main cr-white round dis-block text-size-sm" @tap="buy_event">立即购买</button>
- </view>
- </view>
- </view>
- </view>
- <view v-else>
- <!-- 提示信息 -->
- <component-no-data propStatus="0" propMsg="没有相关商品"></component-no-data>
- </view>
- </view>
- <!-- 结尾 -->
- <component-bottom-line :propStatus="data_bottom_line_status"></component-bottom-line>
- </view>
- <view v-else>
- <!-- 提示信息 -->
- <component-no-data :propStatus="data_list_loding_status" :propMsg="data_list_loding_msg"></component-no-data>
- </view>
- <!-- 规格选择 -->
- <component-goods-spec-choice ref="goods_spec_choice" v-on:specConfirmEvent="spec_confirm_event"></component-goods-spec-choice>
-
- <!-- 商品购买 -->
- <component-goods-buy ref="goods_buy" v-on:CartSuccessEvent="goods_cart_back_event"></component-goods-buy>
- </view>
- </template>
- <script>
- const app = getApp();
- import base64 from '../../../../common/js/lib/base64.js';
- import componentNoData from "../../../../components/no-data/no-data";
- import componentBottomLine from "../../../../components/bottom-line/bottom-line";
- import componentGoodsSpecChoice from "../../../../components/goods-spec-choice/goods-spec-choice";
- import componentGoodsBuy from "../../../../components/goods-buy/goods-buy";
- import componentBadge from "../../../../components/badge/badge";
- export default {
- data() {
- return {
- data_bottom_line_status: false,
- data_list_loding_status: 1,
- data_list_loding_msg: '',
- currency_symbol: app.globalData.data.currency_symbol,
- params: null,
- user: null,
- data_base: null,
- data: null,
- // 自定义分享信息
- share_info: {}
- };
- },
- components: {
- componentNoData,
- componentBottomLine,
- componentGoodsSpecChoice,
- componentGoodsBuy,
- componentBadge
- },
- onLoad(params) {
- this.setData({
- params: params
- });
- },
- onShow() {
- // 初始化配置
- this.init_config();
- // 获取数据
- this.get_data();
- },
- // 下拉刷新
- onPullDownRefresh() {
- this.get_data();
- },
- methods: {
- // 初始化配置
- init_config(status) {
- if ((status || false) == true) {
- this.setData({
- currency_symbol: app.globalData.get_config('currency_symbol'),
- });
- } else {
- app.globalData.is_config(this, 'init_config');
- }
- },
- // 获取数据
- get_data() {
- uni.showLoading({
- title: '加载中...'
- });
- uni.request({
- url: app.globalData.get_request_url("detail", "index", "binding"),
- method: 'POST',
- data: {
- id: this.params.id || 0
- },
- dataType: 'json',
- success: res => {
- uni.hideLoading();
- uni.stopPullDownRefresh();
- if (res.data.code == 0) {
- var data = res.data.data;
- this.setData({
- data_base: data.base || null,
- data: data.data || null,
- data_list_loding_msg: '',
- data_list_loding_status: 0,
- data_bottom_line_status: ((data.data || null) != null && (data.data.goods || null) != null && data.data.goods.length > 0)
- });
- if ((this.data || null) != null) {
- // 基础自定义分享
- this.setData({
- share_info: {
- title: this.data.seo_title || this.data.title,
- desc: this.data.seo_desc || this.data.describe,
- path: '/pages/plugins/binding/detail/detail',
- query: 'id='+this.data.id,
- img: this.data.images
- }
- });
- // 标题
- if((this.data.title || null) != null) {
- uni.setNavigationBarTitle({
- title: this.data.title
- });
- }
- }
- } else {
- this.setData({
- data_bottom_line_status: false,
- data_list_loding_status: 2,
- data_list_loding_msg: res.data.msg
- });
- }
- // 分享菜单处理
- app.globalData.page_share_handle(this.share_info);
- },
- fail: () => {
- uni.hideLoading();
- uni.stopPullDownRefresh();
- this.setData({
- data_bottom_line_status: false,
- data_list_loding_status: 2,
- data_list_loding_msg: '服务器请求出错'
- });
- app.globalData.showToast('服务器请求出错');
- }
- });
- },
- // url事件
- url_event(e) {
- app.globalData.url_event(e);
- },
- // 商品选择事件
- goods_choice_event(e) {
- // 选择处理
- var index = e.currentTarget.dataset.index || 0;
- var temp_data = this.data;
- var goods = temp_data.goods;
- goods[index]['checked'] = (goods[index]['checked'] == undefined || goods[index]['checked'] == true) ? false : true;
- temp_data['goods'] = goods;
- // 已选商品
- var min_price = 0;
- var max_price = 0;
- var min_original_price = 0;
- var max_original_price = 0;
- var price = 0;
- var discount_price = 0;
- for(var i in goods) {
- if((goods[i]['checked'] == undefined || goods[i]['checked'] == true) && goods[i]['is_error'] == 0) {
- min_price += parseFloat(goods[i]['min_price'] || 0);
- max_price += parseFloat(goods[i]['max_price'] || 0);
- min_original_price += parseFloat(goods[i]['min_original_price'] || 0);
- max_original_price += parseFloat(goods[i]['max_original_price'] || 0);
- }
- }
- // 价格信息
- price = parseFloat(temp_data.price || 0);
- var rate = parseFloat(temp_data.rate || 0);
- // 组合价
- if(price > 0) {
- if(min_price == max_price) {
- var original_price = min_price;
- var dv = parseFloat(app.globalData.price_two_decimal(original_price-price));
- discount_price = (dv <= 0) ? 0 : dv;
- } else {
- var original_price = min_price+'-'+max_price;
- var d1 = parseFloat(app.globalData.price_two_decimal(min_price-price));
- var d2 = parseFloat(app.globalData.price_two_decimal(max_price-price));
- discount_price = (d1 == d2) ? d1 : ((d1 <= 0 && d2 <= 0) ? 0 : (d1 <= 0 ? 0 : d1)+'-'+(d2 <= 0 ? 0 : d2));
- }
- } else {
- // 折扣率
- if(rate > 0) {
- min_original_price = min_price;
- max_original_price = max_price;
- min_price = min_price*rate;
- max_price = max_price*rate;
- }
- price = (min_price != max_price) ? min_price+'-'+max_price : min_price;
- var original_price = (min_original_price != max_original_price) ? min_original_price+'-'+max_original_price : min_original_price;
- if(price.toString().indexOf('-') == -1 && original_price.toString().indexOf('-') == -1)
- {
- var dv = parseFloat(app.globalData.price_two_decimal(original_price-price));
- discount_price = (dv <= 0) ? 0 : dv;
- } else {
- var d1 = parseFloat(app.globalData.price_two_decimal(min_original_price-min_price));
- var d2 = parseFloat(app.globalData.price_two_decimal(max_original_price-max_price));
- discount_price = (d1 == d2) ? d1 : ((d1 <= 0 && d2 <= 0) ? 0 : (d1 <= 0 ? 0 : d1)+'-'+(d2 <= 0 ? 0 : d2));
- }
- }
- // 购买价格
- temp_data['estimate_price'] = price;
- // 节省价格
- temp_data['estimate_discount_price'] = discount_price;
- this.setData({data: temp_data});
- },
- // 规格选择
- spec_choice_event(e) {
- if((this.$refs.goods_spec_choice || null) != null) {
- var index = e.currentTarget.dataset.index || 0;
- var goods = this.data['goods'][index];
- this.$refs.goods_spec_choice.init(goods.id, goods['specifications']['choose'], goods.buy_min_number, index);
- }
- },
- // 规格确认回调事件
- spec_confirm_event(value) {
- var temp_data = this.data;
- temp_data['goods'][value.out_value]['spec_choice_data'] = value.spec;
- temp_data['goods'][value.out_value]['spec_choice_text'] = value.spec.map(function(v){return v.value;}).join(' / ');
- this.setData({data: temp_data});
- },
- // 立即购买
- buy_event(e) {
- // 是否需要选择商品
- var type = parseInt(this.data.type || 0);
- var goods_data = [];
- var temp_goods = this.data.goods;
- for(var i in temp_goods) {
- if(temp_goods[i]['is_error'] == 0) {
- var goods_id = null;
- if(type == 1) {
- if(temp_goods[i]['checked'] == undefined || temp_goods[i]['checked'] == true) {
- goods_id = temp_goods[i]['id'];
- }
- } else {
- goods_id = temp_goods[i]['id'];
- }
- if(goods_id !== null) {
- // 是否存在多规格
- if((temp_goods[i]['is_exist_many_spec'] || 0) == 1 && (temp_goods[i]['spec_choice_data'] || null) == null) {
- app.globalData.showToast('请选择第'+(parseInt(i)+1)+'个商品规格');
- return false;
- }
- goods_data.push({
- goods_id: goods_id,
- stock: temp_goods[i]['buy_min_number'] || 1,
- spec: temp_goods[i]['spec_choice_data'] || ''
- });
- }
- } else {
- // 组合搭配则每一个商品都需要正确状态
- if(type == 0) {
- app.globalData.showToast('第'+(parseInt(i)+1)+'个商品不可用');
- return false;
- }
- }
- }
- if(goods_data.length < 2) {
- app.globalData.showToast('请至少选择两个商品起');
- return false;
- }
- // 进入订单确认页面
- var data = {
- buy_type: "goods",
- goods_data: encodeURIComponent(base64.encode(JSON.stringify(goods_data)))
- };
- uni.navigateTo({
- url: '/pages/buy/buy?data=' + encodeURIComponent(base64.encode(JSON.stringify(data)))
- });
- },
- // 加入购物车
- goods_cart_event(e) {
- if((this.$refs.goods_buy || null) != null) {
- var index = e.currentTarget.dataset.index || 0;
- var goods = this.data['goods'][index];
- this.$refs.goods_buy.init(goods, {buy_event_type: 'cart', is_direct_cart: 1}, {index: index});
- }
- },
- // 加入购物车成功回调
- goods_cart_back_event(e) {
- // 增加数量
- var back = e.back_data;
- var temp = this.data;
- var goods = temp['goods'][back.index];
- goods['user_cart_count'] = parseInt(goods['user_cart_count'] || 0)+parseInt(e.stock);
- if(goods['user_cart_count'] > 99) {
- goods['user_cart_count'] = '99+';
- }
- temp['goods'][back.index] = goods;
- this.setData({data: temp});
- }
- }
- };
- </script>
- <style>
- @import './detail.css';
- </style>
|