123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- <template>
- <view>
- <u-navbar :placeholder="true" bgColor="#fff" :autoBack="true" :border="true" title="奖品详情"></u-navbar>
- <view class="detail">
- <view class="detail-top">
- <u-swiper :list="picUrlArr" height="375" radius="0" :indicator="true" :circular="true"></u-swiper>
- </view>
- <view class="detail-info">
- <view class="content" v-text="info.title"></view>
- </view>
- <view class="detail-title">商品详情</view>
- <view class="detail-description">
- <u-parse :content="description" :selectable="true"></u-parse>
- </view>
- <view style="detail-merchant" @click="toCompanyData" v-if="info.merchantInfo?true:false">
- <view class="detail-merchant-warp">
- <view class="detail-merchant-warp-one">商家信息</view>
- <view class="detail-merchant-warp-two">
- <view style="float: left;">前往查看</view>
- <u-icon style="float: right;" name="arrow-right" size="18"></u-icon>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import env from '../../config/env.js'
- import $http from '@/utils/request.js'
- export default {
- data() {
- return {
- boxId: '',
- picUrlArr: [],
- info: {},
- prizeList: [],
- description: '',
- goodsId: '',
- payShow: false,
- payInfo: {}
- };
- },
- onLoad(opthios) {
- this.getDetail(opthios.id)
- this.goodsId = opthios.id
- },
- methods: {
- getDetail(id) {
- uni.showLoading({
- title: '加载中'
- });
- $http.post('/api/v1/mp/user/exchange/goods/detail', {
- noToken: true,
- goodsId: id
- }).then(res => {
- uni.hideLoading();
- if (res.code == 0) {
- this.info = res.data
- let picUrlArr = res.data.picUrl.split(',')
- picUrlArr.forEach(item => {
- this.picUrlArr.push(env.filePublic + item + '?imageView2/2/w/750')
- })
- // 处理富文本
- const description = res.data.description.replaceAll(".jpg\"", ".jpg?imageView2/2/w/750\"")
- .replaceAll(".jpeg\"", ".jpeg?imageView2/2/w/750\"").replaceAll(".png\"",
- ".png?imageView2/2/w/750\"");
- this.description = this.formatRichText(description);
- }
- }).catch(() => {
- uni.hideLoading();
- })
- },
- close() {
- this.payShow = false
- },
- exchange() {
- let data = {
- couponIds: [],
- autoCoupon: 1,
- boxId: this.info.boxId,
- ticketId: this.info.ticketId,
- orderNum: 1
- }
- $http.post('/api/v1/mp/user/ticket/order/settle', data).then(res => {
- if (res.code == 0) {
- let info = {
- ...res.data,
- ...this.info,
- picUrl: env.filePublic + res.data.picUrl,
- }
- this.payInfo = info
- this.payShow = true
- }
- })
- },
-
- toCompanyData(){
- uni.navigateTo({
- url:`/packageGoods/goods/company?goodsId=${ this.goodsId }`
- })
- },
-
- /**
- * 处理富文本里的图片宽度自适应
- * 1.去掉img标签里的style、width、height属性
- * 2.img标签添加style属性:max-width:100%;height:auto
- * 3.修改所有style里的width属性为max-width:100%
- * 4.去掉<br/>标签
- * @param html
- * @returns {void|string|*}
- */
- formatRichText(html) { //控制小程序中图片大小
- let newContent = html.replace(/<img[^>]*>/gi, function(match, capture) {
- match = match.replace(/style="[^"]+"/gi, '').replace(/style='[^']+'/gi, '');
- match = match.replace(/width="[^"]+"/gi, '').replace(/width='[^']+'/gi, '');
- match = match.replace(/height="[^"]+"/gi, '').replace(/height='[^']+'/gi, '');
- return match;
- });
- newContent = newContent.replace(/style="[^"]+"/gi, function(match, capture) {
- match = match.replace(/width:[^;]+;/gi, 'max-width:100%;').replace(/width:[^;]+;/gi,
- 'max-width:100%;');
- return match;
- });
- newContent = newContent.replace(/<br[^>]*\/>/gi, '');
- newContent = newContent.replace(/\<img/gi,
- '<img style="max-width:100%;height:auto;font-size: 0;margin-top: -5px;"');
- return newContent;
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .detail {
- &-info {
- padding: 50rpx 20rpx 50rpx;
- margin-bottom: 10rpx;
- background-color: #fff;
- .content {
- font-size: 32rpx;
- font-weight: bold;
- }
- }
- &-title {
- height: 88rpx;
- text-align: center;
- line-height: 88rpx;
- font-weight: bold;
- background-color: #FFFFFF;
- }
- &-description {
- image {
- width: 100%;
- }
- }
- &-merchant {
- height: 88rpx;
- // text-align: center;
- line-height: 88rpx;
- font-weight: bold;
- background-color: #FFFFFF;
- &-warp {
- height: 88rpx;
- width: 100%;
- background-color: #ffffff;
- &-one {
- float: left;
- margin: 20rpx;
- font-weight: 600;
- }
- &-two {
- float: right;
- margin: 20rpx;
- font-weight: 600;
- }
- }
- }
- // 设置ios刘海屏底部横线安全区域
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- }
- </style>
|