replaceGoods.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <template>
  2. <view>
  3. <view class="main">
  4. <view class="mainLine">
  5. <view class="goodsItem" v-for="(v,i) in list" 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.goodsName}}</view>
  12. <view class="goodsItemBottom">
  13. <view class="goodssalePrice">
  14. <span>¥{{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. },
  47. methods: {
  48. getData(){
  49. uni.showLoading({ });
  50. this.$http('miniApp/packageMiniAppController/queryPackageReplaceGoods', {
  51. packageGoodsID:this.packageGoodsID,
  52. shopID:this.shopId
  53. },'GET').then(res => {
  54. uni.hideLoading();
  55. this.isload=true;
  56. this.list=res.data;
  57. })
  58. },
  59. replace(v){
  60. console.log(v)
  61. /* if(v.listImg.length>0){
  62. v.picUrl=v.listImg[0].url
  63. } */
  64. uni.setStorage({
  65. key: 'replaceData',
  66. data: v,
  67. success: function () {
  68. uni.navigateBack({
  69. delta:1
  70. })
  71. }
  72. });
  73. },
  74. goGoods(item){
  75. uni.setStorage({
  76. key: 'goodsreplaceData',
  77. data: item,
  78. success: function () {
  79. /* uni.navigateBack({
  80. delta:1
  81. }) */
  82. uni.navigateTo({
  83. url:'../goods/goodsDetail?goodsId='+item.mGoodsID+'&type=1'+'&typeIndex=2&maintain=2'
  84. })
  85. }
  86. });
  87. },
  88. login(){
  89. uni.navigateTo({
  90. url:'../login/login'
  91. })
  92. }
  93. }
  94. }
  95. </script>
  96. <style scoped>
  97. .main{
  98. padding: 24rpx;
  99. }
  100. .mainLine{
  101. }
  102. .goodsItem{
  103. display: flex;
  104. padding: 15rpx 0;
  105. border-bottom: 1px solid #EEEEEE;
  106. }
  107. .goodsItem:last-child{
  108. border: none;
  109. }
  110. .goodsItemRight{
  111. width: 520rpx;
  112. padding-left: 20rpx;
  113. display: flex;
  114. flex-direction:column;
  115. justify-content: space-between;
  116. }
  117. .goodsItemBottom{
  118. display: flex;
  119. justify-content: space-between;
  120. }
  121. .goodsItemName{
  122. font-size: 26rpx;
  123. color: #3C3C3C;
  124. }
  125. .goodssalePrice{
  126. font-size: 32rpx;font-weight: 500;color: #FF4F00;
  127. }
  128. .goodsNum{
  129. font-size: 24rpx;font-weight: 400;color: #999999;
  130. padding-left: 50rpx;
  131. }
  132. .goodsImg{
  133. width: 120rpx;height: 120rpx;
  134. }
  135. .replaceBtn{
  136. color: #FF4F00;
  137. font-size:24rpx;}
  138. </style>