commodity.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. <template>
  2. <view class="container">
  3. <global-loading />
  4. <view>
  5. <view
  6. v-for="(item, index) in Productlist" :key="index"
  7. class="goodsDetails-box flex-display flex-column mar-left-30" @click="goodsDatails(item)"
  8. >
  9. <view class="goodsDetails flex-items-plus flex-row mar-top-30">
  10. <image class="goodsImg" :src="item.image"></image>
  11. <view class="mar-left-30">
  12. <view class="goodsName-box overflowNoDot">
  13. <label class="goodsName fs26 mar-left-20">{{ item.productName }}</label>
  14. </view>
  15. <view class="priceBuyNum-box mar-top-20">
  16. <label class="fs24 font-color-C5AA7B">¥</label>
  17. <label class="fs36 font-color-C5AA7B mar-left-10">{{ item.price }}</label>
  18. <label v-if="item.users != null" class="fs24 font-color-999 mar-left-20">{{ item.users }}人付款</label>
  19. <label v-else class="fs24 font-color-999 mar-left-20">0人付款</label>
  20. </view>
  21. <view class="fenxiang" @click.stop="fenxiang(item)">
  22. 分享
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. const NET = require('../../utils/request')
  32. const API = require('../../config/api')
  33. import tkiQrcode from '@/components/tki-qrcode/tki-qrcode.vue'
  34. export default {
  35. data() {
  36. return {
  37. Productlist: [],
  38. item: {},
  39. fenxiangitem: {},
  40. show: false,
  41. erweima: '',
  42. tuimgs: '',
  43. size: 160, // 二维码大小
  44. onval: true, // val值变化时自动重新生成二维码
  45. loadMake: true, // 组件加载完成后自动生成二维码
  46. shopId: 0,
  47. headimg: '',
  48. username: '',
  49. distributorId: 0,
  50. page: 1,
  51. pageSize: 20,
  52. loadingType: 0
  53. }
  54. },
  55. onLoad(options) {
  56. this.shopId = options.shopId
  57. this.distributorId = options.distributorId
  58. this.headimg = options.headimg
  59. this.username = options.username
  60. this.getStoreProductList()
  61. },
  62. onReachBottom() {
  63. if (this.loadingType == 1) {
  64. uni.stopPullDownRefresh()
  65. } else {
  66. this.page = this.page + 1
  67. this.getStoreProductList()
  68. }
  69. },
  70. methods: {
  71. getStoreProductList() {
  72. // uni.showLoading({
  73. // mask: true,
  74. // title: '加载中...'
  75. // })
  76. NET.request(API.StoreProductList, {
  77. shopId: this.shopId,
  78. page: this.page,
  79. pageSize: this.pageSize
  80. }, 'GET').then((res) => {
  81. uni.hideLoading()
  82. if (res.data.list.length == 0) {
  83. this.loadingType = 1
  84. this.page = this.page
  85. }
  86. this.Productlist = this.Productlist.concat(res.data.list)
  87. })
  88. .catch((res) => {
  89. uni.hideLoading()
  90. })
  91. },
  92. goodsDatails(item) {
  93. uni.navigateTo({
  94. url: '../goodsModule/goodsDetails?productId=' + item.productId + '&shopId=' + this.shopId + '&skuId=' + item.skuId
  95. })
  96. },
  97. fenxiang(item) {
  98. // #ifdef APP
  99. var system = 1
  100. // #endif
  101. // #ifdef H5
  102. var system = 3
  103. // #endif
  104. // #ifdef MP-WEIXIN
  105. var system = 2
  106. // #endif
  107. // #ifdef MP-ALIPAY
  108. var system = 4
  109. // #endif
  110. // uni.showLoading({
  111. // mask: true,
  112. // title: '请稍候...'
  113. // })
  114. NET.request(API.getSharePic, {
  115. productId: item.productId,
  116. shopId: item.shopId,
  117. skuId: item.skuId,
  118. terminal: system
  119. }, 'GET').then((res) => {
  120. uni.hideLoading()
  121. // 推广商品
  122. uni.navigateTo({
  123. url: `../../pages_category_page1/distributionModule/shareProduct?shareType=2&shareImg=${res.data}&productId=${item.productId}&skuId=${item.skuId}&shopId=${item.shopId}&salesId=${this.distributorId}`
  124. })
  125. })
  126. .catch((res) => {
  127. uni.hideLoading()
  128. })
  129. }
  130. }
  131. }
  132. </script>
  133. <style lang='scss' scoped>
  134. input {
  135. padding-left: 80upx;
  136. }
  137. .warp {
  138. display: flex;
  139. align-items: center;
  140. justify-content: center;
  141. height: 100%;
  142. }
  143. .qrimg-i {
  144. margin-right: 10px;
  145. }
  146. .rect {
  147. width: 89%;
  148. height: 80%;
  149. background-color: #fff;
  150. position: relative;
  151. .guanbi {
  152. width: 46rpx;
  153. height: 46rpx;
  154. position: absolute;
  155. top: -100rpx;
  156. left: 50%;
  157. margin-left: -23rpx;
  158. }
  159. .user {
  160. display: flex;
  161. padding: 20upx;
  162. }
  163. }
  164. .fenx {
  165. position: fixed;
  166. bottom: 0rpx;
  167. z-index: 10001;
  168. background-color: #F7F7F7;
  169. width: 100%;
  170. height: 98rpx;
  171. display: flex;
  172. color: #343434;
  173. view {
  174. line-height: 98rpx;
  175. }
  176. image {
  177. width: 50rpx;
  178. height: 50rpx;
  179. display: inline-block;
  180. margin-top: 25rpx;
  181. }
  182. }
  183. .fenxiang {
  184. height: 50upx;
  185. line-height: 50upx;
  186. width: 120upx;
  187. color: #FFEBC4;
  188. text-align: center;
  189. position: absolute;
  190. background-color: #333333;
  191. right: 10upx;
  192. }
  193. .container {
  194. .emptyCart-box {
  195. margin-top: 70upx;
  196. .emptyCart-img {
  197. width: 216rpx;
  198. height: 156rpx;
  199. }
  200. }
  201. .searchImg {
  202. width: 36upx;
  203. height: 36upx;
  204. position: absolute;
  205. left: 60upx;
  206. }
  207. .search-box {
  208. background-color: #F7F7F7;
  209. border-radius: 33upx;
  210. width: 530upx;
  211. height: 66upx;
  212. }
  213. .searchboxPlace {
  214. font-size: 26upx;
  215. color: #A9A9A9;
  216. padding-right: 30upx;
  217. }
  218. .searchClose-icon {
  219. width: 30upx;
  220. height: 30upx;
  221. margin-left: -50upx;
  222. }
  223. .promotion618 {
  224. width: 130upx;
  225. height: 30upx;
  226. }
  227. .goodsDetails-box {
  228. width: 690upx;
  229. .goodsDetails {
  230. position: relative;
  231. border-bottom: 1upx solid #EDEDED;
  232. padding-bottom: 30upx;
  233. .goodsName-box {
  234. width: 389upx;
  235. height: 85upx;
  236. .img618-cion {
  237. width: 70upx;
  238. height: 36upx;
  239. }
  240. }
  241. .goodsImg {
  242. width: 260upx;
  243. height: 260upx;
  244. }
  245. .discounts-box {
  246. margin-left: -10upx;
  247. margin-top: 20upx;
  248. .discounts-text {
  249. margin-left: 10upx;
  250. color: #C5AA7B;
  251. background-color: #FFE4CC;
  252. padding: 6upx 12upx;
  253. border-radius: 4upx;
  254. }
  255. }
  256. .arrowImg {
  257. width: 20upx;
  258. height: 20upx;
  259. }
  260. }
  261. }
  262. }
  263. </style>