index.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. <template>
  2. <view class="detail" style=" padding: 30rpx;">
  3. <scroll-view scroll-y="true" scroll-with-animation='true' style="height: 100%">
  4. <view class="detail-img">
  5. <productConSwiperGroupbuying class="skeleton-rect" :imgUrls="goodsInfo.slideshowList" :h="351"
  6. :videoline="goodsInfo.videoUrl" @videoPause="videoPause"></productConSwiperGroupbuying>
  7. <!-- <image :src="goodsInfo.goodsCover" mode="scaleToFill" />-->
  8. </view>
  9. <view class="detail-content">
  10. <view style="display:flex; margin-bottom: 20rpx;">
  11. <text class="red"> ¥{{ goodsInfo.grouponPrice }}</text>
  12. <text class="line-thr">¥{{ goodsInfo.salePrice }}</text>
  13. </view>
  14. <view class="detail-content-t">
  15. {{ goodsInfo.goodsName }}
  16. </view>
  17. <!-- <view class='time '>
  18. <image src="http://www.gzzzyd.com/groupon/home_slices/编辑@2x.png" mode="scaleToFill" />
  19. 发布于:
  20. <text class="imp_info">
  21. 1天20小时36分钟前
  22. </text>
  23. </view> -->
  24. </view>
  25. <view class="detail-info product-intro">
  26. <view class="title">
  27. 商品信息
  28. </view>
  29. <!-- <u-album :urls="goodsInfo.detailImgUrlList" :rowCount="1" :multipleSize="albumWidth" maxCount="9999"-->
  30. <!-- multipleMode="widthFix"></u-album>-->
  31. <u-parse :content="goodsInfo.detailContent"></u-parse>
  32. </view>
  33. </scroll-view>
  34. <!-- <view class="footer acea-row row-between-wrapper">-->
  35. <!-- &lt;!&ndash; <button open-type="contact" hover-class='none' class='item'>-->
  36. <!-- <view class='iconfont icon-kefu'></view>-->
  37. <!-- <view>客服</view>-->
  38. <!-- </button> &ndash;&gt;-->
  39. <!-- <navigator hover-class="none" class="item skeleton-rect" open-type="switchTab" url="/pages/index/index">-->
  40. <!-- <view class="iconfont icon-shouye6"></view>-->
  41. <!-- <view class="p_center">{{ $t(`首页`) }}</view>-->
  42. <!-- </navigator>-->
  43. <!-- <view style=" margin-right: 30rpx;">-->
  44. <!-- <view class="bnt acea-row">-->
  45. <!-- <view class="buy-box">-->
  46. <!-- <button class="share-btn ">-->
  47. <!-- 分享有礼-->
  48. <!-- </button>-->
  49. <!-- <button class="now-btn " @submit="goBuy">-->
  50. <!-- 立即购买-->
  51. <!-- </button>-->
  52. <!-- </view>-->
  53. <!-- </view>-->
  54. <!-- </view>-->
  55. <!-- </view>-->
  56. </view>
  57. </template>
  58. <script>
  59. import {
  60. userEdit,
  61. } from '@/api/user.js';
  62. import productConSwiperGroupbuying from "@/components/productConSwiperGroupbuying";
  63. import {
  64. toLogin
  65. } from '@/libs/login.js';
  66. import {
  67. mapGetters
  68. } from "vuex";
  69. import dayjs from "@/plugin/dayjs/dayjs.min.js";
  70. // #ifdef MP
  71. import authorize from '@/components/Authorize';
  72. // #endif
  73. import colors from '@/mixins/color.js';
  74. export default {
  75. props: {
  76. goodsInfo: {
  77. type: Object,
  78. default: () => { }
  79. }
  80. },
  81. components: {
  82. productConSwiperGroupbuying,
  83. // #ifdef APP-PLUS
  84. appUpdate,
  85. // #endif
  86. // #ifdef MP
  87. authorize
  88. // #endif
  89. },
  90. mixins: [colors],
  91. data () {
  92. return {
  93. albumWidth: 0,
  94. };
  95. },
  96. computed: mapGetters(['isLogin']),
  97. watch: {
  98. isLogin: {
  99. handler: function (newV, oldV) {
  100. if (newV) {
  101. }
  102. },
  103. deep: true
  104. }
  105. },
  106. created(options) {
  107. let that = this;
  108. uni.getSystemInfo({
  109. success: function (res) {
  110. that.albumWidth = res.windowWidth - 30
  111. that.height = res.windowHeight;
  112. //res.windowHeight:获取整个窗口高度为px,*2为rpx;98为头部占据的高度;
  113. // #ifndef APP-PLUS || H5 || MP-ALIPAY
  114. that.navbarRight =
  115. res.windowWidth - uni.getMenuButtonBoundingClientRect().left;
  116. // #endif
  117. },
  118. });
  119. },
  120. methods: {
  121. videoPause () {
  122. let that = this;
  123. this.$nextTick(() => {
  124. that.infoScroll();
  125. });
  126. },
  127. formSubmit: function (e) {
  128. let that = this,
  129. value = e.detail.value,
  130. userInfo = that.switchUserInfo[that.userIndex];
  131. if (!value.nickname) return that.$util.Tips({
  132. title: that.$t(`请输入姓名`)
  133. });
  134. value.avatar = this.userInfo.avatar;
  135. userEdit(value).then(res => {
  136. return that.$util.Tips({
  137. title: res.msg,
  138. icon: 'success'
  139. }, {
  140. tab: 3,
  141. url: 1
  142. });
  143. }).catch(msg => {
  144. return that.$util.Tips({
  145. title: msg || that.$t(`保存失败`)
  146. }, {
  147. tab: 3,
  148. url: 1
  149. });
  150. });
  151. }
  152. }
  153. }
  154. </script>
  155. <style scoped lang="scss">
  156. .time {
  157. height: 44rpx;
  158. font-size: 24rpx;
  159. font-weight: 400;
  160. color: #999999;
  161. line-height: 44rpx;
  162. image {
  163. width: 40rpx;
  164. height: 40rpx;
  165. margin: 0 10rpx;
  166. vertical-align: middle;
  167. }
  168. .imp_info {
  169. height: 44rpx;
  170. font-size: 24rpx;
  171. font-weight: 400;
  172. color: #333333;
  173. line-height: 44rpx;
  174. }
  175. }
  176. .detail {
  177. height: 80vh;
  178. }
  179. .detail-img {
  180. image {
  181. width: 702rpx;
  182. height: 702rpx;
  183. }
  184. margin-bottom: 20rpx;
  185. }
  186. .detail-content-t {
  187. flex: 1;
  188. font-size: 20rpx;
  189. font-weight: 400;
  190. color: #333333;
  191. line-height: 28rpx;
  192. margin-bottom: 20rpx;
  193. }
  194. .detail-content {
  195. .red {
  196. display: block;
  197. font-size: 28rpx;
  198. font-weight: 500;
  199. color: #B22338 !important;
  200. margin-right: 10rpx;
  201. }
  202. .line-thr {
  203. display: block;
  204. font-size: 28rpx;
  205. font-weight: 400;
  206. color: #999999;
  207. text-decoration: line-through;
  208. }
  209. }
  210. .detail-info {
  211. .title {
  212. margin: 30rpx 0;
  213. height: 44rpx;
  214. font-size: 32rpx;
  215. font-weight: 500;
  216. color: #111111;
  217. line-height: 44rpx;
  218. }
  219. }
  220. .footer {
  221. padding: 0 20rpx 0 10rpx;
  222. position: fixed;
  223. bottom: 0;
  224. width: 100%;
  225. box-sizing: border-box;
  226. background-color: #fff;
  227. z-index: 277;
  228. border-top: 1rpx solid #f0f0f0;
  229. height: 100rpx;
  230. height: calc(100rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
  231. height: calc(100rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
  232. }
  233. .footer .item .iconfont {
  234. text-align: center;
  235. font-size: 40rpx;
  236. }
  237. .footer .item .iconfont.icon-shoucang1 {
  238. color: var(--view-theme);
  239. }
  240. .footer .item .iconfont.icon-gouwuche1 {
  241. font-size: 40rpx;
  242. position: relative;
  243. }
  244. .buy-box {
  245. display: flex;
  246. width: 100%;
  247. }
  248. .share-btn {
  249. width: 280rpx;
  250. height: 84rpx;
  251. background: #F1F8E5;
  252. border-radius: 54rpx 0rpx 0rpx 54rpx;
  253. font-size: 28rpx;
  254. font-weight: 400;
  255. color: #75BE00;
  256. line-height: 84rpx;
  257. }
  258. .now-btn {
  259. width: 280rpx;
  260. height: 84rpx;
  261. background: #B42A3E;
  262. border-radius: 0rpx 54rpx 54rpx 0rpx;
  263. font-size: 28rpx;
  264. font-weight: 400;
  265. color: #fff;
  266. line-height: 84rpx;
  267. }
  268. </style>