paymentOrder.vue 10 KB

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