freight_setting_approval.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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. if (!this.list.tranPriceIng) {
  74. this.$api.msg('运费单价不能为空')
  75. return
  76. }
  77. uni.showModal({
  78. content: "是否通过该设置?",
  79. showCancel: true,
  80. confirmText: '确定',
  81. success: function(res) {
  82. if (res.confirm) {
  83. var that = this
  84. var tranProcessInfo = {}
  85. tranProcessInfo.id = this.list.id
  86. tranProcessInfo.flag = "1"
  87. tranProcessInfo.tranPriceIng = this.list.tranPriceIng
  88. tranProcessInfo.reviewer = this.userInfo.userName
  89. this.$api.doRequest('post', '/tranProcessInfo/api/setUpTranPrice', tranProcessInfo)
  90. .then(res => {
  91. if (res.data.code == 200) {
  92. this.$api.msg('审核通过成功!')
  93. setTimeout(function() {
  94. uni.navigateBack()
  95. }, 1000);
  96. }
  97. })
  98. }
  99. }
  100. })
  101. }
  102. }
  103. }
  104. </script>
  105. <style scoped lang="scss">
  106. .transaction {
  107. background-color: #FFFFFF;
  108. margin: 10rpx;
  109. padding-bottom: 10rpx;
  110. border-radius: 20rpx;
  111. }
  112. .uForm {
  113. padding: 0 40rpx;
  114. }
  115. .u-form-item {
  116. padding: 0;
  117. }
  118. .bottom-btn {
  119. width: 100%;
  120. position: fixed;
  121. bottom: 40rpx;
  122. display: flex;
  123. z-index: 2;
  124. }
  125. .topInfo {
  126. height: 210rpx;
  127. background: linear-gradient(270deg, #22C572 0%, #34DE8A 100%);
  128. padding: 30rpx;
  129. .topInfo-item {
  130. height: 150rpx;
  131. background-color: #FFFFFF;
  132. border-radius: 20rpx;
  133. padding: 40rpx;
  134. .logo {
  135. width: 40rpx;
  136. height: 40rpx;
  137. margin-top: 8rpx;
  138. }
  139. .infoText {
  140. font-size: 36rpx;
  141. font-weight: 600;
  142. margin-left: 20rpx;
  143. }
  144. .infoData {
  145. color: #878C9C;
  146. font-size: 26rpx;
  147. margin-top: 10rpx;
  148. }
  149. }
  150. }
  151. .submit {
  152. width: 98%;
  153. background: #22C572;
  154. border-radius: 40rpx;
  155. margin-top: 40rpx;
  156. }
  157. </style>