123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <template>
- <view class="content">
- <homenav :iStatusBarHeight="iStatusBarHeight" :title="'商品详情'"></homenav>
- <view class="uni-margin-wrap">
- <swiper class="swiper" circular :indicator-dots="true" :autoplay="true" :interval="3000"
- :duration="duration">
- <swiper-item v-for="(item,index) in info.imgList">
- <view class="swiper-item">
- <image @click="showImgList(item.imgPath)" :src="item.imgPath" mode="aspectFit" class="swiper-itemImg"></image>
- </view>
- </swiper-item>
-
- </swiper>
- </view>
- <view class="name" v-if="loading">{{info.name}} | {{info.specificationModel}} | {{info.partsCode}}</view>
- <view style="height: 30rpx;background: #F4F5F7;"></view>
- <view class="detail">
- <view class="datailTitle">商品详情</view>
- <rich-text :nodes="html"></rich-text>
- </view>
-
- </view>
- </template>
- <script>
- import homenav from "../../components/homenav/nav.vue"
- export default {
- components: {
- homenav
- },
- data() {
- return {
- id:'',
- info:'',
- iStatusBarHeight:'',
- html:'',
- loading:false,
- }
- },
- onLoad(opt) {
- this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
- this.id=opt.id;
- this.queryPartDetail()
- },
- methods: {
- queryPartDetail(){
- uni.showLoading({ title: '加载中'});
- this.loading=false;
- this.$http('partsByOpen/queryPartDetail', {
- id:this.id,
- },'POST').then(res => {
- this.loading=true;
- uni.hideLoading();
- this.info=res.data;
- this.html = this.info.ozContent
- this.html = this.html.replace(/\<img/gi, '<img style="max-width:100%;height:auto" ');
- })
- },
- showImgList(img){
- var arr=[]
- arr.push(img)
- uni.previewImage({
- urls: arr,
- longPressActions: {
- itemList: ['发送给朋友', '保存图片'],
- success: function(data) {
- console.log('选中了第' + (data.tapIndex + 1) + '个按钮,第' + (data.index + 1) + '张图片');
- },
- fail: function(err) {
- console.log(err.errMsg);
- }
- }
- });
- }
- },
-
- }
- </script>
- <style scoped>
- .swiper-itemImg{
- width: 750rpx;
- height: 750rpx;
- }
- .uni-margin-wrap{
- height: 750rpx;
- }
- .swiper{
- height: 750rpx;
- }
- .datailTitle{
- font-weight: 500;
- color: #1A1A1A;
- line-height: 40rpx;
- padding: 32rpx 24rpx;
- font-size: 28rpx;
- }
- .name{
- font-weight: 500;
- color: #1A1A1A;
- line-height: 40rpx;
- font-size: 28rpx;
- padding: 30rpx 24rpx;
- }
- .detail img{
- width: 750rpx;
-
- }
- .detail image{
- width: 750rpx;
- }
- </style>
|