payorder.vue 19 KB

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