Blame view

src/pages/frameDetail/frameDetail.vue 25.8 KB
435c08bd8   BigBoss   新增订单详情页面
1
  <template>
323398550   范牧   若干功能添加
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
    <view class="container">
      <view class="D1">
        <!-- 轮播图 -->
        <swiper
          class="swiperImage"
          :indicator-dots="true"
          :autoplay="true"
          :interval="4000"
          :duration="500"
        >
          <swiper-item
            v-for="(item, index) in goodInfo.pics"
            :key="index"
          >
            <image
              :src="item"
              mode="scaleToFill"
            ></image>
          </swiper-item>
        </swiper>
089dce19d   范牧   支付修改
22
        <view class="D1_price">¥{{goodInfo.priceArea.Min_Price || '暂无'}}<span class="D1_number">{{goodInfo.trade_num || '暂无'}}人购买过</span></view>
323398550   范牧   若干功能添加
23
24
25
26
27
28
29
30
31
32
33
        <view class="D1_name"><span class="D1_name1">{{goodInfo.p_name || '暂无'}}</span></view>
        <view class="D1_spans"><span>支持7天无理由退货</span><span>顺丰发货</span><span>30天质量保证</span></view>
      </view>
      <view
        class="D2"
        v-if="updateGoodType == 2 || updateGoodType == 4"
      >
        <view><span class="D2_span1">框架材质:</span><span class="D2_span2">{{introduction.material}}</span></view>
        <view><span class="D2_span1">风格:</span><span class="D2_span2">{{introduction.func}}</span></view>
        <view><span class="D2_span1">适用性别:</span><span class="D2_span2">{{introduction.rate}}</span></view>
      </view>
089dce19d   范牧   支付修改
34
      <!-- <view
323398550   范牧   若干功能添加
35
36
37
38
39
40
41
42
43
44
45
46
47
48
        class="D2"
        v-if="updateGoodType == 1"
      >
        <view><span class="D2_span1">镜片材质:</span><span class="D2_span2">{{introduction.material}}</span></view>
        <view><span class="D2_span1">功能:</span><span class="D2_span2">{{introduction.func}}</span></view>
        <view><span class="D2_span1">使用场景:</span><span class="D2_span2">{{introduction.rate}}</span></view>
      </view>
      <view
        class="D2"
        v-if="updateGoodType == 3"
      >
        <view><span class="D2_span1">材质:</span><span class="D2_span2">{{introduction.material}}</span></view>
        <view><span class="D2_span1">直径/基弧:</span><span class="D2_span2">{{introduction.func}}</span></view>
        <view><span class="D2_span1">适用性别:</span><span class="D2_span2">{{introduction.rate}}</span></view>
089dce19d   范牧   支付修改
49
      </view> -->
323398550   范牧   若干功能添加
50
51
52
53
54
55
56
57
58
59
60
      <view class="D3">
        <view class="screenBar">
          <view
            v-for="item in screenItems"
            :key="item.current"
            @click="tabChange(item.current)"
          >
            <view
              class="screenItem"
              v-bind:class="{ active: current === item.current }"
            >{{ item.text || '暂无' }}</view>
435c08bd8   BigBoss   新增订单详情页面
61
          </view>
323398550   范牧   若干功能添加
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
        </view>
        <view
          class="screen-item"
          v-if="current === 1"
        >
          <view class="D3_list">
            <view
              v-for="(item) in parameter"
              :key="item.key"
            >
              <image
                class="D3_image"
                v-bind:src="item.img"
              ></image>
              <span>{{item.standard || '暂无'}}</span>
              <span>{{item.slength || '暂无'}}</span>
            </view>
435c08bd8   BigBoss   新增订单详情页面
79
          </view>
323398550   范牧   若干功能添加
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
        </view>
        <view
          class="screen-item"
          v-if="current === 0"
        >
          <view class="D3_list">
            <!-- <block>
              <view>主体</view>
              <view>商品产地:韩国</view>
              <view>包装清单:彩色隐形 * 1</view>
            </block> -->
            <!-- 迭代时建议配合接口修改 为数组 -->
            <view v-if="tag.prod_tag_age && tag.prod_tag_age.length !== 0">
              <view class="">
                年龄:<view
                  v-for="(item,index) in tag.prod_tag_age"
                  :key="index"
                >
                  {{item.label}}<text v-if="index !== tag.prod_tag_age.length - 1">/</text>
                </view>
435c08bd8   BigBoss   新增订单详情页面
100
              </view>
323398550   范牧   若干功能添加
101
102
103
104
105
106
107
108
109
            </view>
            <view v-if="tag.prod_tag_color && tag.prod_tag_color.length !== 0">
              <view class="">
                颜色:<view
                  v-for="(item,index) in tag.prod_tag_color"
                  :key="index"
                >
                  {{item.label}}<text v-if="index !== tag.prod_tag_color.length - 1">/</text>
                </view>
435c08bd8   BigBoss   新增订单详情页面
110
              </view>
323398550   范牧   若干功能添加
111
112
113
114
115
116
117
118
119
            </view>
            <view v-if="tag.prod_tag_face && tag.prod_tag_face.length !== 0">
              <view class="">
                脸型:<view
                  v-for="(item,index) in tag.prod_tag_face"
                  :key="index"
                >
                  {{item.label}}<text v-if="index !== tag.prod_tag_face.length - 1">/</text>
                </view>
435c08bd8   BigBoss   新增订单详情页面
120
              </view>
323398550   范牧   若干功能添加
121
122
123
124
125
126
127
128
129
            </view>
            <view v-if="tag.prod_tag_freesend && tag.prod_tag_freesend.length !== 0">
              <view class="">
                赠品:<view
                  v-for="(item,index) in tag.prod_tag_freesend"
                  :key="index"
                >
                  {{item.label}}<text v-if="index !== tag.prod_tag_freesend.length - 1">/</text>
                </view>
435c08bd8   BigBoss   新增订单详情页面
130
              </view>
323398550   范牧   若干功能添加
131
132
133
134
135
136
137
138
139
            </view>
            <view v-if="tag.prod_tag_insurance && tag.prod_tag_insurance.length !== 0">
              <view class="">
                保险:<view
                  v-for="(item,index) in tag.prod_tag_insurance"
                  :key="index"
                >
                  {{item.label}}<text v-if="index !== tag.prod_tag_insurance.length - 1">/</text>
                </view>
435c08bd8   BigBoss   新增订单详情页面
140
              </view>
323398550   范牧   若干功能添加
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
            </view>
            <view v-if="tag.prod_tag_metal && tag.prod_tag_metal.length !== 0">
              <view class="">
                材质:<view
                  v-for="(item,index) in tag.prod_tag_metal"
                  :key="index"
                >
                  {{item.label}}<text v-if="index !== tag.prod_tag_metal.length - 1">/</text>
                </view>
              </view>
            </view>
            <view v-if="tag.prod_tag_personal && tag.prod_tag_personal.length !== 0">
              <view class="">
                个性:<view
                  v-for="(item,index) in tag.prod_tag_personal"
                  :key="index"
                >
                  {{item.label}}<text v-if="index !== tag.prod_tag_personal.length - 1">/</text>
                </view>
              </view>
            </view>
            <view v-if="tag.prod_tag_sense && tag.prod_tag_sense.length !== 0">
              <view class="">
                场景:<view
                  v-for="(item,index) in tag.prod_tag_sense"
                  :key="index"
                >
                  {{item.label}}<text v-if="index !== tag.prod_tag_sense.length - 1">/</text>
                </view>
              </view>
            </view>
            <view v-if="tag.prod_tag_sex && tag.prod_tag_sex.length !== 0">
              <view class="">
                性别:<view
                  v-for="(item,index) in tag.prod_tag_sex"
                  :key="index"
                >
                  {{item.label}}<text v-if="index !== tag.prod_tag_sex.length - 1">/</text>
                </view>
              </view>
            </view>
            <view v-if="tag.prod_tag_style && tag.prod_tag_style.length !== 0">
              <view class="">
                风格:<view
                  v-for="(item,index) in tag.prod_tag_style"
                  :key="index"
                >
                  {{item.label}}<text v-if="index !== tag.prod_tag_style.length - 1">/</text>
                </view>
              </view>
            </view>
            <view v-if="tag.prod_tag_weight && tag.prod_tag_weight.length !== 0">
              <view class="">
                重量:<view
                  v-for="(item,index) in tag.prod_tag_weight"
                  :key="index"
                >
                  {{item.label}}<text v-if="index !== tag.prod_tag_weight.length - 1">/</text>
                </view>
              </view>
            </view>
435c08bd8   BigBoss   新增订单详情页面
202
          </view>
323398550   范牧   若干功能添加
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
        </view>
        <view
          class="screen-item "
          v-if="current ===2"
        >
          <view class="customerService">
            <view class="serviceItem">
              <view class="title">
                <view style="width: 6rpx;height: 6rpx;border-radius: 3rpx;background-color: #FF6B4A;margin-right: 12rpx;"></view>
                <text class="titleText">卖家服务</text>
              </view>
              <view class="itemContent">平台卖家服务,为您在平台获得最优的购买体验</view>
            </view>
            <view class="serviceItem">
              <view class="title">
                <view style="width: 6rpx;height: 6rpx;border-radius: 3rpx;background-color: #FF6B4A;margin-right: 12rpx;"></view>
                <text class="titleText">平台承诺</text>
              </view>
              <view class="itemContent">平台卖家服务,为您在平台获得最优的购买体验阿斯蒂芬的发射点发射点发生的房贷首付的发护法国会国家和国际会更加和</view>
            </view>
            <view class="serviceItem">
              <view class="title">
                <view style="width: 6rpx;height: 6rpx;border-radius: 3rpx;background-color: #FF6B4A;margin-right: 12rpx;"></view>
                <text class="titleText">正品保证</text>
              </view>
              <view class="itemContent">向您保证所售商品均为正品行货</view>
            </view>
            <view class="serviceItem2">
              <view class="title">
                <text class="titleText">权利申明</text>
              </view>
              <view class="itemContent">任何个人或单位如果同时符合以下两个条件:1. 权利人发现网络用户利用网络服务侵害其合法权益;2. 百度的搜索引擎系统以自动检索方式而链接到第三方网站的内容侵犯了上述权利人的合法权益。请上述个人或单位务必以书面的通讯方式向百度提交权利通知。</view>
            </view>
            <view class="serviceItem2">
              <view class="title">
                <text class="titleText">价格保证</text>
              </view>
              <view class="itemContent">
                <view class="itemContent-child">
                  <text class="contentTitle">平台价:</text>
                  <text>任何个人或单位如果同时符合以下两个条件:1. 权利人发现网络用户利用网络服务侵害其合法权益;2. 百度的搜索引擎系统以自动检索方式而链接到第三方网站的内容侵犯了上述权利人的合法权益。请上述个人或单位务必以书面的通讯方式向百度提交权利通知</text>
                </view>
                <view class="itemContent-child">
                  <text class="contentTitle">划线价:</text>
                  <text>任何个人或单位如果同时符合以下两个条件:1. 权利人发现网络用户利用网络服务侵害其合法权益;2. 百度的搜索引擎系统以自动检索方式而链接到第三方网站的内容侵犯了上述权利人的合法权益。请上述个人或单位务必以书面的通讯方式向百度提交权利通知</text>
                </view>
                <view class="itemContent-child">
                  <text class="contentTitle">平折扣:</text>
                  <text>任何个人或单位如果同时符合以下两个条件:1. 权利人发现网络用户利用网络服务侵害其合法权益;2. 百度的搜索引擎系统以自动检索方式而链接到第三方网站的内容侵犯了上述权利人的合法权益。请上述个人或单位务必以书面的通讯方式向百度提交权利通知</text>
                </view>
                <view class="itemContent-child">
                  <text class="contentTitle">异常问题:</text>
                  <text>任何个人或单位如果同时符合以下两个条件:1. 权利人发现网络用户利用网络服务侵害其合法权益;2. 百度的搜索引擎系统以自动检索方式而链接到第三方网站的内容侵犯了上述权利人的合法权益。请上述个人或单位务必以书面的通讯方式向百度提交权利通知</text>
                </view>
435c08bd8   BigBoss   新增订单详情页面
257

435c08bd8   BigBoss   新增订单详情页面
258
              </view>
323398550   范牧   若干功能添加
259
260
261
262
263
264
265
266
267
            </view>
          </view>
        </view>
      </view>
      <view
        class="D4"
        v-if="current !==2"
      >
        <view class="D4_esvalue">
54d61dc1c   尹聃   详情页
268
          <view>{{esvalue}}&nbsp;&nbsp;{{goodInfo.judgeInfo.good}}</view>
323398550   范牧   若干功能添加
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
          <view class="D4_2">
            <view
              class="star"
              v-for="o in starCount"
              :key="o"
            >
              <image
                src="../../static/img/detail/d_star.png"
                mode="aspectFill"
                style="height: 26rpx; width: 28rpx;"
              ></image>
            </view>
          </view>
        </view>
        <view class="D4_list">
          <view
54d61dc1c   尹聃   详情页
285
            v-for="(assess) in goodInfo.judge_tag"
323398550   范牧   若干功能添加
286
            :key="assess.key"
54d61dc1c   尹聃   详情页
287
          >{{assess.name}}</view>
323398550   范牧   若干功能添加
288
289
290
291
292
293
        </view>
      </view>
      <view
        class="D5"
        v-if="current !==2"
      >
01b15d67e   范牧   bottomSheet 代码格式修改
294
295
296
297
        <view
          class="D5_fixed1"
          @click="consolg(goodInfo.prodIntro1)"
        >
323398550   范牧   若干功能添加
298
299
300
301
          <image src="/static/img/detail/hr.png"></image>
          <view>商品详细</view>
          <image src="/static/img/detail/hr.png"></image>
        </view>
01b15d67e   范牧   bottomSheet 代码格式修改
302
303
304
305
        <view
          class="D5_all"
          v-html="test"
        >
54d61dc1c   尹聃   详情页
306
307
308
          <!-- <block>
            <rich-text :nodes="goodInfo.prodIntro1"></rich-text>
          </block> -->
323398550   范牧   若干功能添加
309
310
        </view>
      </view>
323398550   范牧   若干功能添加
311
312
313
314
315
316
      <!-- 底部菜单 -->
      <view class="botton">
        <view
          @tap="toCart()"
          class="botton_1"
        >
b38a27f3e   范牧   详情页样式修改
317
          <view class="cart_icon">
01b15d67e   范牧   bottomSheet 代码格式修改
318
            <image v-bind:src="imgShop.img" />
b38a27f3e   范牧   详情页样式修改
319
320
            <text>{{cartNumber}}</text>
          </view>
323398550   范牧   若干功能添加
321
322
323
          <view class="botton_image">购物车</view>
        </view>
        <view class="botton_2">
54d61dc1c   尹聃   详情页
324
325
          <view
            class="botton_input"
22e1420fa   BigBoss   弹窗组件修改
326
            @tap="showBottom(1)"
54d61dc1c   尹聃   详情页
327
          >加入购物车</view>
323398550   范牧   若干功能添加
328
329
          <view
            class="botton_now"
607bc3a4d   BigBoss   修改了直接购买的流程,添加弹窗,选...
330
           
22e1420fa   BigBoss   弹窗组件修改
331
  		  @click="showBottom(2)"
323398550   范牧   若干功能添加
332
333
          >立即购买</view>
        </view>
01b15d67e   范牧   bottomSheet 代码格式修改
334
335
336
337
338
339
340
341
342
343
      </view>
      <BottomSheet
        v-if="isShowBottom"
        :isCart="isCart"
        @addCart="addCart"
        :pid="pid"
        :goodInfo="goodInfo"
        :isShowBottom="isShowBottom"
        @closeBottom="closeBottom"
      ></BottomSheet>
323398550   范牧   若干功能添加
344
    </view>
435c08bd8   BigBoss   新增订单详情页面
345
  </template>
323398550   范牧   若干功能添加
346
  <script>
607bc3a4d   BigBoss   修改了直接购买的流程,添加弹窗,选...
347
  import store from '@/store'
22e1420fa   BigBoss   弹窗组件修改
348
  import BottomSheet from '../../components/BottomSheet/BottomSheet.vue';
607bc3a4d   BigBoss   修改了直接购买的流程,添加弹窗,选...
349
350
351
352
  export default {    
  	components:{
  		BottomSheet,
  	},
323398550   范牧   若干功能添加
353
    data () {
607bc3a4d   BigBoss   修改了直接购买的流程,添加弹窗,选...
354
      return {	
22e1420fa   BigBoss   弹窗组件修改
355
  	  isCart:Number,	
607bc3a4d   BigBoss   修改了直接购买的流程,添加弹窗,选...
356
  	  isShowBottom : false,	//底部弹窗开关
6781a272d   BigBoss   修改冲突
357

54d61dc1c   尹聃   详情页
358
        test: '',
323398550   范牧   若干功能添加
359
        goodType: 2,
323398550   范牧   若干功能添加
360
361
362
        screenItems: [
          { current: 0, text: '商品介绍' },
          { current: 1, text: '规格参数' },
089dce19d   范牧   支付修改
363
          { current: 2, text: '售后保障' },
323398550   范牧   若干功能添加
364
365
366
367
368
369
370
371
372
        ],
        current: 0,
        starCount: 5,
        parameter: [
          { key: 0, img: '/static/img/detail/d2.png', standard: '框架宽', slength: '139mm' },
          { key: 1, img: '/static/img/detail/d3.png', standard: '镜片宽', slength: '51mm' },
          { key: 2, img: '/static/img/detail/d4.png', standard: '镜片高', slength: '45mm' },
          { key: 3, img: '/static/img/detail/d5.png', standard: '鼻架宽', slength: '19mm' },
          { key: 4, img: '/static/img/detail/d6.png', standard: '框架耳长', slength: '138mm' },
089dce19d   范牧   支付修改
373
          { key: 5, img: '/static/img/detail/d7.png', standard: '框架重', slength: '19mm' },
323398550   范牧   若干功能添加
374
        ],
54d61dc1c   尹聃   详情页
375
        esvalue: '宝贝好评率',
323398550   范牧   若干功能添加
376
377
378
        introduction: {
          material: '钛合金',
          func: '抗疲劳/防辐射',
089dce19d   范牧   支付修改
379
          rate: '男/女',
323398550   范牧   若干功能添加
380
381
382
383
384
385
        },
        imgAll: '/static/img/detail/d8.png',
        photoes: [
          { value: '日常办公', img: '/static/img/detail/d9.png' },
          { value: '上网', img: '/static/img/detail/d10.png' },
          { value: '追剧', img: '/static/img/detail/d11.png' },
089dce19d   范牧   支付修改
386
          { value: '玩游戏', img: '/static/img/detail/d12.png' },
323398550   范牧   若干功能添加
387
388
389
390
        ],
        imgDetail: '/static/img/detail/d13.png',
        imgShop: {
          img: '/static/tab-cart.png',
089dce19d   范牧   支付修改
391
          IsShown: false,
323398550   范牧   若干功能添加
392
393
394
395
        },
        tag: {
          prod_tag_freesend: [{
            label: '眼镜盒',
089dce19d   范牧   支付修改
396
397
            value: '262',
          }],
0bda9efec   BigBoss   购物车功能修改
398
399
        },
  	  
22e1420fa   BigBoss   弹窗组件修改
400
  	  pid: Number,
0bda9efec   BigBoss   购物车功能修改
401
402
403
404
405
406
407
408
409
410
411
  	  // 购物车数据
  	  addCartList: {
  	    uid: Number,//用户的唯一识别码	
  	    openid: String,
  	    mp_id: Number,//使用人
  	    sk_id: Number,//产品的sku_id
  	    num: Number,//购买数量
  	    pid: Number,//产品id
  	    price: Number,//价格
  	  	checkedSKU:Object//产品信息
  	  },
323398550   范牧   若干功能添加
412
413
      }
    },
a3d2beaa8   范牧   立即支付功能
414
    onLoad: function ({ pid, sk_id: skId }) {
323398550   范牧   若干功能添加
415
      this.pid = pid
5638d36da   范牧   解决冲突
416
      // console.log('sk_id=====>',sk_id)
323398550   范牧   若干功能添加
417
      store.dispatch('read/fetch', {
089dce19d   范牧   支付修改
418
        pid,
22e1420fa   BigBoss   弹窗组件修改
419
        // sk_id: skId,
323398550   范牧   若干功能添加
420
421
422
423
424
425
426
427
      }).then(() => {
        this.parameter[0].slength = `${this.goodInfo.frame_width}mm`
        this.parameter[1].slength = `${this.goodInfo.glass_width}mm`
        this.parameter[2].slength = `${this.goodInfo.glass_height}mm`
        this.parameter[3].slength = `${this.goodInfo.nose_width}mm`
        this.parameter[4].slength = `${this.goodInfo.leg_long}mm`
        this.parameter[5].slength = `${this.goodInfo.weight}mm`
        this.tag = this.goodInfo.tag
54d61dc1c   尹聃   详情页
428
        this.test = this.goodInfo.prodIntro1
cce344b20   尹聃   修改详情页的正则
429
        this.test = this.test.replace(/\<img/gi, '<img style="max-width:100%;height:auto"')
01b15d67e   范牧   bottomSheet 代码格式修改
430
431
432
433
        // addCart
        this.addCartList.uid = this.$store.state.user.userInfo.uid
        this.addCartList.openid = this.$store.state.user.userInfo.openid
        this.addCartList.pid = this.goodInfo.pid
0466216f3   尹聃   修改详情页
434
        this.addCartList.price = this.goodInfo.priceArea.Min_Price
323398550   范牧   若干功能添加
435
      })
b38a27f3e   范牧   详情页样式修改
436
      store.dispatch('cart/getCartList')
006e96547   尹聃   详情添加购物车
437
      // console.log(this.$store.state.user.userInfo.uid + 'ssss')
323398550   范牧   若干功能添加
438
439
440
441
442
443
    },
    computed: {
      updateGoodType () {
        return this.goodType
      },
      goodInfo () {
607bc3a4d   BigBoss   修改了直接购买的流程,添加弹窗,选...
444
        // console.log(this.$store.state.read.goodInfo)
323398550   范牧   若干功能添加
445
        return this.$store.state.read.goodInfo
089dce19d   范牧   支付修改
446
      },
b38a27f3e   范牧   详情页样式修改
447
448
449
      cartNumber() {
        return this.$store.state.cart.cartList.length || 0
      },
323398550   范牧   若干功能添加
450
    },
01b15d67e   范牧   bottomSheet 代码格式修改
451
452
453
454
455
456
457
458
459
    methods: {
      // 底部弹窗开关
      showBottom(isCart) {
        this.isCart = isCart
        this.isShowBottom = true
      },
      closeBottom() {
        this.isShowBottom = false
      },
323398550   范牧   若干功能添加
460
461
462
463
464
465
      // 前往购物车
      toCart() {
        uni.switchTab({
          url: '/pages/cart/cart',
          success: res => {},
          fail: (error) => { console.log('跳转购物车失败======>', error) },
089dce19d   范牧   支付修改
466
          complete: () => { console.log('toCart') },
323398550   范牧   若干功能添加
467
468
        })
      },
637a02b07   尹聃   添加购物车
469
      // 加入购物车
0bda9efec   BigBoss   购物车功能修改
470
471
472
473
474
475
476
      addCart (mp_id,num,checkedSKU,sk_id) {
  		this.addCartList.mp_id = mp_id
  		this.addCartList.sk_id = sk_id
  		this.addCartList.num = num
  		this.addCartList.checkedSKU = checkedSKU
  		console.log('添加购物车的参数',this.addCartList)
        store.dispatch('cart/addCart', this.addCartList).then((res)=>{
22e1420fa   BigBoss   弹窗组件修改
477
478
479
480
481
482
  		  if(res.code == 1){
  			  uni.showToast({
  			  	title:'添加成功~',
  				icon:'success'
  			  })
  		  }
0bda9efec   BigBoss   购物车功能修改
483
484
485
486
487
  		  // 再次请求购物车接口,实现实时更新
  		  store.dispatch('cart/getCartList', {
  		    uid: this.$store.state.user.userInfo.uid,
  		  })
  	  })
6781a272d   BigBoss   修改冲突
488

637a02b07   尹聃   添加购物车
489
      },
323398550   范牧   若干功能添加
490
491
492
493
494
495
496
497
      goPerchase () {
        // switch (this.updateGoodType) {
        //   case '1':
        console.log('goPerchase')
        uni.navigateTo({
          url: `../purchaseLenses/purchaseLenses?pid=${this.pid}`,
          success: res => {},
          fail: (error) => { console.log('跳转参数选择失败======>', error) },
089dce19d   范牧   支付修改
498
          complete: () => { console.log('goPerchase') },
323398550   范牧   若干功能添加
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
        })
        // break
        // case '2':
        //   uni.navigateTo({
        //     url: '../detailStandard/detailStandard_k',
        //     success: res => {},
        //     fail: () => {},
        //     complete: () => {}
        //   })
        //   break
        // case '3':
        //   uni.navigateTo({
        //     url: '../purchaseLenses/purchaseLenses',
        //     success: res => {},
        //     fail: () => {},
        //     complete: () => {}
        //   })
        //   break
        // case '4':
        //   uni.navigateTo({
        //     url: '../detailStandard/detailStandard_sun',
        //     success: res => {},
        //     fail: () => {},
        //     complete: () => {}
        //   })
        //   break
        // default :
        //   break
        // }
      },
637a02b07   尹聃   添加购物车
529
      // 加入购物车
5638d36da   范牧   解决冲突
530
531
532
533
534
535
536
537
538
539
540
      // addCart () {
      //   store.dispatch('cart/addCart', {
      //     uid: this.$store.state.user.userInfo.uid,
      //     openid: this.$store.state.user.userInfo.openid,
      //     pid: this.pid,
      //     checkedSKU: {},
      //   })
      //   store.dispatch('cart/getCartList', {
      //     uid: this.$store.state.user.userInfo.uid, // 用户id
      //   })
      // },
323398550   范牧   若干功能添加
541
542
543
544
      tabChange (e) {
        if (this.current !== e) {
          this.current = e
        }
089dce19d   范牧   支付修改
545
546
      },
    },
435c08bd8   BigBoss   新增订单详情页面
547
548
549
  }
  </script>
  <style lang='scss'>
323398550   范牧   若干功能添加
550
551
552
553
554
555
556
557
558
559
560
561
562
563
  .container {
    background-color: #f8f8f8;
  }
  .D1,
  .D2,
  .D3,
  .D4,
  .D6 {
    background: #ffffff;
    margin-bottom: 10px;
    padding: 8px 20px 8px 20px;
    box-sizing: border-box;
    .swiperImage {
      width: 684rpx;
637a02b07   尹聃   添加购物车
564
      height: 480rpx;
323398550   范牧   若干功能添加
565
      image {
637a02b07   尹聃   添加购物车
566
567
        max-width: 100%;
        max-height: 100%;
323398550   范牧   若干功能添加
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
        border-radius: 16rpx;
      }
    }
  }
  .D5 {
    background: #ffffff;
    padding: 8px 20px 8px 20px;
    box-sizing: border-box;
  }
  .swiperImage {
    width: 100%;
    height: 560rpx;
    .swiper-item {
      width: 100%;
      image {
        width: 100%;
435c08bd8   BigBoss   新增订单详情页面
584
      }
323398550   范牧   若干功能添加
585
586
587
588
589
590
591
592
593
594
595
596
597
598
    }
  }
  .D1 {
    .D1_price {
      color: #eb5d3b;
      font-size: 18px;
      margin-top: 5px;
      font-family: "PingFangSC-Semibold";
      display: flex;
      justify-content: space-between;
      .D1_number {
        color: #999999;
        font-size: 14px;
        font-family: "PingFangSC-Regular";
435c08bd8   BigBoss   新增订单详情页面
599
      }
323398550   范牧   若干功能添加
600
601
602
603
604
605
606
607
608
    }
    .D1_name {
      font-size: 16px;
      font-family: "PingFangSC-Semibold";
      margin-top: 5px;
      .D1_name1 {
        font-weight: bold;
        font-size: 16px;
        color: #333333;
435c08bd8   BigBoss   新增订单详情页面
609
      }
323398550   范牧   若干功能添加
610
611
612
613
614
615
616
617
    }
    .D1_spans {
      font-size: 10px;
      color: #999999;
      margin-top: 5px;
      span {
        height: 14px;
        margin-right: 10px;
435c08bd8   BigBoss   新增订单详情页面
618
      }
323398550   范牧   若干功能添加
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
    }
  }
  .D2 {
    font-size: 14px;
    font-family: "PingFangSC-Regular";
    view {
      height: 24px;
    }
    .D2_span1 {
      color: #999999;
    }
    .D2_span2 {
      color: #333333;
    }
  }
  .D3 {
    .screenBar {
      width: 670rpx;
      margin-top: 20rpx;
      margin-bottom: 24rpx;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      color: #333333;
      transition: all 0.2s;
    }
    .screen-item {
      font-size: 32rpx;
      color: #333333;
      display: flex;
      transition: all 0.2s;
      .D3_list {
        margin-bottom: 4px;
      }
      .D3_list view {
        display: flex;
        align-content: center;
        font-size: 14px;
        color: #333333;
      }
      .D3_list image {
        width: 50px;
        height: 25px;
        margin-right: 6px;
      }
      .D3_list span {
        margin-left: 6px;
        margin-right: 5px;
        font-family: "PingFangSC-Regular";
      }
    }
    .active {
      border-bottom: 4rpx solid #ff6b4a;
    }
    .customerService {
      margin-bottom: 90rpx;
      .serviceItem {
        margin-bottom: 32rpx;
        .title {
          display: flex;
          flex-direction: row;
          align-items: center;
          .titleText {
            font-size: 14px;
            color: #333333;
            margin-bottom: 12rpx;
435c08bd8   BigBoss   新增订单详情页面
687
          }
323398550   范牧   若干功能添加
688
689
690
691
692
693
        }
        .itemContent {
          font-size: 14px;
          color: #999999;
          margin-left: 18rpx;
        }
435c08bd8   BigBoss   新增订单详情页面
694
      }
323398550   范牧   若干功能添加
695
696
697
698
      .serviceItem2 {
        margin-left: 18rpx;
        margin-bottom: 32rpx;
        .titleText {
435c08bd8   BigBoss   新增订单详情页面
699
          font-size: 14px;
323398550   范牧   若干功能添加
700
701
702
703
704
705
706
707
708
709
          color: #ff6b4a;
        }
        .itemContent {
          font-size: 14px;
          color: #999999;
          .itemContent-child {
            margin-bottom: 40rpx;
            .contentTitle {
              border-bottom: 1px solid #ff6b4a;
            }
435c08bd8   BigBoss   新增订单详情页面
710
          }
323398550   范牧   若干功能添加
711
        }
435c08bd8   BigBoss   新增订单详情页面
712
      }
323398550   范牧   若干功能添加
713
714
715
716
717
718
719
720
721
722
723
724
725
726
    }
  }
  .D4 {
    .D4_esvalue {
      font-size: 14px;
      color: #333333;
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      .D4_2 {
        width: 90px;
        display: flex;
        align-items: center;
        justify-content: space-between;
435c08bd8   BigBoss   新增订单详情页面
727
      }
323398550   范牧   若干功能添加
728
729
730
731
732
733
    }
    .D4_esvalue view {
      font-size: 14px;
      color: #333333;
      font-weight: bold;
    }
01b15d67e   范牧   bottomSheet 代码格式修改
734
    .D4_list {
54d61dc1c   尹聃   详情页
735
736
737
738
      display: grid;
      grid-row-gap: 10px;
      grid-column-gap: 4px;
    }
323398550   范牧   若干功能添加
739
    .D4_list view {
54d61dc1c   尹聃   详情页
740
741
742
      display: flex;
      justify-content: center;
      align-items: center;
323398550   范牧   若干功能添加
743
      font-size: 12px;
54d61dc1c   尹聃   详情页
744
      width: 118px;
323398550   范牧   若干功能添加
745
      height: 24px;
54d61dc1c   尹聃   详情页
746
      border-radius: 2px;
323398550   范牧   若干功能添加
747
748
      background: #f2f2f2;
      color: #666666;
54d61dc1c   尹聃   详情页
749
      // letter-spacing: 1px;
323398550   范牧   若干功能添加
750
751
752
753
754
755
756
757
758
759
760
761
762
763
    }
  }
  .D5 {
    .D5_fixed1 {
      display: flex;
      justify-content: space-between;
      align-content: center;
      margin-bottom: 12px;
      view {
        font-size: 14px;
        color: #333333;
        font-weight: bold;
        font-family: "PingFangSC-Medium";
        line-height: 24px;
435c08bd8   BigBoss   新增订单详情页面
764
      }
323398550   范牧   若干功能添加
765
766
767
768
      image {
        width: 240rpx;
        height: 3px;
        margin-top: 10px;
435c08bd8   BigBoss   新增订单详情页面
769
      }
323398550   范牧   若干功能添加
770
771
772
    }
    .D5_all {
      width: 100%;
54d61dc1c   尹聃   详情页
773
774
775
      margin-top: 30rpx;
      margin-right: 30rpx;
      margin-bottom: 180rpx;
323398550   范牧   若干功能添加
776
      font-family: "PingFangSC-Regular";
54d61dc1c   尹聃   详情页
777
      // border: #999999 solid 1.5px;
323398550   范牧   若干功能添加
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
    }
  }
  .D6 {
    width: 100%;
    height: 430px;
    background: #f9f6ed;
    margin-bottom: 74px;
    view {
      text-align: center;
    }
    .D6_v1 {
      font-weight: bold;
    }
    .D6_v2 {
      font-size: 14px;
      margin-bottom: 30px;
    }
    .D6_v5 {
      .D6_v5_s1 {
        font-weight: bold;
      }
      .D6_v5_s2 {
        font-size: 14px;
      }
    }
  }
  .botton {
    position: fixed;
    bottom: 0;
    height: 74px;
    width: 100%;
    background: #ffffff;
    padding: 20px 20px 8px 20px;
    font-family: "PingFangSC-Regular";
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-content: center;
    .botton_1 {
      width: 20%;
      height: 100%;
      text-align: center;
      color: #989898;
b38a27f3e   范牧   详情页样式修改
821
822
823
      .cart_icon {
        position: relative;
        image {
b38a27f3e   范牧   详情页样式修改
824
825
826
827
828
829
830
        }
        text {
          position: absolute;
          color: white;
          font-size: 17px;
          background-color: red;
          min-height: 24px;
01b15d67e   范牧   bottomSheet 代码格式修改
831
          min-width: 24px;
b38a27f3e   范牧   详情页样式修改
832
833
834
835
836
          line-height: 24px;
          right: -12%;
          top: -12px;
          text-align: center;
          border-radius: 24px;
01b15d67e   范牧   bottomSheet 代码格式修改
837
          padding: 2px;
b38a27f3e   范牧   详情页样式修改
838
839
        }
      }
323398550   范牧   若干功能添加
840
841
    }
    image {
607bc3a4d   BigBoss   修改了直接购买的流程,添加弹窗,选...
842
843
      width: 42%;
      height: 26px;
323398550   范牧   若干功能添加
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
    }
    .botton_image {
      font-size: 12px;
      text-align: center;
    }
    .botton_2 {
      width: 74%;
      height: 86%;
      display: grid;
      grid-template-columns: 50% 50%;
    }
    .botton_input {
      display: inline-flex;
      align-items: center;
      justify-content: space-around;
      background: #fff0ec;
      font-size: 16px;
      color: #ff6b4a;
      border-radius: 20px 0 0 20px;
    }
    .botton_now {
      display: inline-flex;
      align-items: center;
      justify-content: space-around;
      background: #ff6b4a;
      font-size: 16px;
      color: #ffffff;
      border-radius: 0 20px 20px 0;
    }
01b15d67e   范牧   bottomSheet 代码格式修改
873
874
875
876
877
878
879
  }
  /* 隐藏滚动条 */
  ::-webkit-scrollbar {
    width: 0;
    height: 0;
    color: transparent;
  }
323398550   范牧   若干功能添加
880
  </style>