payorder.vue 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  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. uni.$u.http
  203. .post("/api/order/payment", {
  204. order_id: this.orderid,
  205. pay_type: this.pay_type,
  206. customer_currency: "RMB",
  207. })
  208. .then((res) => {
  209. console.log(res);
  210. if (this.pay_type == "wechat") {
  211. uni.requestPayment({
  212. provider: 'wxpay',
  213. timeStamp: String(res.timeStamp),
  214. nonceStr: res.nonceStr,
  215. package: res.package,
  216. signType: res.signType,
  217. paySign: res.paySign,
  218. success: function(res) {
  219. this.$u.toast('支付成功')
  220. console.log('success:' + JSON.stringify(res));
  221. setTimeout(() => {
  222. // uni.navigateTo({
  223. // url: "confirm",
  224. // });
  225. }, 800);
  226. },
  227. fail: function(err) {
  228. console.log('fail:' + JSON.stringify(err));
  229. }
  230. // success: (result) => {
  231. //
  232. // // console.log(result);
  233. // },
  234. // fail: (error) => {
  235. // console.log(error);
  236. // },
  237. });
  238. }
  239. })
  240. .catch(() => {});
  241. } else {
  242. uni.$u.http
  243. .post("/api/pay", {
  244. order_id: this.orderid,
  245. pay_type: this.pay_type,
  246. type: this.type,
  247. exchange_rate_id: this.exchange_rate_id,
  248. })
  249. .then((res) => {
  250. if (this.pay_type == "wechat") {
  251. uni.requestPayment({
  252. provider: 'wxpay',
  253. timeStamp: String(res.timeStamp),
  254. nonceStr: res.nonceStr,
  255. package: res.package,
  256. signType: res.signType,
  257. paySign: res.paySign,
  258. success: function(res) {
  259. console.log('success:' + JSON.stringify(res));
  260. setTimeout(() => {
  261. uni.switchTab({
  262. url: "/pages/express/express",
  263. })
  264. }, 800);
  265. },
  266. fail: function(err) {
  267. console.log('fail:' + JSON.stringify(err));
  268. }
  269. });
  270. } else {
  271. this.$u.toast('支付成功')
  272. setTimeout(() => {
  273. uni.switchTab({
  274. url: "/pages/express/express",
  275. })
  276. }, 800);
  277. }
  278. // uni.navigateTo({
  279. // url: 'confirm'
  280. // })
  281. })
  282. .catch(() => {});
  283. }
  284. },
  285. },
  286. };
  287. </script>
  288. <style lang="scss" scoped>
  289. .payment {
  290. font-family: PingFangSC, PingFang SC;
  291. font-weight: 500;
  292. font-size: 24rpx;
  293. color: #222222;
  294. line-height: 34rpx;
  295. text-align: left;
  296. font-style: normal;
  297. }
  298. .content {
  299. font-family: PingFangSC, PingFang SC;
  300. font-weight: 400;
  301. font-size: 20rpx;
  302. color: #777777;
  303. line-height: 28rpx;
  304. text-align: left;
  305. font-style: normal;
  306. }
  307. .stateac {
  308. font-family: PingFangSC, PingFang SC;
  309. font-weight: 400;
  310. font-size: 24rpx;
  311. color: #ff1515;
  312. line-height: 34rpx;
  313. text-align: left;
  314. font-style: normal;
  315. }
  316. .unstate {
  317. font-family: PingFangSC, PingFang SC;
  318. font-weight: 400;
  319. font-size: 24rpx;
  320. color: #222222;
  321. line-height: 34rpx;
  322. text-align: left;
  323. font-style: normal;
  324. }
  325. .confirm {
  326. position: fixed;
  327. bottom: 66rpx;
  328. width: 702rpx;
  329. height: 84rpx;
  330. background: #f83224;
  331. border-radius: 44rpx;
  332. font-family: PingFangSC, PingFang SC;
  333. font-weight: 500;
  334. font-size: 32rpx;
  335. color: #ffffff;
  336. line-height: 84rpx;
  337. text-align: center;
  338. font-style: normal;
  339. }
  340. .payitem {
  341. width: 702rpx;
  342. height: 140rpx;
  343. background: #ffffff;
  344. border-radius: 12rpx;
  345. padding: 34rpx 24rpx;
  346. box-sizing: border-box;
  347. }
  348. .back {
  349. padding: 20rpx 24rpx;
  350. box-sizing: border-box;
  351. .topbox {
  352. position: relative;
  353. .state {
  354. width: 128rpx;
  355. // height: 56rpx;
  356. background: #ffffff;
  357. border-radius: 6rpx;
  358. padding: 12rpx;
  359. box-sizing: border-box;
  360. }
  361. .paysum {
  362. font-family: PingFangSC, PingFang SC;
  363. font-weight: 400;
  364. font-size: 28rpx;
  365. color: #222222;
  366. line-height: 40rpx;
  367. text-align: left;
  368. font-style: normal;
  369. }
  370. .numbe {
  371. font-family: HarmonyOS_Sans_Medium;
  372. font-size: 28rpx;
  373. color: #000000;
  374. line-height: 38rpx;
  375. text-align: left;
  376. font-style: normal;
  377. margin-top: 20rpx;
  378. }
  379. }
  380. }
  381. </style>