logistics.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <template>
  2. <view class="app-container">
  3. <view class="all-container" v-if="!isNoData">
  4. <view class="top-container">
  5. <view class="left">{{logisticsData[0].comName}}<text>{{logisticsData[0].logisticsNo}}</text></view>
  6. <view class="right">
  7. <text @tap="copy(logisticsData[0].logisticsNo)">复制单号</text>
  8. </view>
  9. </view>
  10. <view class="mian-container">
  11. <common-logistics :logisticsData="logisticsData"></common-logistics>
  12. </view>
  13. </view>
  14. <no-data v-if="isNoData" :showText="noDataText"></no-data>
  15. </view>
  16. </template>
  17. <script>
  18. import { setAttribute, changeAttribute } from '@/components/logistics/init-logistics.js';
  19. import CommonLogistics from '@/components/logistics/common-logistics.vue';
  20. export default {
  21. components: {
  22. CommonLogistics
  23. },
  24. data() {
  25. return {
  26. companyCode: null,
  27. logisticsNo: null,
  28. logisticsData: [],
  29. testStrList: [0,1,2,3,4,5,6],
  30. isNoData: false,
  31. noDataText: '',
  32. }
  33. },
  34. onLoad({companyCode, logisticsNo}) {
  35. this.companyCode = companyCode == 'undefined' ? 'shunfeng' : companyCode;
  36. this.logisticsNo = logisticsNo;
  37. this.getDetail();
  38. },
  39. methods: {
  40. // 获取物流详情
  41. getDetail() {
  42. this.$axios({
  43. url: '/common/express',
  44. method: 'get',
  45. params: {
  46. companyCode: this.companyCode,
  47. logisticsNo: this.logisticsNo,
  48. }
  49. }).then(res => {
  50. if(res.code == 200 && res.data.length >= 1) {
  51. let logisticsData = res.data;
  52. this.logisticsData = changeAttribute(this.testStrList, setAttribute(logisticsData));
  53. }else if(res.code == 1100) {
  54. this.isNoData = true;
  55. this.noDataText = res.message;
  56. }else if(res.data.length < 1) {
  57. this.isNoData = true;
  58. this.noDataText = '暂无物流信息';
  59. }
  60. }).catch(res => {
  61. this.isNoData = true;
  62. this.noDataText = res.message;
  63. })
  64. },
  65. // 复制
  66. copy(val) {
  67. let that = this;
  68. uni.setClipboardData({
  69. data: val,
  70. success: function () {
  71. that.$successToast('复制成功');
  72. }
  73. });
  74. },
  75. }
  76. }
  77. </script>
  78. <style lang="scss">
  79. .app-container {
  80. background: #F4F2F2;
  81. box-sizing: border-box;
  82. padding: 20rpx;
  83. }
  84. .all-container {
  85. padding: 20rpx;
  86. background: #FFFFFF;
  87. border-radius: 20rpx;
  88. }
  89. .top-container {
  90. display: flex;
  91. justify-content: space-between;
  92. align-items: flex-end;
  93. margin-bottom: 30rpx;
  94. .left {
  95. text {
  96. font-size: 24rpx;
  97. margin-left: 16rpx;
  98. }
  99. }
  100. .right {
  101. text {
  102. font-size: 24rpx;
  103. color: #FE781F;
  104. }
  105. }
  106. }
  107. </style>