freight_setting_approval.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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.tranPriceIng" input-align="right" placeholder="请输入运费单价" />
  38. </u-form-item>
  39. </u-form>
  40. </view>
  41. <u-button type="primary" class="submit" @click="passSubmit()" v-if="list.priceStatus == '审核中'">通过</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 = "2"
  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. }
  89. }
  90. </script>
  91. <style scoped lang="scss">
  92. .transaction {
  93. background-color: #FFFFFF;
  94. margin: 10rpx;
  95. padding-bottom: 10rpx;
  96. border-radius: 20rpx;
  97. }
  98. .uForm {
  99. padding: 0 40rpx;
  100. }
  101. .u-form-item {
  102. padding: 0;
  103. }
  104. .bottom-btn {
  105. width: 100%;
  106. position: fixed;
  107. bottom: 40rpx;
  108. display: flex;
  109. z-index: 2;
  110. }
  111. .topInfo {
  112. height: 210rpx;
  113. background: linear-gradient(270deg, #22C572 0%, #34DE8A 100%);
  114. padding: 30rpx;
  115. .topInfo-item {
  116. height: 150rpx;
  117. background-color: #FFFFFF;
  118. border-radius: 20rpx;
  119. padding: 40rpx;
  120. .logo {
  121. width: 40rpx;
  122. height: 40rpx;
  123. margin-top: 8rpx;
  124. }
  125. .infoText {
  126. font-size: 36rpx;
  127. font-weight: 600;
  128. margin-left: 20rpx;
  129. }
  130. .infoData {
  131. color: #878C9C;
  132. font-size: 26rpx;
  133. margin-top: 10rpx;
  134. }
  135. }
  136. }
  137. .submit {
  138. width: 98%;
  139. background: #22C572;
  140. border-radius: 40rpx;
  141. margin-top: 40rpx;
  142. }
  143. </style>