goodsDetail.vue 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <template>
  2. <view class="content">
  3. <view class="uni-margin-wrap">
  4. <swiper class="swiper" circular :indicator-dots="true" :autoplay="true" :interval="3000"
  5. :duration="duration">
  6. <swiper-item v-for="(item,index) in info.imgList">
  7. <view class="swiper-item">
  8. <image @click="showImgList(item.imgPath)" :src="item.imgPath" mode="aspectFit" class="swiper-itemImg"></image>
  9. </view>
  10. </swiper-item>
  11. </swiper>
  12. </view>
  13. <view class="name">{{info.name}} | {{info.specificationModel}} | {{info.partsCode}}</view>
  14. <view style="height: 30rpx;background: #F4F5F7;"></view>
  15. <view class="detail">
  16. <view class="datailTitle">商品详情</view>
  17. <view v-html="info.ozContent"></view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. components: {
  24. },
  25. data() {
  26. return {
  27. id:'',
  28. info:'',
  29. }
  30. },
  31. onLoad(opt) {
  32. this.id=opt.id;
  33. this.queryPartDetail()
  34. },
  35. methods: {
  36. queryPartDetail(){
  37. uni.showLoading({ title: '加载中'});
  38. this.$http('partsByOpen/queryPartDetail', {
  39. id:this.id,
  40. },'POST').then(res => {
  41. uni.hideLoading();
  42. this.info=res.data
  43. })
  44. },
  45. showImgList(img){
  46. var arr=[]
  47. arr.push(img)
  48. uni.previewImage({
  49. urls: arr,
  50. longPressActions: {
  51. itemList: ['发送给朋友', '保存图片'],
  52. success: function(data) {
  53. console.log('选中了第' + (data.tapIndex + 1) + '个按钮,第' + (data.index + 1) + '张图片');
  54. },
  55. fail: function(err) {
  56. console.log(err.errMsg);
  57. }
  58. }
  59. });
  60. }
  61. },
  62. }
  63. </script>
  64. <style scoped>
  65. .swiper-itemImg{
  66. width: 750rpx;
  67. height: 750rpx;
  68. }
  69. .uni-margin-wrap{
  70. height: 750rpx;
  71. }
  72. .swiper{
  73. height: 750rpx;
  74. }
  75. .datailTitle{
  76. font-weight: 500;
  77. color: #1A1A1A;
  78. line-height: 40rpx;
  79. padding: 32rpx 24rpx;
  80. font-size: 28rpx;
  81. }
  82. .name{
  83. font-weight: 500;
  84. color: #1A1A1A;
  85. line-height: 40rpx;
  86. font-size: 28rpx;
  87. padding: 30rpx 24rpx;
  88. }
  89. </style>