replaceGoods.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <template>
  2. <view>
  3. <view class="main">
  4. <view class="mainLine">
  5. <view class="goodsItem" v-for="(v,i) in list.goodsList" v-if='v.showr' @click="goGoods(v)">
  6. <view>
  7. <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
  8. <image src="../../static/img/noimg.png" mode="" class="goodsImg" v-else></image>
  9. </view>
  10. <view class="goodsItemRight">
  11. <view class="goodsItemName">{{v.showName}}</view>
  12. <view class="goodsItemBottom">
  13. <view class="goodssalePrice">
  14. <span>¥{{v.salePrice?v.salePrice:'-'}}</span>
  15. <span class="goodsNum">x{{v.qty}}</span>
  16. </view>
  17. <view class="replaceBtn" @click.stop="replace(v)">更换</view>
  18. </view>
  19. </view>
  20. </view>
  21. <nodata v-if="list.length==0&&isload"></nodata>
  22. </view>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. import nodata from '@/components/nodata/nodata.vue'
  28. export default {
  29. components: {
  30. nodata
  31. },
  32. data() {
  33. return {
  34. title: 'Hello',
  35. packageGoodsID:'',
  36. shopId:'',
  37. list:'',
  38. isload:false,
  39. }
  40. },
  41. onLoad(opt) {
  42. /* this.packageGoodsID=opt.packageGoodsID; */
  43. this.shopId=uni.getStorageSync("shopData").shopId;
  44. this.list=uni.getStorageSync("replaceDataList")
  45. //this.getData()
  46. const resdata = new Map()
  47. this.list.goodsList= this.list.goodsList.filter((item) => !resdata.has(item.goodsID) && resdata.set(item.goodsID, 1))
  48. },
  49. methods: {
  50. getData(){
  51. uni.showLoading({
  52. title: '加载中'
  53. })
  54. this.$http('miniApp/packageMiniAppController/queryPackageReplaceGoods', {
  55. packageGoodsID:this.packageGoodsID,
  56. shopID:this.shopId
  57. },'GET').then(res => {
  58. uni.hideLoading();
  59. this.isload=true;
  60. this.list=res.data;
  61. })
  62. },
  63. replace(v){
  64. console.log(v)
  65. /* if(v.listImg.length>0){
  66. v.picUrl=v.listImg[0].url
  67. } */
  68. uni.setStorage({
  69. key: 'replaceData',
  70. data: v,
  71. success: function () {
  72. uni.navigateBack({
  73. delta:1
  74. })
  75. }
  76. });
  77. },
  78. goGoods(item){
  79. /* uni.setStorage({
  80. key: 'goodsreplaceData',
  81. data: item,
  82. success: function () {
  83. uni.navigateBack({
  84. delta:1
  85. })
  86. uni.navigateTo({
  87. url:'../module/goodsDetail?goodsId='+item.goodsID+'&type=1'+'&typeIndex=2&maintain=2'
  88. })
  89. }
  90. }); */
  91. },
  92. login(){
  93. uni.navigateTo({
  94. url:'../login/login'
  95. })
  96. }
  97. }
  98. }
  99. </script>
  100. <style scoped>
  101. .main{
  102. padding: 24rpx;
  103. }
  104. .mainLine{
  105. }
  106. .goodsItem{
  107. display: flex;
  108. padding: 30rpx 0;
  109. border-bottom: 1px solid #EEEEEE;
  110. }
  111. .goodsItem:last-child{
  112. border: none;
  113. }
  114. .goodsItemRight{
  115. width: 520rpx;
  116. padding-left: 20rpx;
  117. display: flex;
  118. flex-direction:column;
  119. justify-content: space-between;
  120. }
  121. .goodsItemBottom{
  122. display: flex;
  123. justify-content: space-between;
  124. }
  125. .goodsItemName{
  126. font-size: 26rpx;
  127. color: #3C3C3C;
  128. }
  129. .goodssalePrice{
  130. font-size: 32rpx;font-weight: 500;color: #FF4F00;
  131. }
  132. .goodsNum{
  133. font-size: 24rpx;font-weight: 400;color: #999999;
  134. padding-left: 50rpx;
  135. }
  136. .goodsImg{
  137. width: 120rpx;height: 120rpx;
  138. }
  139. .replaceBtn{
  140. color: #FF4F00;
  141. font-size:24rpx;}
  142. </style>