payorder.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  1. <template>
  2. <view class="back">
  3. <view class="topbox">
  4. <view class="" style="position: absolute; top: -30rpx; right: 0">
  5. <view class="state u-flex u-row-between" @click="stateshow = !stateshow">
  6. <text>{{ state }}</text>
  7. <image src="static/images/pull_down.png" style="width: 24rpx; height: 24rpx" mode=""></image>
  8. </view>
  9. <view class="state" v-if="stateshow">
  10. <view @click="statechange(item, idx)" :class="state_id == idx ? 'stateac' : 'unstate'"
  11. style="margin-bottom: 20rpx; font-size: 24rpx" v-for="(item, idx) in array">{{ item.name }}
  12. </view>
  13. </view>
  14. </view>
  15. <view class="u-row-center" style="
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. margin-top: 56rpx;
  20. ">
  21. <view class="paysum">{{ i18n.Actual }}</view>
  22. <view class="numbe" style="margin-top: 40rpx">
  23. <text>¥</text>
  24. <text style="font-size: 60rpx; font-weight: 500">{{ sum }}</text>
  25. </view>
  26. <!-- <view class="">
  27. <text>支付剩余时间 13:50</text>
  28. </view> -->
  29. </view>
  30. <!-- 余额支付 -->
  31. <view class="payitem" style="margin-top: 100rpx; display: flex" @click="change(0)">
  32. <image src="static/images/yuer.png" mode="" style="width: 40rpx; height: 40rpx"></image>
  33. <view class="u-flex u-row-between" style="margin-left: 20rpx; flex: 1">
  34. <view class="">
  35. <view class="">{{ i18n.Balancepayment }}</view>
  36. <view class="" style="margin-top: 10rpx; color: rgba(248, 50, 36, 1)">
  37. {{ i18n.Currentbalance }}:{{ balance }}
  38. </view>
  39. </view>
  40. <image v-if="mode == 0" src="static/images/active.png" mode="" style="width: 36rpx; height: 36rpx">
  41. </image>
  42. <image v-else src="static/images/unactive.png" mode="" style="width: 36rpx; height: 36rpx"></image>
  43. </view>
  44. </view>
  45. <!-- 微信支付 -->
  46. <view v-if="state_id == 0" class="payitem" style="margin-top: 20rpx; display: flex" @click="change(1)">
  47. <image src="static/images/wx.png" mode="" style="width: 40rpx; height: 40rpx"></image>
  48. <view class="u-flex u-row-between" style="margin-left: 20rpx; flex: 1">
  49. <view class="">
  50. <view class="">{{ i18n.WechatPay }}</view>
  51. <view class="" style="margin-top: 10rpx; color: rgba(121, 121, 121, 1)">
  52. {{ i18n.applicable }}
  53. </view>
  54. </view>
  55. <image v-if="mode == 1" src="static/images/active.png" mode="" style="width: 36rpx; height: 36rpx">
  56. </image>
  57. <image v-else src="static/images/unactive.png" mode="" style="width: 36rpx; height: 36rpx"></image>
  58. </view>
  59. </view>
  60. <!-- 客服支付 -->
  61. <view class="payitem" style="margin-top: 20rpx; display: flex" @click="change(2)">
  62. <image src="static/images/kefu2.png" mode="" style="width: 40rpx; height: 40rpx"></image>
  63. <view class="u-flex u-row-between" style="margin-left: 20rpx; flex: 1">
  64. <view class="">
  65. <view class="">{{ i18n.Customerservicepayment }}</view>
  66. <view class="" style="margin-top: 10rpx; color: rgba(121, 121, 121, 1)">
  67. {{ i18n.Contactpayment }}
  68. </view>
  69. </view>
  70. <image v-if="mode == 2" src="static/images/active.png" mode="" style="width: 36rpx; height: 36rpx">
  71. </image>
  72. <image v-else src="static/images/unactive.png" mode="" style="width: 36rpx; height: 36rpx"></image>
  73. </view>
  74. </view>
  75. </view>
  76. <!-- 付款须知 -->
  77. <view class="">
  78. <view class="payment" style="margin-top: 24rpx">{{
  79. i18n.Paymentinstructions
  80. }}</view>
  81. <view class="content" style="margin-top: 18rpx">1.联系客服付款需走线下支付通道,付款成</view>
  82. </view>
  83. <view class="confirm" @click="confirm">
  84. {{ i18n.Confirmpayment }}
  85. </view>
  86. </view>
  87. </template>
  88. <script>
  89. export default {
  90. data() {
  91. return {
  92. mode: 0,
  93. stateshow: false,
  94. state: "人民币",
  95. state_id: 0,
  96. array: [{
  97. name: "人民币",
  98. },
  99. {
  100. name: "欧元",
  101. },
  102. {
  103. name: "美元",
  104. },
  105. ],
  106. sum: "",
  107. pay_type: "balance",
  108. orderid: "",
  109. balance: "",
  110. type: "",
  111. exchange_rate_id: "",
  112. balance1: 0,
  113. sum1: "",
  114. };
  115. },
  116. onLoad(options) {
  117. this.sum1 = options.sum;
  118. this.sum = options.sum;
  119. console.log(this.sum);
  120. this.orderid = options.orderid;
  121. if (options.type) {
  122. this.type = options.type;
  123. }
  124. },
  125. onShow() {
  126. this.ratelist();
  127. // this.userinfo()
  128. },
  129. computed: {
  130. i18n() {
  131. return this.$t("index");
  132. },
  133. },
  134. methods: {
  135. //用户信息
  136. userinfo() {
  137. uni.$u.http
  138. .get("/api/member/info", {})
  139. .then((res) => {
  140. this.balance = res.balance;
  141. this.balance1 = this.balance;
  142. this.calculate1(this.balance1);
  143. })
  144. .catch(() => {});
  145. },
  146. //汇率列表
  147. ratelist() {
  148. uni.$u.http
  149. .get("/api/exchange-rate", {})
  150. .then((res) => {
  151. this.array = res.reverse();
  152. this.exchange_rate_id = this.array[0].id;
  153. this.userinfo();
  154. this.calculate();
  155. })
  156. .catch(() => {});
  157. },
  158. //汇率价格
  159. calculate() {
  160. uni.$u.http
  161. .post("/api/exchange-rate/calculate/" + this.exchange_rate_id, {
  162. price: this.sum1,
  163. })
  164. .then((res) => {
  165. this.sum = res.amount;
  166. })
  167. .catch(() => {});
  168. },
  169. calculate1(balance) {
  170. uni.$u.http
  171. .post("/api/exchange-rate/calculate/" + this.exchange_rate_id, {
  172. price: balance,
  173. })
  174. .then((res) => {
  175. this.balance = res.amount;
  176. })
  177. .catch(() => {});
  178. },
  179. change(idx) {
  180. this.mode = idx;
  181. if (idx == 0) {
  182. this.pay_type = "balance";
  183. }
  184. if (idx == 1) {
  185. this.pay_type = "wechat";
  186. }
  187. if (idx == 2) {
  188. this.pay_type = "customer";
  189. }
  190. },
  191. statechange(item, idx) {
  192. this.state = item.name;
  193. this.state_id = idx;
  194. this.exchange_rate_id = item.id;
  195. this.stateshow = !this.stateshow;
  196. this.calculate();
  197. this.calculate1(this.balance1);
  198. },
  199. confirm() {
  200. // console.log(new Date().getTime());
  201. if (this.type == "") {
  202. console.log(this.balance);
  203. console.log(this.sum1);
  204. // if ( Number(this.balance) > Number(this.sum1)) {
  205. uni.$u.http
  206. .post("/api/order/payment", {
  207. order_id: this.orderid,
  208. pay_type: this.pay_type,
  209. customer_currency: "RMB",
  210. })
  211. .then((res) => {
  212. console.log(res);
  213. if (this.pay_type == "wechat") {
  214. uni.requestPayment({
  215. provider: 'wxpay',
  216. timeStamp: String(res.timeStamp),
  217. nonceStr: res.nonceStr,
  218. package: res.package,
  219. signType: res.signType,
  220. paySign: res.paySign,
  221. success: function(res) {
  222. this.$u.toast('支付成功')
  223. console.log('success:' + JSON.stringify(res));
  224. setTimeout(() => {
  225. // uni.navigateTo({
  226. // url: "confirm",
  227. // });
  228. }, 800);
  229. },
  230. fail: function(err) {
  231. console.log('fail:' + JSON.stringify(err));
  232. }
  233. // success: (result) => {
  234. //
  235. // // console.log(result);
  236. // },
  237. // fail: (error) => {
  238. // console.log(error);
  239. // },
  240. });
  241. }
  242. })
  243. .catch(() => {});
  244. // } else {
  245. // this.$u.toast('余额不足')
  246. // }
  247. } else {
  248. uni.$u.http
  249. .post("/api/pay", {
  250. order_id: this.orderid,
  251. pay_type: this.pay_type,
  252. type: this.type,
  253. exchange_rate_id: this.exchange_rate_id,
  254. })
  255. .then((res) => {
  256. if (this.pay_type == "wechat") {
  257. uni.requestPayment({
  258. provider: 'wxpay',
  259. timeStamp: String(res.timeStamp),
  260. nonceStr: res.nonceStr,
  261. package: res.package,
  262. signType: res.signType,
  263. paySign: res.paySign,
  264. success: function(res) {
  265. console.log('success:' + JSON.stringify(res));
  266. setTimeout(() => {
  267. uni.switchTab({
  268. url: "/pages/express/express",
  269. })
  270. }, 800);
  271. },
  272. fail: function(err) {
  273. console.log('fail:' + JSON.stringify(err));
  274. }
  275. });
  276. } else {
  277. this.$u.toast('支付成功')
  278. setTimeout(() => {
  279. uni.switchTab({
  280. url: "/pages/express/express",
  281. })
  282. }, 800);
  283. }
  284. // uni.navigateTo({
  285. // url: 'confirm'
  286. // })
  287. })
  288. .catch(() => {});
  289. }
  290. },
  291. },
  292. };
  293. </script>
  294. <style lang="scss" scoped>
  295. .payment {
  296. font-family: PingFangSC, PingFang SC;
  297. font-weight: 500;
  298. font-size: 24rpx;
  299. color: #222222;
  300. line-height: 34rpx;
  301. text-align: left;
  302. font-style: normal;
  303. }
  304. .content {
  305. font-family: PingFangSC, PingFang SC;
  306. font-weight: 400;
  307. font-size: 20rpx;
  308. color: #777777;
  309. line-height: 28rpx;
  310. text-align: left;
  311. font-style: normal;
  312. }
  313. .stateac {
  314. font-family: PingFangSC, PingFang SC;
  315. font-weight: 400;
  316. font-size: 24rpx;
  317. color: #ff1515;
  318. line-height: 34rpx;
  319. text-align: left;
  320. font-style: normal;
  321. }
  322. .unstate {
  323. font-family: PingFangSC, PingFang SC;
  324. font-weight: 400;
  325. font-size: 24rpx;
  326. color: #222222;
  327. line-height: 34rpx;
  328. text-align: left;
  329. font-style: normal;
  330. }
  331. .confirm {
  332. position: fixed;
  333. bottom: 66rpx;
  334. width: 702rpx;
  335. height: 84rpx;
  336. background: #f83224;
  337. border-radius: 44rpx;
  338. font-family: PingFangSC, PingFang SC;
  339. font-weight: 500;
  340. font-size: 32rpx;
  341. color: #ffffff;
  342. line-height: 84rpx;
  343. text-align: center;
  344. font-style: normal;
  345. }
  346. .payitem {
  347. width: 702rpx;
  348. height: 140rpx;
  349. background: #ffffff;
  350. border-radius: 12rpx;
  351. padding: 34rpx 24rpx;
  352. box-sizing: border-box;
  353. }
  354. .back {
  355. padding: 20rpx 24rpx;
  356. box-sizing: border-box;
  357. .topbox {
  358. position: relative;
  359. .state {
  360. width: 128rpx;
  361. // height: 56rpx;
  362. background: #ffffff;
  363. border-radius: 6rpx;
  364. padding: 12rpx;
  365. box-sizing: border-box;
  366. }
  367. .paysum {
  368. font-family: PingFangSC, PingFang SC;
  369. font-weight: 400;
  370. font-size: 28rpx;
  371. color: #222222;
  372. line-height: 40rpx;
  373. text-align: left;
  374. font-style: normal;
  375. }
  376. .numbe {
  377. font-family: HarmonyOS_Sans_Medium;
  378. font-size: 28rpx;
  379. color: #000000;
  380. line-height: 38rpx;
  381. text-align: left;
  382. font-style: normal;
  383. margin-top: 20rpx;
  384. }
  385. }
  386. }
  387. </style>