edit.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <template>
  2. <view class="app">
  3. <view>
  4. <view class="label">充值金额(单位:元 ):</view>
  5. <view><input v-model.number="total_fee" type="number" /></view>
  6. </view>
  7. <button type="primary" @click="createOrder('wxpay')">发起支付(微信)</button>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. total_fee: 10, // 金额
  15. transaction_id:"", // 查询订单接口的查询条件
  16. getOrderRes:{}, // 查询订单支付成功后的返回值
  17. }
  18. },
  19. methods: {
  20. /**
  21. * 发起支付(不唤起收银台,手动指定支付方式)
  22. * 在调用此api前,你应该先创建自己的业务系统订单,并获得订单号 order_no,把order_no当参数传给此api,而示例中为了简化跟支付插件无关的代码,这里直接已时间戳生成了order_no
  23. */
  24. createOrder(provider){
  25. this.http.request({
  26. url: '/level-one-server/app/WalletManage/topupSave',
  27. //url: '/level-one-server/app/WalletManage/wxPay/createOrder',
  28. data: {
  29. amount: this.total_fee, // 支付金额,单位分 100 = 1元
  30. goodsName: '服务点充值'
  31. },
  32. success: res => {
  33. this.user.wallet = this.user.wallet + this.total_fee;
  34. console.log("this.user",this.user)
  35. uni.setStorageSync('info', this.user);
  36. uni.showToast({
  37. title: '充值成功!'
  38. });
  39. uni.navigateBack({
  40. data:1
  41. });
  42. }
  43. });
  44. },
  45. // 打开查询订单的弹窗
  46. getOrderPopup(key){
  47. if (key) {
  48. this.$refs.getOrderPopup.open();
  49. } else {
  50. this.$refs.getOrderPopup.close();
  51. }
  52. },
  53. // 查询支付状态
  54. async getOrder() {
  55. this.getOrderRes = {};
  56. let res = await this.$refs.pay.getOrder({
  57. //out_trade_no: this.out_trade_no, // 插件支付单号 两者传1个即可
  58. transaction_id: this.transaction_id, // 第三方单号 两者传1个即可
  59. await_notify: true
  60. });
  61. if (res) {
  62. this.getOrderRes = res.pay_order;
  63. let obj = {
  64. "-1": "已关闭",
  65. "1": "已支付",
  66. "0": "未支付",
  67. "2": "已部分退款",
  68. "3": "已全额退款"
  69. };
  70. uni.showToast({
  71. title: obj[res.status] || res.errMsg,
  72. icon: "none"
  73. });
  74. }
  75. },
  76. // 监听事件 - 支付订单创建成功(此时用户还未支付)
  77. onCreate(res){
  78. console.log('create: ', res);
  79. // 如果只是想生成支付二维码,不需要组件自带的弹窗,则在这里可以获取到支付二维码 qr_code_image
  80. },
  81. // 监听事件 - 支付成功
  82. onSuccess(res){
  83. console.log('success: ', res);
  84. if (res.user_order_success) {
  85. // 代表用户已付款,且你自己写的回调成功并正确执行了
  86. } else {
  87. // 代表用户已付款,但你自己写的回调执行失败(通常是因为你的回调代码有问题)
  88. }
  89. },
  90. /**
  91. * 日期格式化
  92. * @params {Date || Number} date 需要格式化的时间
  93. * timeFormat(new Date(),"yyyy-MM-dd hh:mm:ss");
  94. */
  95. timeFormat(time, fmt = 'yyyy-MM-dd hh:mm:ss', targetTimezone = 8){
  96. try {
  97. if (!time) {
  98. return "";
  99. }
  100. if (typeof time === "string" && !isNaN(time)) time = Number(time);
  101. // 其他更多是格式化有如下:
  102. // yyyy-MM-dd hh:mm:ss|yyyy年MM月dd日 hh时MM分等,可自定义组合
  103. let date;
  104. if (typeof time === "number") {
  105. if (time.toString().length == 10) time *= 1000;
  106. date = new Date(time);
  107. } else {
  108. date = time;
  109. }
  110. const dif = date.getTimezoneOffset();
  111. const timeDif = dif * 60 * 1000 + (targetTimezone * 60 * 60 * 1000);
  112. const east8time = date.getTime() + timeDif;
  113. date = new Date(east8time);
  114. let opt = {
  115. "M+": date.getMonth() + 1, //月份
  116. "d+": date.getDate(), //日
  117. "h+": date.getHours(), //小时
  118. "m+": date.getMinutes(), //分
  119. "s+": date.getSeconds(), //秒
  120. "q+": Math.floor((date.getMonth() + 3) / 3), //季度
  121. "S": date.getMilliseconds() //毫秒
  122. };
  123. if (/(y+)/.test(fmt)) {
  124. fmt = fmt.replace(RegExp.$1, (date.getFullYear() + "").substr(4 - RegExp.$1.length));
  125. }
  126. for (let k in opt) {
  127. if (new RegExp("(" + k + ")").test(fmt)) {
  128. fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (opt[k]) : (("00" + opt[k]).substr(("" + opt[k]).length)));
  129. }
  130. }
  131. return fmt;
  132. } catch (err) {
  133. // 若格式错误,则原值显示
  134. return time;
  135. }
  136. },
  137. },
  138. computed: {
  139. // 计算当前是否是ios app
  140. isIosAppCom(){
  141. let info = uni.getSystemInfoSync();
  142. return info.uniPlatform === 'app' && info.osName === 'ios' ? true : false;
  143. }
  144. },
  145. }
  146. </script>
  147. <style lang="scss" scoped>
  148. .app{
  149. padding: 30rpx;
  150. }
  151. input {
  152. border: 1px solid #f3f3f3;
  153. padding: 10rpx;
  154. width: 100%;
  155. box-sizing: border-box;
  156. height: 80rpx;
  157. }
  158. button {
  159. margin-top: 20rpx;
  160. }
  161. .label{
  162. margin: 10rpx 0;
  163. }
  164. .tips{
  165. margin-top: 20rpx;
  166. font-size: 24rpx;
  167. color: #565656;
  168. }
  169. .get-order-popup{
  170. background-color: #ffffff;
  171. padding: 30rpx;
  172. height: 60vh;
  173. border-radius: 30rpx 30rpx 0 0;
  174. overflow: hidden;
  175. }
  176. .mt20{
  177. margin-top: 20rpx;
  178. }
  179. .pd2030{
  180. padding: 20rpx 30rpx;
  181. }
  182. .table{
  183. font-size: 24rpx;
  184. }
  185. .align-left{
  186. text-align: left;
  187. width: 50%;
  188. }
  189. .align-right{
  190. text-align: right;
  191. width: 50%;
  192. }
  193. </style>