paymentOrder.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422
  1. <template>
  2. <view class="page">
  3. <view class="_top">
  4. <view class="select" v-if="payType == 'customer_service'">
  5. <uni-section title="本地数据" type="line">
  6. <uni-data-select
  7. v-model="value"
  8. :localdata="exchangeList"
  9. @change="change"
  10. :clear="false"
  11. ></uni-data-select>
  12. </uni-section>
  13. </view>
  14. <view class="title"> 待支付订单 </view>
  15. <view class="price">
  16. <text v-if="value == 1">¥</text>
  17. <text v-if="value == 2">$</text>
  18. <text v-if="value == 3">€</text>
  19. <text v-if="value == 4">¥</text>
  20. {{ goodsDetail.money }}
  21. </view>
  22. <view class="_weight">
  23. <text>实际重量</text>
  24. <text> {{ goodsDetail.weight }} kg</text>
  25. </view>
  26. <view class="type-num">
  27. <text>包裹类型</text>
  28. <text>{{ goodsDetail.packageType }}</text>
  29. </view>
  30. <view class="type-num">
  31. <text>包裹数量</text>
  32. <text>{{ goodsDetail.num }}</text>
  33. </view>
  34. </view>
  35. <view class="pay" @click="switchType('balance')">
  36. <view style="display: flex">
  37. <image
  38. class="balance-icon"
  39. src="../../static/mine/341.png"
  40. mode=""
  41. ></image>
  42. <view class="">
  43. <view style="font-size: 26rpx; color: #333333">余额支付</view>
  44. <view style="color: #f83224; font-size: 24rpx; margin-top: 10rpx"
  45. >当前余额:{{ balance }}</view
  46. >
  47. </view>
  48. </view>
  49. <image
  50. v-if="payType == 'balance'"
  51. class="select"
  52. src="../../static/mine/342.png"
  53. mode=""
  54. ></image>
  55. <image
  56. v-else
  57. class="select"
  58. src="../../static/mine/345.png"
  59. mode=""
  60. ></image>
  61. </view>
  62. <view class="pay" @click="switchType('wechat')">
  63. <view style="display: flex">
  64. <image
  65. class="balance-icon"
  66. src="../../static/mine/343.png"
  67. mode=""
  68. ></image>
  69. <view class="">
  70. <view style="font-size: 26rpx; color: #333333">微信支付</view>
  71. <view style="color: #797979; font-size: 24rpx; margin-top: 10rpx"
  72. >适用微信支付</view
  73. >
  74. </view>
  75. </view>
  76. <image
  77. v-if="payType == 'wechat'"
  78. class="select"
  79. src="../../static/mine/342.png"
  80. mode=""
  81. ></image>
  82. <image
  83. v-else
  84. class="select"
  85. src="../../static/mine/345.png"
  86. mode=""
  87. ></image>
  88. </view>
  89. <view class="pay" @click="switchType('customer_service')">
  90. <view style="display: flex">
  91. <image
  92. class="balance-icon"
  93. src="../../static/mine/344.png"
  94. mode=""
  95. ></image>
  96. <view class="">
  97. <view style="font-size: 26rpx; color: #333333">客服支付</view>
  98. <view style="color: #797979; font-size: 24rpx; margin-top: 10rpx"
  99. >联系微信支付</view
  100. >
  101. </view>
  102. </view>
  103. <image
  104. v-if="payType == 'customer_service'"
  105. class="select"
  106. src="../../static/mine/342.png"
  107. mode=""
  108. ></image>
  109. <image
  110. v-else
  111. class="select"
  112. src="../../static/mine/345.png"
  113. mode=""
  114. ></image>
  115. </view>
  116. <view class="footer">
  117. <view class="_view">
  118. <text class="_text-1">共一件</text>
  119. <text class="_text-2">{{ "&nbsp;" + "合计" }}</text>
  120. <view class="price" v-if="goodsDetail.money">
  121. <text style="font-size: 20rpx" v-if="value == 1">¥</text>
  122. <text style="font-size: 20rpx" v-if="value == 2">$</text>
  123. <text style="font-size: 20rpx" v-if="value == 3">€</text>
  124. <text style="font-size: 20rpx" v-if="value == 4">¥</text>
  125. <text>{{ goodsDetail.money.split(".")[0] }}</text
  126. >.
  127. <text style="font-size: 20rpx">{{
  128. goodsDetail.money.split(".")[1]
  129. }}</text>
  130. </view>
  131. </view>
  132. <button class="btn-2" @click="payment">立即支付</button>
  133. </view>
  134. </view>
  135. </template>
  136. <script>
  137. export default {
  138. data() {
  139. return {
  140. payType: "balance",
  141. goodsDetail: {},
  142. exchangeList: [], //汇率列表
  143. value: 0,
  144. balance: "",
  145. balance1: 0,
  146. exchange_rate_id: "",
  147. };
  148. },
  149. onLoad(options) {
  150. this.goodsDetail = options;
  151. this.money = options.money;
  152. if (this.goodsDetail.type == "group_package") {
  153. this.goodsDetail.type = "group_pack_order";
  154. }
  155. },
  156. methods: {
  157. switchType(str) {
  158. this.payType = str;
  159. },
  160. change(e) {
  161. this.calculate();
  162. this.calculate1(this.balance1);
  163. },
  164. //用户信息
  165. userinfo() {
  166. uni.$u.http
  167. .get("/api/member/info", {})
  168. .then((res) => {
  169. this.balance = res.balance;
  170. this.balance1 = this.balance;
  171. this.calculate1(this.balance1);
  172. })
  173. .catch(() => {});
  174. },
  175. //汇率价格
  176. async calculate() {
  177. await uni.$u.http
  178. .post("/api/exchange-rate/calculate/" + this.value, {
  179. price: this.money,
  180. })
  181. .then((res) => {
  182. this.goodsDetail.money = res.amount;
  183. })
  184. .catch(() => {});
  185. },
  186. async calculate1(balance) {
  187. await uni.$u.http
  188. .post("/api/exchange-rate/calculate/" + this.value, {
  189. price: balance,
  190. })
  191. .then((res) => {
  192. this.balance = res.amount;
  193. })
  194. .catch(() => {});
  195. },
  196. async ratelist() {
  197. await uni.$u.http
  198. .get("/api/exchange-rate", {})
  199. .then((res) => {
  200. // this.exchangeList = res.reverse();
  201. res.map((item) => {
  202. let obj = {};
  203. obj.text = item.name_cn;
  204. obj.value = item.id;
  205. this.exchangeList.push(obj);
  206. });
  207. this.exchangeList = this.exchangeList.reverse();
  208. this.value = this.exchangeList[0].value;
  209. this.userinfo();
  210. })
  211. .catch(() => {});
  212. },
  213. //支付
  214. payment() {
  215. if (this.goodsDetail.type == "") {
  216. uni.$u.http
  217. .post("/api/order/payment", {
  218. order_id: this.goodsDetail.orderid,
  219. pay_type: this.payType,
  220. customer_currency: "RMB",
  221. })
  222. .then((res) => {
  223. if (this.payType == "wechat") {
  224. uni.requestPayment({
  225. provider: "wxpay",
  226. timeStamp: String(res.timeStamp),
  227. nonceStr: res.nonceStr,
  228. package: res.package,
  229. signType: res.signType,
  230. paySign: res.paySign,
  231. success: function (res) {
  232. this.$u.toast("支付成功");
  233. console.log("success:" + JSON.stringify(res));
  234. setTimeout(() => {}, 800);
  235. },
  236. fail: function (err) {
  237. console.log("fail:" + JSON.stringify(err));
  238. },
  239. });
  240. }
  241. })
  242. .catch(() => {});
  243. } else {
  244. uni.$u.http
  245. .post("/api/pay", {
  246. order_id: this.goodsDetail.orderid,
  247. pay_type: this.payType,
  248. type: this.goodsDetail.type,
  249. exchange_rate_id: this.value,
  250. })
  251. .then((res) => {
  252. if (this.payType == "wechat") {
  253. uni.requestPayment({
  254. provider: "wxpay",
  255. timeStamp: String(res.timeStamp),
  256. nonceStr: res.nonceStr,
  257. package: res.package,
  258. signType: res.signType,
  259. paySign: res.paySign,
  260. success: function (res) {
  261. console.log("success:" + JSON.stringify(res));
  262. setTimeout(() => {
  263. uni.navigateBack({
  264. delta: 1,
  265. });
  266. }, 800);
  267. },
  268. fail: function (err) {
  269. console.log("fail:" + JSON.stringify(err));
  270. },
  271. });
  272. } else {
  273. this.$u.toast("支付成功");
  274. setTimeout(() => {
  275. uni.navigateBack({
  276. delta: 1,
  277. });
  278. }, 800);
  279. }
  280. // uni.navigateTo({
  281. // url: 'confirm'
  282. // })
  283. })
  284. .catch(() => {});
  285. }
  286. },
  287. },
  288. created() {
  289. this.ratelist();
  290. // this.userinfo();
  291. uni.setNavigationBarTitle({
  292. title: "支付订单",
  293. });
  294. },
  295. };
  296. </script>
  297. <style lang="scss" scoped>
  298. .page {
  299. padding: 20rpx 24rpx;
  300. position: relative;
  301. ._top {
  302. padding: 48rpx 24rpx 36rpx;
  303. background-color: #fff;
  304. border-radius: 16rpx;
  305. position: relative;
  306. .select {
  307. position: absolute;
  308. right: 14rpx;
  309. top: 14rpx;
  310. width: 200rpx;
  311. height: 50rpx;
  312. // background-color: #ccc;
  313. }
  314. .title {
  315. text-align: center;
  316. color: rgba(34, 34, 34, 0.7);
  317. font-size: 28rpx;
  318. }
  319. .price {
  320. font-size: 64rpx;
  321. font-weight: 500;
  322. text-align: center;
  323. margin-top: 20rpx;
  324. ._text-1 {
  325. font-size: 28rpx;
  326. }
  327. }
  328. ._weight {
  329. display: flex;
  330. justify-content: space-between;
  331. margin-top: 46rpx;
  332. font-size: 28rpx;
  333. color: rgba(34, 34, 34, 1);
  334. }
  335. .type-num {
  336. display: flex;
  337. justify-content: space-between;
  338. font-size: 28rpx;
  339. color: rgba(34, 34, 34, 0.7);
  340. margin-top: 32rpx;
  341. }
  342. }
  343. .pay {
  344. display: flex;
  345. align-items: center;
  346. background-color: #fff;
  347. margin-top: 20rpx;
  348. height: 140rpx;
  349. border-radius: 16rpx;
  350. padding: 0 24rpx;
  351. justify-content: space-between;
  352. .balance-icon {
  353. width: 40rpx;
  354. height: 40rpx;
  355. margin-right: 20rpx;
  356. }
  357. .select {
  358. width: 36rpx;
  359. height: 36rpx;
  360. }
  361. }
  362. .footer {
  363. display: flex;
  364. justify-content: flex-end;
  365. background-color: #fff;
  366. position: fixed;
  367. bottom: 0;
  368. left: 0;
  369. width: 100%;
  370. height: 146rpx;
  371. padding-top: 20rpx;
  372. ._view {
  373. display: flex;
  374. align-items: flex-end;
  375. height: 76rpx;
  376. ._text-1 {
  377. font-size: 24rpx;
  378. color: rgba(51, 51, 51, 0.8);
  379. display: inline-block;
  380. padding-bottom: 10rpx;
  381. }
  382. ._text-2 {
  383. font-size: 24rpx;
  384. display: inline-block;
  385. padding-bottom: 10rpx;
  386. }
  387. .price {
  388. color: #f83224;
  389. font-weight: 600;
  390. font-size: 48rpx;
  391. }
  392. }
  393. .btn-2 {
  394. height: 76rpx;
  395. padding: 0;
  396. margin: 0;
  397. font-size: 28rpx;
  398. color: #fff;
  399. min-width: 188rpx;
  400. background-color: #f83224;
  401. border-radius: 38rpx;
  402. margin-right: 20rpx;
  403. margin-left: 20rpx;
  404. }
  405. }
  406. }
  407. </style>