index.ts 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. // index.ts
  2. import { api_shopProduct } from "../../api/login";
  3. import { debounce } from '../../utils/util'
  4. // 获取应用实例
  5. const app = getApp<IAppOption>()
  6. // pages/orders/orders.ts
  7. Page({
  8. /**
  9. * 页面的初始数据
  10. */
  11. data: {
  12. current: 0,
  13. autoplay: false,
  14. interval: 5000,
  15. duration: 500,
  16. popupShow: false,
  17. list: [] as any,
  18. isOverSaled: false, // 是否所有商品都没有库存
  19. selected: {} as any,
  20. showService: false,
  21. },
  22. /**
  23. * 生命周期函数--监听页面加载
  24. */
  25. onLoad() {
  26. this.onInit()
  27. },
  28. /**
  29. * 获取基础信息
  30. */
  31. async onInit() {
  32. try {
  33. const { data } = await api_shopProduct({ appId: app.globalData.appId });
  34. const list = data.data || []
  35. let selected: any = {}
  36. let isOverSaled = true // 是否销售完
  37. list.forEach((item: any) => {
  38. item.originalPrice = this.formatPrice(item.originalPrice, 'ALL');
  39. item.typeName = this.formatPeriod(item.num, item.period);
  40. const prices: any = this.formatPrice(item.salePrice)
  41. item.integerPart = prices.integerPart
  42. item.decimalPart = prices.decimalPart
  43. if(item.stockNum > 0) {
  44. isOverSaled = false
  45. if( !selected.id) {
  46. selected = item
  47. }
  48. }
  49. });
  50. if(isOverSaled) {
  51. // 没有可购买商品则默认选中第一个商品
  52. selected = list[0]
  53. }
  54. this.setData({
  55. list,
  56. isOverSaled,
  57. selected
  58. })
  59. } catch(e) {
  60. console.log(e, 'e')
  61. }
  62. },
  63. // 格式化价格
  64. formatPrice(price: number, type?: string) {
  65. const amountStr = price.toFixed(2)
  66. const [integerPart, decimalPart] = amountStr.split('.');
  67. if(type === 'ALL') {
  68. return amountStr
  69. }
  70. return {
  71. integerPart,
  72. decimalPart
  73. }
  74. },
  75. // 格式化类型
  76. formatPeriod(num: number, type: string) {
  77. const template: any = {
  78. DAY: "天卡",
  79. MONTH: "月卡",
  80. YEAR: "年卡"
  81. }
  82. if(type === "YEAR" && num >= 99) {
  83. return '终生卡'
  84. }
  85. return num + template[type]
  86. },
  87. // 选择
  88. onSelectGoods(e: any) {
  89. const { dataset } = e.currentTarget
  90. const item = this.data.list.find((item: any) => item.id === dataset.id)
  91. // 判断是否有库存
  92. if(item.stockNum <= 0) {
  93. return
  94. }
  95. this.setData({
  96. selected: item || {}
  97. })
  98. },
  99. // 事件处理函数
  100. changeSwiper(e: any) {
  101. const detail = e.detail;
  102. if(detail.source === 'touch' || detail.source == 'autoplay') {
  103. this.setData({
  104. current: detail.current
  105. })
  106. }
  107. },
  108. isLogin() {
  109. // 判断是否登录
  110. if(!app.globalData.isLogin) {
  111. wx.navigateTo({
  112. url: '../login/login',
  113. })
  114. return false
  115. }
  116. return true
  117. },
  118. /** 我的订单 */
  119. onOrder() {
  120. // 判断是否登录
  121. if(!this.isLogin()) {
  122. return
  123. }
  124. wx.navigateTo({
  125. url: '../orders/orders',
  126. })
  127. },
  128. /** 客服 */
  129. onService() {
  130. this.setData({
  131. showService: true
  132. })
  133. },
  134. changePop(event: { detail: any }) {
  135. this.setData({
  136. showService: event.detail
  137. })
  138. },
  139. onBuyShop() {
  140. // 判断是否登录
  141. if(!this.isLogin()) {
  142. return
  143. }
  144. this.setData({
  145. popupShow: true
  146. })
  147. },
  148. onClose() {
  149. this.setData({
  150. popupShow: false
  151. })
  152. },
  153. onSubmit() {
  154. // 判断是否登录
  155. const that = this
  156. debounce(function () {
  157. if(!that.isLogin()) {
  158. return
  159. }
  160. let info = JSON.stringify({
  161. ...that.data.selected
  162. });
  163. console.log(that.data.selected, "that.data.selected")
  164. info = encodeURIComponent(info);
  165. wx.navigateTo({
  166. url: `../orders/order-detail?orderInfo=${info}`,
  167. })
  168. that.setData({
  169. popupShow: false
  170. })
  171. }, 500)()
  172. },
  173. /**
  174. * 生命周期函数--监听页面显示
  175. */
  176. onShow() {
  177. this.onInit()
  178. },
  179. })