paymentOrder.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. <template>
  2. <view class="page">
  3. <view class="_top">
  4. <view class="select" v-if="payType == 'customer'">
  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.packageType }}</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: 0,
  138. balance: "",
  139. balance1: 0,
  140. };
  141. },
  142. onLoad(options) {
  143. this.goodsDetail = options;
  144. this.money = options.money;
  145. if (this.goodsDetail.type == "group_package") {
  146. this.goodsDetail.type = "group_pack_order";
  147. }
  148. },
  149. methods: {
  150. switchType(str) {
  151. this.payType = str;
  152. },
  153. change(e) {
  154. this.calculate();
  155. this.calculate1(this.balance1);
  156. },
  157. //用户信息
  158. userinfo() {
  159. uni.$u.http
  160. .get("/api/member/info", {})
  161. .then((res) => {
  162. this.balance = res.balance;
  163. this.balance1 = this.balance;
  164. this.calculate1(this.balance1);
  165. })
  166. .catch(() => {});
  167. },
  168. //汇率价格
  169. calculate() {
  170. uni.$u.http
  171. .post("/api/exchange-rate/calculate/" + this.value, {
  172. price: this.money,
  173. })
  174. .then((res) => {
  175. this.goodsDetail.money = res.amount;
  176. })
  177. .catch(() => {});
  178. },
  179. calculate1(balance) {
  180. uni.$u.http
  181. .post("/api/exchange-rate/calculate/" + this.value, {
  182. price: balance,
  183. })
  184. .then((res) => {
  185. this.balance = res.amount;
  186. })
  187. .catch(() => {});
  188. },
  189. async ratelist() {
  190. await uni.$u.http
  191. .get("/api/exchange-rate", {})
  192. .then((res) => {
  193. // this.exchangeList = res.reverse();
  194. console.log(res);
  195. res.map((item) => {
  196. let obj = {};
  197. obj.text = item.name_cn;
  198. obj.value = item.id;
  199. this.exchangeList.push(obj);
  200. });
  201. this.exchangeList = this.exchangeList.reverse();
  202. this.value = this.exchangeList[0].value;
  203. console.log(this.value);
  204. })
  205. .catch(() => {});
  206. },
  207. //支付
  208. payment() {
  209. if (this.goodsDetail.type == "") {
  210. uni.$u.http
  211. .post("/api/order/payment", {
  212. order_id: this.goodsDetail.orderid,
  213. pay_type: this.payType,
  214. customer_currency: "RMB",
  215. })
  216. .then((res) => {
  217. console.log(res);
  218. if (this.payType == "wechat") {
  219. uni.requestPayment({
  220. provider: "wxpay",
  221. timeStamp: String(res.timeStamp),
  222. nonceStr: res.nonceStr,
  223. package: res.package,
  224. signType: res.signType,
  225. paySign: res.paySign,
  226. success: function (res) {
  227. this.$u.toast("支付成功");
  228. console.log("success:" + JSON.stringify(res));
  229. setTimeout(() => {}, 800);
  230. },
  231. fail: function (err) {
  232. console.log("fail:" + JSON.stringify(err));
  233. },
  234. });
  235. }
  236. })
  237. .catch(() => {});
  238. } else {
  239. uni.$u.http
  240. .post("/api/pay", {
  241. order_id: this.goodsDetail.orderid,
  242. pay_type: this.payType,
  243. type: this.goodsDetail.type,
  244. // exchange_rate_id: this.exchange_rate_id,
  245. })
  246. .then((res) => {
  247. if (this.payType == "wechat") {
  248. debugger;
  249. uni.requestPayment({
  250. provider: "wxpay",
  251. timeStamp: String(res.timeStamp),
  252. nonceStr: res.nonceStr,
  253. package: res.package,
  254. signType: res.signType,
  255. paySign: res.paySign,
  256. success: function (res) {
  257. console.log("success:" + JSON.stringify(res));
  258. setTimeout(() => {
  259. uni.navigateBack({
  260. delta: 1,
  261. });
  262. }, 800);
  263. },
  264. fail: function (err) {
  265. console.log("fail:" + JSON.stringify(err));
  266. },
  267. });
  268. } else {
  269. this.$u.toast("支付成功");
  270. setTimeout(() => {
  271. uni.navigateBack({
  272. delta: 1,
  273. });
  274. }, 800);
  275. }
  276. // uni.navigateTo({
  277. // url: 'confirm'
  278. // })
  279. })
  280. .catch(() => {});
  281. }
  282. },
  283. },
  284. created() {
  285. this.ratelist();
  286. this.userinfo();
  287. uni.setNavigationBarTitle({
  288. title: "支付订单",
  289. });
  290. },
  291. };
  292. </script>
  293. <style lang="scss" scoped>
  294. .page {
  295. padding: 20rpx 24rpx;
  296. position: relative;
  297. ._top {
  298. padding: 48rpx 24rpx 36rpx;
  299. background-color: #fff;
  300. border-radius: 16rpx;
  301. position: relative;
  302. .select {
  303. position: absolute;
  304. right: 14rpx;
  305. top: 14rpx;
  306. width: 200rpx;
  307. height: 50rpx;
  308. // background-color: #ccc;
  309. }
  310. .title {
  311. text-align: center;
  312. color: rgba(34, 34, 34, 0.7);
  313. font-size: 28rpx;
  314. }
  315. .price {
  316. font-size: 64rpx;
  317. font-weight: 500;
  318. text-align: center;
  319. margin-top: 20rpx;
  320. ._text-1 {
  321. font-size: 28rpx;
  322. }
  323. }
  324. ._weight {
  325. display: flex;
  326. justify-content: space-between;
  327. margin-top: 46rpx;
  328. font-size: 28rpx;
  329. color: rgba(34, 34, 34, 1);
  330. }
  331. .type-num {
  332. display: flex;
  333. justify-content: space-between;
  334. font-size: 28rpx;
  335. color: rgba(34, 34, 34, 0.7);
  336. margin-top: 32rpx;
  337. }
  338. }
  339. .pay {
  340. display: flex;
  341. align-items: center;
  342. background-color: #fff;
  343. margin-top: 20rpx;
  344. height: 140rpx;
  345. border-radius: 16rpx;
  346. padding: 0 24rpx;
  347. justify-content: space-between;
  348. .balance-icon {
  349. width: 40rpx;
  350. height: 40rpx;
  351. margin-right: 20rpx;
  352. }
  353. .select {
  354. width: 36rpx;
  355. height: 36rpx;
  356. }
  357. }
  358. .footer {
  359. display: flex;
  360. justify-content: flex-end;
  361. background-color: #fff;
  362. position: fixed;
  363. bottom: 0;
  364. left: 0;
  365. width: 100%;
  366. height: 146rpx;
  367. padding-top: 20rpx;
  368. ._view {
  369. display: flex;
  370. align-items: flex-end;
  371. height: 76rpx;
  372. ._text-1 {
  373. font-size: 24rpx;
  374. color: rgba(51, 51, 51, 0.8);
  375. display: inline-block;
  376. padding-bottom: 10rpx;
  377. }
  378. ._text-2 {
  379. font-size: 24rpx;
  380. display: inline-block;
  381. padding-bottom: 10rpx;
  382. }
  383. .price {
  384. color: #f83224;
  385. font-weight: 600;
  386. font-size: 48rpx;
  387. }
  388. }
  389. .btn-2 {
  390. height: 76rpx;
  391. padding: 0;
  392. margin: 0;
  393. font-size: 28rpx;
  394. color: #fff;
  395. min-width: 188rpx;
  396. background-color: #f83224;
  397. border-radius: 38rpx;
  398. margin-right: 20rpx;
  399. margin-left: 20rpx;
  400. }
  401. }
  402. }
  403. </style>