freight_setting_details.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <template>
  2. <view class="warp">
  3. <view class="topInfo">
  4. <view class="topInfo-item">
  5. <view class="flex info">
  6. <view class="logo">
  7. <image src="../../../static/img/reject.png" mode="" v-if="list.priceStatus == '已驳回'"
  8. style="height: 40rpx;"></image><!-- 驳回 -->
  9. <image src="../../../static/img/tongguo.png" mode="" v-if="list.priceStatus == '已通过'"
  10. style="height: 40rpx;"></image><!-- 通过 -->
  11. <image src="../../../static/img/daishenhe.png" mode="" v-if="list.priceStatus == '审核中'"
  12. style="height: 40rpx;"></image><!-- 待审核 -->
  13. </view>
  14. <view class="infoText">{{list.priceStatus}}</view>
  15. </view>
  16. <view class="infoData">{{list.updateDate}}</view>
  17. </view>
  18. </view>
  19. <view class="transaction">
  20. <u-form :model="list" ref="list" class="uForm">
  21. <u-form-item label="合同编号" prop="contractNo" label-width="140">
  22. <u-input v-model="list.contractNo" input-align="right" placeholder="" disabled />
  23. </u-form-item>
  24. <u-form-item label="任务编号" prop="processNo" label-width="140">
  25. <u-input v-model="list.processNo" input-align="right" placeholder="" disabled />
  26. </u-form-item>
  27. <u-form-item label="货名" prop="goodsName" label-width="140">
  28. <u-input v-model="list.goodsName" input-align="right" placeholder="" disabled />
  29. </u-form-item>
  30. <u-form-item label="发货地址" prop="sendDetailedAddress" label-width="140">
  31. <u-input v-model="list.sendDetailedAddress" input-align="right" placeholder="发货地址" disabled />
  32. </u-form-item>
  33. <u-form-item label="收货地址" prop="receiveDetailedAddress" label-width="140">
  34. <u-input v-model="list.receiveDetailedAddress" input-align="right" placeholder="收货地址" disabled />
  35. </u-form-item>
  36. <u-form-item label="运费(元/吨)" prop="tranPrice" label-width="250">
  37. <u-input v-model="list.tranPrice" input-align="right" placeholder="请输入运费单价" disabled/>
  38. </u-form-item>
  39. </u-form>
  40. </view>
  41. <u-button type="primary" class="submit" @click="fanHui()">返回</u-button>
  42. </view>
  43. </template>
  44. <script>
  45. import {
  46. mapState
  47. } from 'vuex';
  48. export default {
  49. data() {
  50. return {
  51. list: {
  52. priceStatus:"",
  53. },
  54. id: "",
  55. }
  56. },
  57. onLoad(options) {
  58. this.id = options.id
  59. this.getList()
  60. },
  61. computed: {
  62. ...mapState(['hasLogin', 'userInfo']),
  63. },
  64. methods: {
  65. getList() {
  66. this.$api.doRequest('get', '/tranProcessInfo/getTranProcess', {
  67. id: this.id
  68. }).then(res => {
  69. this.list = res.data.data
  70. })
  71. },
  72. passSubmit() {
  73. var that = this
  74. var tranProcessInfo = {}
  75. tranProcessInfo.id = this.list.id
  76. tranProcessInfo.flag = "1"
  77. tranProcessInfo.tranPriceIng = this.list.tranPriceIng
  78. tranProcessInfo.reviewer = this.userInfo.userName
  79. this.$api.doRequest('post', '/tranProcessInfo/api/setUpTranPrice', tranProcessInfo).then(res => {
  80. if (res.data.code == 200) {
  81. this.$api.msg('审核通过成功!')
  82. setTimeout(function() {
  83. uni.navigateBack()
  84. }, 1000);
  85. }
  86. })
  87. },
  88. fanHui(){
  89. uni.navigateBack()
  90. }
  91. }
  92. }
  93. </script>
  94. <style scoped lang="scss">
  95. .transaction {
  96. background-color: #FFFFFF;
  97. margin: 10rpx;
  98. padding-bottom: 10rpx;
  99. border-radius: 20rpx;
  100. }
  101. .uForm {
  102. padding: 0 40rpx;
  103. }
  104. .u-form-item {
  105. padding: 0;
  106. }
  107. .bottom-btn {
  108. width: 100%;
  109. position: fixed;
  110. bottom: 40rpx;
  111. display: flex;
  112. z-index: 2;
  113. }
  114. .topInfo {
  115. height: 210rpx;
  116. background: linear-gradient(270deg, #22C572 0%, #34DE8A 100%);
  117. padding: 30rpx;
  118. .topInfo-item {
  119. height: 150rpx;
  120. background-color: #FFFFFF;
  121. border-radius: 20rpx;
  122. padding: 40rpx;
  123. .logo {
  124. width: 40rpx;
  125. height: 40rpx;
  126. margin-top: 8rpx;
  127. }
  128. .infoText {
  129. font-size: 36rpx;
  130. font-weight: 600;
  131. margin-left: 20rpx;
  132. }
  133. .infoData {
  134. color: #878C9C;
  135. font-size: 26rpx;
  136. margin-top: 10rpx;
  137. }
  138. }
  139. }
  140. .submit {
  141. width: 98%;
  142. background: #22C572;
  143. border-radius: 40rpx;
  144. margin-top: 40rpx;
  145. }
  146. </style>