index.ts 6.1 KB

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