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