ordReturn.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <view class="content">
  3. <navigator :url="'/pagesA/mall/ordRetInfo?type=2&id='+id" class="box dffs">
  4. <image src="/static/img/pro/tui1.png" mode=""></image>
  5. <view class="rig dffd">
  6. <text class="black">我要退货退款</text>
  7. <text class="textgrey">已收到货,需要退还已收到的货物</text>
  8. </view>
  9. </navigator>
  10. <navigator :url="'/pagesA/mall/ordRetInfo?type=1&id='+id" class="box dffs">
  11. <image src="/static/img/pro/tui2.png" mode=""></image>
  12. <view class="rig dffd">
  13. <text class="black">我要退款(无需退货)</text>
  14. <text class="textgrey">未收到货,协商之后申请</text>
  15. </view>
  16. </navigator>
  17. </view>
  18. </template>
  19. <script>
  20. import goods from '../components/collageMall.vue';
  21. import hotgods from './componets/hotgodlist.vue';
  22. export default {
  23. components: {
  24. goods,
  25. hotgods
  26. },
  27. data() {
  28. return {
  29. id:'',
  30. };
  31. },
  32. onLoad(opt) {
  33. this.id = opt.id || 1;
  34. },
  35. methods: {
  36. }
  37. };
  38. </script>
  39. <style lang="scss" scoped>
  40. .content {
  41. padding: 20rpx 30rpx;
  42. }
  43. .box {
  44. padding: 60rpx 40rpx;
  45. background-color: #fff;
  46. margin-bottom: 30rpx;
  47. border-radius: 8rpx;
  48. image {
  49. width: 48rpx;
  50. height: 44rpx;
  51. margin-right: 41rpx;
  52. }
  53. .rig {
  54. .black {
  55. color: #333;
  56. font-size: 34rpx;
  57. margin-bottom: 14rpx;
  58. }
  59. .textgrey {
  60. font-size: 26rpx;
  61. }
  62. }
  63. }
  64. </style>