dakuan.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. <template>
  2. <view class="dakuan-pages">
  3. <view class="dakuan-header u-flex-col u-col-center u-row-center">
  4. <text class="text1">{{detail.time || ''}}日应支付金额</text>
  5. <view class="text2 u-flex">
  6. <text :style="{color: detail.status == 'overdue' ? '#F2413A' : '#000'}">¥{{detail.amount || '0'}}</text>
  7. <text v-if="detail.status == 'overdue'">已逾期</text>
  8. </view>
  9. </view>
  10. <view class="dakuan-body">
  11. <view class="body-top u-flex">
  12. <text class="text1">抵扣金余额:</text>
  13. <view class="text2 u-flex">
  14. <text>¥{{detail.deduction_balance || 0}}</text>
  15. </view>
  16. </view>
  17. <view class="body-input u-flex">
  18. <text class="text1">¥</text>
  19. <input class="input" type="digit" placeholder="请输入抵扣金额" v-model="allprice" @blur="changeprice">
  20. <text class="text2" @click="setall">全部抵扣</text>
  21. </view>
  22. <view class="body-item u-flex u-row-between">
  23. <text class="text1">抵扣金抵扣</text>
  24. <text class="text2 u-flex-1">-¥{{price || '0'}}</text>
  25. </view>
  26. <view class="body-item u-flex u-row-between">
  27. <text class="text1">提前还款优惠</text>
  28. <text class="text2 u-flex-1">-¥{{detail.discount_amount || '0'}}</text>
  29. </view>
  30. <view class="body-item u-flex u-row-between">
  31. <text class="text1">实付佣金</text>
  32. <text class="text2 u-flex-1" style="color: #000;">¥{{(detail.amount - price) || '0'}}</text>
  33. </view>
  34. <view class="body-beizhu u-flex u-row-between">
  35. <text>转账备注</text>
  36. <input type="text" placeholder="请填写转账成功后的交易流水号" v-model="beizhu">
  37. </view>
  38. </view>
  39. <view class="dakuan-down">
  40. <view class="dakuan-btn u-flex u-row-center">
  41. <text @click="tijiao">提交</text>
  42. </view>
  43. <view class="safe-area-inset-bottom"></view>
  44. </view>
  45. </view>
  46. </template>
  47. <script>
  48. export default {
  49. data() {
  50. return {
  51. id: '',
  52. detail: {},
  53. price: '',
  54. beizhu: '',
  55. money: '',
  56. allprice: ''
  57. }
  58. },
  59. onLoad(option) {
  60. this.id = option.id
  61. this.getdata()
  62. this.getuser()
  63. },
  64. methods: {
  65. setall() {
  66. if (Number(this.detail.deduction_balance) > 0) {
  67. if (Number(this.detail.deduction_balance) < Number(this.detail.amount)) {
  68. this.price = Number(this.detail.deduction_balance)
  69. this.allprice = Number(this.detail.deduction_balance)
  70. } else {
  71. this.price = Number(this.detail.amount)
  72. this.allprice = Number(this.detail.amount)
  73. }
  74. }
  75. },
  76. tijiao() {
  77. uni.showLoading({
  78. mask: true,
  79. title: "请稍后"
  80. })
  81. this.$u.post('/api/hr.order/pay', {
  82. period_id: this.id,
  83. deduction: this.price,
  84. transaction_no: this.beizhu
  85. }).then(res => {
  86. this.$u.toast(res.msg)
  87. if (res.code == 1) {
  88. setTimeout(() => {
  89. uni.navigateBack()
  90. }, 800)
  91. }
  92. })
  93. },
  94. getuser() {
  95. this.$u.post('/api/hr.user/index').then(res => {
  96. this.money = res.data.money
  97. })
  98. },
  99. changeprice(e) {
  100. if (e.detail.value > 0) {
  101. var price = Number(Number(e.detail.value).toFixed(2))
  102. if (price > Number(this.detail.amount)) {
  103. price = Number(this.detail.amount)
  104. }
  105. if (price > this.detail.deduction_balance) {
  106. this.$u.toast("抵扣金不足")
  107. price = this.detail.deduction_balance > 0 ? this.detail.deduction_balance : ''
  108. }
  109. this.price = price
  110. this.allprice = price
  111. } else {
  112. this.price = ''
  113. this.allprice = ''
  114. }
  115. },
  116. getdata() {
  117. this.$u.post('/api/hr.order/pay_pre', {
  118. period_id: this.id
  119. }).then(res => {
  120. if (res.code == 1) {
  121. // status.状态:unpaid=未支付,paying=支付中,paid=已支付,refunding=退款中,refunded=已退款,overdue.已逾期, discount_amount.折扣金额
  122. this.detail = res.data
  123. } else {
  124. this.$u.toast(res.msg)
  125. setTimeout(() => {
  126. uni.navigateBack()
  127. }, 800)
  128. }
  129. })
  130. }
  131. }
  132. }
  133. </script>
  134. <style lang="scss">
  135. .dakuan-pages {
  136. .dakuan-down {
  137. position: fixed;
  138. bottom: 0;
  139. left: 0;
  140. width: 750rpx;
  141. background: #FDFDFD;
  142. box-shadow: 0rpx 0rpx 0rpx 0rpx rgba(0, 0, 0, 0.2);
  143. z-index: 99;
  144. .dakuan-btn {
  145. padding: 12rpx 0;
  146. text {
  147. width: 686rpx;
  148. line-height: 88rpx;
  149. background: #0C66C2;
  150. border-radius: 12rpx;
  151. text-align: center;
  152. font-size: 32rpx;
  153. font-family: PingFangSC-Medium, PingFang SC;
  154. font-weight: 500;
  155. color: #FFFFFF;
  156. }
  157. }
  158. }
  159. .dakuan-body {
  160. width: 686rpx;
  161. background: #FFFFFF;
  162. border-radius: 20rpx;
  163. margin: 0 auto;
  164. padding: 0 20rpx;
  165. .body-beizhu {
  166. height: 96rpx;
  167. border-top: 2rpx solid #F4F4F4;
  168. margin-top: 14rpx;
  169. text {
  170. font-size: 26rpx;
  171. font-family: PingFangSC-Regular, PingFang SC;
  172. font-weight: 400;
  173. color: #1A1C24;
  174. }
  175. input {
  176. font-size: 26rpx;
  177. flex: 1;
  178. text-align: right;
  179. }
  180. }
  181. .body-item {
  182. padding: 14rpx 0;
  183. .text1 {
  184. font-size: 26rpx;
  185. font-family: PingFangSC-Regular, PingFang SC;
  186. font-weight: 400;
  187. color: #1A1C24;
  188. }
  189. .text2 {
  190. font-size: 26rpx;
  191. font-family: JDZhengHT-Regular, JDZhengHT;
  192. font-weight: 400;
  193. color: #F2413A;
  194. text-align: right;
  195. }
  196. }
  197. .body-input {
  198. height: 110rpx;
  199. border-bottom: 2rpx solid #F4F4F4;
  200. margin-bottom: 14rpx;
  201. .text1 {
  202. font-size: 52rpx;
  203. font-family: JDZhengHT-Regular, JDZhengHT;
  204. font-weight: 400;
  205. color: #222222;
  206. }
  207. .input {
  208. flex: 1;
  209. margin: 0 12rpx;
  210. font-size: 32rpx;
  211. height: 110rpx;
  212. }
  213. .text2 {
  214. font-size: 24rpx;
  215. font-family: PingFangSC-Regular, PingFang SC;
  216. font-weight: 400;
  217. color: #0C66C2;
  218. }
  219. }
  220. .body-top {
  221. padding: 30rpx 0;
  222. .text1 {
  223. font-size: 24rpx;
  224. font-family: PingFangSC-Regular, PingFang SC;
  225. font-weight: 400;
  226. color: #777777;
  227. }
  228. .text2 {
  229. font-size: 24rpx;
  230. font-family: JDZhengHT-Light, JDZhengHT;
  231. font-weight: 300;
  232. color: #222222;
  233. }
  234. }
  235. }
  236. .dakuan-header {
  237. height: 218rpx;
  238. .text1 {
  239. font-size: 28rpx;
  240. font-family: SFPro-Regular, SFPro;
  241. font-weight: 400;
  242. color: #777777;
  243. margin-bottom: 20rpx;
  244. }
  245. .text2 {
  246. font-size: 52rpx;
  247. font-family: JDZhengHT-Regular, JDZhengHT;
  248. font-weight: 400;
  249. color: #141414;
  250. text:nth-child(2) {
  251. width: 68rpx;
  252. line-height: 32rpx;
  253. background: #F3E2E0;
  254. border-radius: 6rpx;
  255. text-align: center;
  256. font-size: 20rpx;
  257. font-family: PingFangSC-Regular, PingFang SC;
  258. font-weight: 400;
  259. color: #F2413A;
  260. margin-left: 12rpx;
  261. }
  262. }
  263. }
  264. }
  265. page {
  266. background-color: #F4F4F4;
  267. }
  268. </style>