payorder.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. <template>
  2. <view class="back">
  3. <view class="topbox">
  4. <view class="" style="position: absolute; top: -30rpx; right: 0" v-if="pay_type == 'customer'">
  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">
  12. <text v-if="language == 'zh-CN'">
  13. {{ item.name_cn }}
  14. </text>
  15. <text v-if="language == 'en-US'">
  16. {{ item.name_en }}
  17. </text>
  18. <text v-if="language == 'es-ES'">
  19. {{ item.name_es }}
  20. </text>
  21. <text v-if="language == 'it-IT'">
  22. {{ item.name_ita }}
  23. </text>
  24. </view>
  25. </view>
  26. </view>
  27. <view class="u-row-center" style="
  28. display: flex;
  29. flex-direction: column;
  30. align-items: center;
  31. margin-top: 56rpx;
  32. ">
  33. <view class="paysum">{{ i18n.Actual }}</view>
  34. <view class="numbe" style="margin-top: 40rpx">
  35. <text v-if="state_id == 0 && mode==2">¥</text>
  36. <text v-if="state_id == 1 && mode==2">$</text>
  37. <text v-if="state_id == 2 && mode==2">€</text>
  38. <text v-if="state_id == 3 && mode==2">¥</text>
  39. <text v-if='mode!=2'>¥</text>
  40. <text style="font-size: 60rpx; font-weight: 600" v-if="mode==2">{{ sum }}</text>
  41. <text style="font-size: 60rpx; font-weight: 600" v-else>{{ sum1 }}</text>
  42. </view>
  43. <!-- <view class="">
  44. <text>支付剩余时间 13:50</text>
  45. </view> -->
  46. </view>
  47. <!-- 缴纳保证金 -->
  48. <view v-if="orderType == 'bond'" class="payitem" style="margin-top: 100rpx; display: flex"
  49. @click="change(0)">
  50. <image src="static/images/yuer.png" mode="" style="width: 40rpx; height: 40rpx"></image>
  51. <view class="u-flex u-row-between" style="margin-left: 20rpx; flex: 1">
  52. <view class="">
  53. <view class="">{{i18n.Marginpayment}}</view>
  54. <view class="" style="
  55. margin-top: 10rpx;
  56. color: rgba(248, 50, 36, 1);
  57. font-size: 24rpx;
  58. ">
  59. {{ i18n.Currentbalance }}:
  60. {{ bondBalance }}
  61. </view>
  62. </view>
  63. <image v-if="mode == 0" src="static/images/active.png" mode="" style="width: 36rpx; height: 36rpx">
  64. </image>
  65. <image v-else src="static/images/unactive.png" mode="" style="width: 36rpx; height: 36rpx"></image>
  66. </view>
  67. </view>
  68. <!-- 余额支付 -->
  69. <view v-else class="payitem" style="margin-top: 100rpx; display: flex" @click="change(0)">
  70. <image src="static/images/yuer.png" mode="" style="width: 40rpx; height: 40rpx"></image>
  71. <view class="u-flex u-row-between" style="margin-left: 20rpx; flex: 1">
  72. <view class="">
  73. <view class="">{{ i18n.Balancepayment }}</view>
  74. <view v-if="mode==2" class="" style="
  75. margin-top: 10rpx;
  76. color: rgba(248, 50, 36, 1);
  77. font-size: 24rpx;
  78. ">
  79. {{ i18n.Currentbalance }}:{{ balance }}
  80. </view>
  81. <view v-else class="" style="
  82. margin-top: 10rpx;
  83. color: rgba(248, 50, 36, 1);
  84. font-size: 24rpx;
  85. ">
  86. {{ i18n.Currentbalance }}:{{ balance1 }}
  87. </view>
  88. </view>
  89. <image v-if="mode == 0" src="static/images/active.png" mode="" style="width: 36rpx; height: 36rpx">
  90. </image>
  91. <image v-else src="static/images/unactive.png" mode="" style="width: 36rpx; height: 36rpx"></image>
  92. </view>
  93. </view>
  94. <!-- 微信支付 -->
  95. <view v-if="orderType != 'bond'" class="payitem" style="margin-top: 20rpx; display: flex"
  96. @click="change(1)">
  97. <image src="static/images/wx.png" mode="" style="width: 40rpx; height: 40rpx"></image>
  98. <view class="u-flex u-row-between" style="margin-left: 20rpx; flex: 1">
  99. <view class="">
  100. <view class="">{{ i18n.WechatPay }}</view>
  101. <view class="" style="
  102. margin-top: 10rpx;
  103. color: rgba(121, 121, 121, 1);
  104. font-size: 24rpx;
  105. ">
  106. {{ i18n.applicable }}
  107. </view>
  108. </view>
  109. <image v-if="mode == 1" src="static/images/active.png" mode="" style="width: 36rpx; height: 36rpx">
  110. </image>
  111. <image v-else src="static/images/unactive.png" mode="" style="width: 36rpx; height: 36rpx"></image>
  112. </view>
  113. </view>
  114. <!-- 客服支付 -->
  115. <view v-if="orderType != 'bond'" class="payitem" style="margin-top: 20rpx; display: flex"
  116. @click="change(2)">
  117. <image src="static/images/kefu2.png" mode="" style="width: 40rpx; height: 40rpx"></image>
  118. <view class="u-flex u-row-between" style="margin-left: 20rpx; flex: 1">
  119. <view class="">
  120. <view class="">{{ i18n.Customerservicepayment }}</view>
  121. <view class="" style="
  122. margin-top: 10rpx;
  123. color: rgba(121, 121, 121, 1);
  124. font-size: 24rpx;
  125. ">
  126. {{ i18n.Contactpayment }}
  127. </view>
  128. </view>
  129. <image v-if="mode == 2" src="static/images/active.png" mode="" style="width: 36rpx; height: 36rpx">
  130. </image>
  131. <image v-else src="static/images/unactive.png" mode="" style="width: 36rpx; height: 36rpx"></image>
  132. </view>
  133. </view>
  134. </view>
  135. <!-- 付款须知 -->
  136. <view class="" v-if="pay_type == 'customer'">
  137. <view class="payment" style="margin-top: 24rpx">{{
  138. i18n.Paymentinstructions
  139. }}</view>
  140. <view class="content" style="margin-top: 18rpx">1.联系客服付款需走线下支付通道,付款成</view>
  141. </view>
  142. <view class="confirm" @click="confirm">
  143. {{ i18n.Confirmpayment }}
  144. </view>
  145. </view>
  146. </template>
  147. <script>
  148. export default {
  149. data() {
  150. return {
  151. mode: 0,
  152. stateshow: false,
  153. state: "人民币",
  154. state_id: 0,
  155. array: [],
  156. sum: "",
  157. pay_type: "balance",
  158. orderid: "",
  159. balance: "",
  160. type: "",
  161. exchange_rate_id: "",
  162. balance1: 0,
  163. sum1: "",
  164. language: "zh-CN",
  165. orderType: "",
  166. bondBalance: "",
  167. };
  168. },
  169. onLoad(options) {
  170. this.sum1 = options.sum;
  171. this.sum = options.sum;
  172. this.orderid = options.orderid;
  173. this.orderType = options.orderType;
  174. if (options.type) {
  175. this.type = options.type;
  176. }
  177. },
  178. onShow() {
  179. this.ratelist();
  180. // this.userinfo()
  181. if (uni.getStorageSync("language") != "") {
  182. this.language = uni.getStorageSync("language");
  183. }
  184. },
  185. computed: {
  186. i18n() {
  187. return this.$t("index");
  188. },
  189. },
  190. methods: {
  191. //用户信息
  192. userinfo() {
  193. uni.$u.http
  194. .get("/api/member/info", {})
  195. .then((res) => {
  196. this.balance = res.balance;
  197. this.balance1 = this.balance;
  198. this.bondBalance = res.deposit;
  199. this.calculate1(this.balance1);
  200. })
  201. .catch(() => {});
  202. },
  203. //汇率列表
  204. ratelist() {
  205. uni.$u.http
  206. .get("/api/exchange-rate", {})
  207. .then((res) => {
  208. this.array = res.reverse();
  209. this.exchange_rate_id = this.array[0].id;
  210. if (this.language == "zh-CN") {
  211. this.state = this.array[0].name_cn;
  212. }
  213. if (this.language == "en-US") {
  214. this.state = this.array[0].name_en;
  215. }
  216. if (this.language == "es-ES") {
  217. this.state = this.array[0].name_es;
  218. }
  219. if (this.language == "it-IT") {
  220. this.state = this.array[0].name_ita;
  221. }
  222. this.userinfo();
  223. this.calculate();
  224. })
  225. .catch(() => {});
  226. },
  227. //汇率价格
  228. calculate() {
  229. uni.$u.http
  230. .post("/api/exchange-rate/calculate/" + this.exchange_rate_id, {
  231. price: this.sum1,
  232. })
  233. .then((res) => {
  234. this.sum = res.amount;
  235. })
  236. .catch(() => {});
  237. },
  238. calculate1(balance) {
  239. uni.$u.http
  240. .post("/api/exchange-rate/calculate/" + this.exchange_rate_id, {
  241. price: balance,
  242. })
  243. .then((res) => {
  244. this.balance = res.amount;
  245. })
  246. .catch(() => {});
  247. },
  248. change(idx) {
  249. this.mode = idx;
  250. if (idx == 0) {
  251. this.pay_type = "balance";
  252. }
  253. if (idx == 1) {
  254. this.pay_type = "wechat";
  255. }
  256. if (idx == 2) {
  257. this.pay_type = "customer";
  258. }
  259. },
  260. statechange(item, idx) {
  261. if (this.language == "zh-CN") {
  262. this.state = item.name_cn;
  263. }
  264. if (this.language == "en-US") {
  265. this.state = item.name_en;
  266. }
  267. if (this.language == "es-ES") {
  268. this.state = item.name_es;
  269. }
  270. if (this.language == "it-IT") {
  271. this.state = item.name_ita;
  272. }
  273. this.state_id = idx;
  274. this.exchange_rate_id = item.id;
  275. this.stateshow = !this.stateshow;
  276. this.calculate();
  277. this.calculate1(this.balance1);
  278. },
  279. confirm() {
  280. // console.log(new Date().getTime());
  281. if (this.orderType == "difference") {
  282. //补差额
  283. uni.$u.http
  284. .post(`/api/order/fill`, {
  285. order_id: this.orderid,
  286. pay_type: this.pay_type,
  287. })
  288. .then((res) => {
  289. if (this.pay_type == "wechat") {
  290. uni.requestPayment({
  291. provider: "wxpay",
  292. timeStamp: String(res.timeStamp),
  293. nonceStr: res.nonceStr,
  294. package: res.package,
  295. signType: res.signType,
  296. paySign: res.paySign,
  297. success: function(res) {
  298. this.$u.toast(this.i18n.Paymentsuccess);
  299. console.log("success:" + JSON.stringify(res));
  300. setTimeout(() => {
  301. uni.navigateTo({
  302. url: "confirm",
  303. });
  304. }, 800);
  305. },
  306. fail: function(err) {
  307. console.log("fail:" + JSON.stringify(err));
  308. },
  309. // success: (result) => {
  310. //
  311. // // console.log(result);
  312. // },
  313. // fail: (error) => {
  314. // console.log(error);
  315. // },
  316. });
  317. }
  318. uni.showToast({
  319. title: this.i18n.Paymentsuccess,
  320. icon: "none",
  321. });
  322. //一秒钟之后返回上一页
  323. let timer = setTimeout(() => {
  324. uni.navigateBack({
  325. delta: 1,
  326. });
  327. clearTimeout(timer);
  328. }, 1000);
  329. });
  330. return;
  331. } else if (this.orderType == "bond") {
  332. //支付保证金
  333. uni.$u.http
  334. .post(`/api/order/earnest_pay`, {
  335. order_id: this.orderid,
  336. })
  337. .then((res) => {
  338. if (this.pay_type == "wechat") {
  339. uni.requestPayment({
  340. provider: "wxpay",
  341. timeStamp: String(res.timeStamp),
  342. nonceStr: res.nonceStr,
  343. package: res.package,
  344. signType: res.signType,
  345. paySign: res.paySign,
  346. success: function(res) {
  347. this.$u.toast("支付成功");
  348. console.log("success:" + JSON.stringify(res));
  349. setTimeout(() => {
  350. uni.navigateTo({
  351. url: "confirm",
  352. });
  353. }, 800);
  354. },
  355. fail: function(err) {
  356. console.log("fail:" + JSON.stringify(err));
  357. },
  358. });
  359. }
  360. //提示支付成功
  361. uni.showToast({
  362. title: "支付成功",
  363. icon: "none",
  364. });
  365. //一秒钟之后返回上一页
  366. let timer = setTimeout(() => {
  367. uni.navigateBack({
  368. delta: 1,
  369. });
  370. clearTimeout(timer);
  371. }, 1000);
  372. });
  373. return;
  374. }
  375. if (this.type == "") {
  376. uni.$u.http
  377. .post("/api/order/payment", {
  378. order_id: this.orderid,
  379. pay_type: this.pay_type,
  380. customer_currency: "RMB",
  381. })
  382. .then((res) => {
  383. console.log(res);
  384. if (this.pay_type == "wechat") {
  385. uni.requestPayment({
  386. provider: "wxpay",
  387. timeStamp: String(res.timeStamp),
  388. nonceStr: res.nonceStr,
  389. package: res.package,
  390. signType: res.signType,
  391. paySign: res.paySign,
  392. success: function(res) {
  393. this.$u.toast(this.i18n.Paymentsuccess);
  394. console.log("success:" + JSON.stringify(res));
  395. setTimeout(() => {
  396. uni.navigateTo({
  397. url: "/pageA/confirm",
  398. });
  399. }, 800);
  400. },
  401. fail: function(err) {
  402. console.log("fail:" + JSON.stringify(err));
  403. },
  404. // success: (result) => {
  405. //
  406. // // console.log(result);
  407. // },
  408. // fail: (error) => {
  409. // console.log(error);
  410. // },
  411. });
  412. } else {
  413. this.$u.toast(this.i18n.Paymentsuccess);
  414. setTimeout(() => {
  415. uni.navigateTo({
  416. url: "/pageA/confirm",
  417. });
  418. }, 800);
  419. }
  420. uni.showToast({
  421. title: this.i18n.Paymentsuccess,
  422. icon: "none",
  423. });
  424. uni.navigateBack({
  425. delta: 1,
  426. });
  427. })
  428. .catch(() => {});
  429. } else {
  430. uni.$u.http
  431. .post("/api/pay", {
  432. order_id: this.orderid,
  433. pay_type: this.pay_type,
  434. type: this.type,
  435. exchange_rate_id: this.exchange_rate_id,
  436. })
  437. .then((res) => {
  438. if (this.pay_type == "wechat") {
  439. uni.requestPayment({
  440. provider: "wxpay",
  441. timeStamp: String(res.timeStamp),
  442. nonceStr: res.nonceStr,
  443. package: res.package,
  444. signType: res.signType,
  445. paySign: res.paySign,
  446. success: function(res) {
  447. console.log("success:" + JSON.stringify(res));
  448. setTimeout(() => {
  449. uni.switchTab({
  450. url: "/pages/express/express",
  451. });
  452. }, 800);
  453. },
  454. fail: function(err) {
  455. console.log("fail:" + JSON.stringify(err));
  456. },
  457. });
  458. } else {
  459. this.$u.toast(this.i18n.Paymentsuccess);
  460. setTimeout(() => {
  461. uni.switchTab({
  462. url: "/pages/express/express",
  463. });
  464. }, 800);
  465. }
  466. // uni.navigateTo({
  467. // url: 'confirm'
  468. // })
  469. })
  470. .catch(() => {});
  471. }
  472. },
  473. },
  474. };
  475. </script>
  476. <style lang="scss" scoped>
  477. .payment {
  478. font-family: PingFangSC, PingFang SC;
  479. font-weight: 500;
  480. font-size: 24rpx;
  481. color: #222222;
  482. line-height: 34rpx;
  483. text-align: left;
  484. font-style: normal;
  485. }
  486. .content {
  487. font-family: PingFangSC, PingFang SC;
  488. font-weight: 400;
  489. font-size: 20rpx;
  490. color: #777777;
  491. line-height: 28rpx;
  492. text-align: left;
  493. font-style: normal;
  494. }
  495. .stateac {
  496. font-family: PingFangSC, PingFang SC;
  497. font-weight: 400;
  498. font-size: 24rpx;
  499. color: #ff1515;
  500. line-height: 34rpx;
  501. text-align: left;
  502. font-style: normal;
  503. }
  504. .unstate {
  505. font-family: PingFangSC, PingFang SC;
  506. font-weight: 400;
  507. font-size: 24rpx;
  508. color: #222222;
  509. line-height: 34rpx;
  510. text-align: left;
  511. font-style: normal;
  512. }
  513. .confirm {
  514. position: fixed;
  515. bottom: 66rpx;
  516. width: 702rpx;
  517. height: 84rpx;
  518. background: #f83224;
  519. border-radius: 44rpx;
  520. font-family: PingFangSC, PingFang SC;
  521. font-weight: 500;
  522. font-size: 32rpx;
  523. color: #ffffff;
  524. line-height: 84rpx;
  525. text-align: center;
  526. font-style: normal;
  527. }
  528. .payitem {
  529. width: 702rpx;
  530. height: 140rpx;
  531. background: #ffffff;
  532. border-radius: 12rpx;
  533. padding: 34rpx 24rpx;
  534. box-sizing: border-box;
  535. }
  536. .back {
  537. padding: 20rpx 24rpx;
  538. box-sizing: border-box;
  539. .topbox {
  540. position: relative;
  541. .state {
  542. // width: 128rpx;
  543. // height: 56rpx;
  544. background: #ffffff;
  545. border-radius: 6rpx;
  546. padding: 12rpx;
  547. box-sizing: border-box;
  548. }
  549. .paysum {
  550. font-family: PingFangSC, PingFang SC;
  551. font-weight: 400;
  552. font-size: 28rpx;
  553. color: #222222;
  554. line-height: 40rpx;
  555. text-align: left;
  556. font-style: normal;
  557. }
  558. .numbe {
  559. font-family: HarmonyOS_Sans_Medium;
  560. font-size: 28rpx;
  561. color: #000000;
  562. line-height: 38rpx;
  563. text-align: left;
  564. font-style: normal;
  565. margin-top: 20rpx;
  566. }
  567. }
  568. }
  569. </style>