payorder.vue 16 KB

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