payorder.vue 9.5 KB

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