index.ts 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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. serviceShow: true,
  13. scrollTop: 0,
  14. current: 0,
  15. autoplay: false,
  16. interval: 5000,
  17. duration: 500,
  18. popupShow: false,
  19. list: [] as any,
  20. isOverSaled: false, // 是否所有商品都没有库存
  21. selected: {} as any,
  22. opacity: 0,
  23. scrolIntoViewStr: '',
  24. scrolIntoView: '',
  25. scrollDiscount: false, // 是否扣减启
  26. scrollIntoViewType: false,
  27. headerHeight: 0, // 头部的高度
  28. },
  29. /**
  30. * 生命周期函数--监听页面加载
  31. */
  32. onLoad() {
  33. // this.onInit()
  34. },
  35. onReady() {
  36. const that = this
  37. wx.createSelectorQuery().select('#scroll-header').boundingClientRect(function (rect) {
  38. that.setData({
  39. headerHeight: rect.height
  40. })
  41. }).exec();
  42. },
  43. /**
  44. * 获取基础信息
  45. */
  46. async onInit() {
  47. try {
  48. const { data } = await api_shopProduct({ appId: app.globalData.appId });
  49. const list = data.data || []
  50. let selected: any = {}
  51. let isOverSaled = true // 是否销售完
  52. list.forEach((item: any) => {
  53. item.originalPrice = this.formatPrice(item.originalPrice, 'ALL');
  54. item.showSalePrice = this.formatPrice(item.salePrice, 'ALL');
  55. item.typeName = this.formatPeriod(item.num, item.period);
  56. item.discountPrice = this.formatPrice(item.originalPrice - item.salePrice, 'ALL')
  57. const prices: any = this.formatPrice(item.salePrice)
  58. item.integerPart = prices.integerPart
  59. item.decimalPart = prices.decimalPart
  60. if(item.stockNum > 0) {
  61. isOverSaled = false
  62. if( !selected.id) {
  63. selected = item
  64. }
  65. }
  66. });
  67. if(isOverSaled) {
  68. // 没有可购买商品则默认选中第一个商品
  69. selected = list[0]
  70. }
  71. this.setData({
  72. list,
  73. isOverSaled,
  74. selected
  75. })
  76. } catch(e) {
  77. console.log(e, 'e')
  78. }
  79. },
  80. // 格式化价格
  81. formatPrice(price: number, type?: string) {
  82. const amountStr = price.toFixed(2)
  83. const [integerPart, decimalPart] = amountStr.split('.');
  84. if(type === 'ALL') {
  85. return amountStr
  86. }
  87. return {
  88. integerPart,
  89. decimalPart
  90. }
  91. },
  92. // 格式化类型
  93. formatPeriod(num: number, type: string) {
  94. const template: any = {
  95. DAY: "天卡",
  96. MONTH: "月卡",
  97. YEAR: "年卡"
  98. }
  99. if(type === "YEAR" && num >= 99) {
  100. return '永久卡'
  101. }
  102. return num + template[type]
  103. },
  104. // 选择
  105. onSelectGoods(e: any) {
  106. const { dataset } = e.currentTarget
  107. const item = this.data.list.find((item: any) => item.id === dataset.id)
  108. // 判断是否有库存
  109. if(item.stockNum <= 0) {
  110. return
  111. }
  112. this.setData({
  113. selected: item || {}
  114. })
  115. },
  116. // 事件处理函数
  117. changeSwiper(e: any) {
  118. const detail = e.detail;
  119. if(detail.source === 'touch' || detail.source == 'autoplay') {
  120. this.setData({
  121. current: detail.current
  122. })
  123. }
  124. },
  125. isLogin() {
  126. // 判断是否登录
  127. if(!app.globalData.isLogin) {
  128. wx.navigateTo({
  129. url: '../login/login',
  130. })
  131. return false
  132. }
  133. return true
  134. },
  135. /** 我的订单 */
  136. onOrder() {
  137. // 判断是否登录
  138. if(!this.isLogin()) {
  139. return
  140. }
  141. wx.navigateTo({
  142. url: '../orders/orders',
  143. })
  144. },
  145. onBuyShop() {
  146. // 判断是否登录
  147. if(!this.isLogin()) {
  148. return
  149. }
  150. this.setData({
  151. popupShow: true
  152. })
  153. },
  154. onClose() {
  155. this.setData({
  156. popupShow: false
  157. })
  158. },
  159. onSubmit() {
  160. // 判断是否登录
  161. const that = this
  162. debounce(function () {
  163. if(!that.isLogin()) {
  164. return
  165. }
  166. let info = JSON.stringify({
  167. ...that.data.selected
  168. });
  169. // console.log(that.data.selected, "that.data.selected")
  170. info = encodeURIComponent(info);
  171. wx.navigateTo({
  172. url: `../orders/order-detail?orderInfo=${info}`,
  173. })
  174. that.setData({
  175. popupShow: false
  176. })
  177. }, 500)()
  178. },
  179. /**
  180. * 生命周期函数--监听页面显示
  181. */
  182. onShow() {
  183. this.onInit()
  184. this.setData({
  185. serviceShow: true
  186. })
  187. },
  188. onHide() {
  189. this.setData({
  190. serviceShow: false
  191. })
  192. },
  193. // onReady() {
  194. // const scrollView = this.selectComponent('#scrollarea');
  195. // console.log(scrollView, 'scrollView')
  196. // },
  197. // 页面滚动时颜色变化
  198. onScrollView(e: { detail: any }) {
  199. const top = e.detail.scrollTop || 0
  200. // 从100开始显示
  201. this.setData({
  202. opacity: top < 100 ? 0 : (top - 100) > 150 ? 1 : (top - 100) / 150
  203. })
  204. if(this.data.scrollIntoViewType) {
  205. this.setData({
  206. scrollTop: this.data.scrollDiscount ? top - this.data.headerHeight : top,
  207. scrollIntoViewType: false,
  208. scrollDiscount: false,
  209. })
  210. } else {
  211. this.onChangeScroll()
  212. }
  213. },
  214. onChangeScroll() {
  215. const that = this;
  216. debounce(function() {
  217. wx.createSelectorQuery().select('#type3').boundingClientRect(function (rect) {
  218. if(rect.top > 0 && rect.top <= that.data.headerHeight) {
  219. that.setData({
  220. scrolIntoViewStr: 'type3',
  221. })
  222. }
  223. }).exec();
  224. wx.createSelectorQuery().select('#type2').boundingClientRect(function (rect) {
  225. if(rect.top > 0 && rect.top <= that.data.headerHeight) {
  226. that.setData({
  227. scrolIntoViewStr: 'type2'
  228. })
  229. }
  230. if(rect.top > 0 && rect.top > that.data.headerHeight) {
  231. that.setData({
  232. scrolIntoViewStr: 'type1'
  233. })
  234. }
  235. }).exec();
  236. }, 600)()
  237. },
  238. onTapAnchor(e: { currentTarget: { dataset: any } }) {
  239. const type = e.currentTarget.dataset.type
  240. this.setData({
  241. scrolIntoView: type,
  242. scrolIntoViewStr: type,
  243. scrollDiscount: type !== 'type3' ? true : false,
  244. scrollIntoViewType: true,
  245. })
  246. }
  247. })