赞
踩
- /*js*/
- Page({
- data: {
- query:{}
- },
- onLoad(options) {
- this.setData({
- query:options
- })
- },
- onReady() {
- wx.setNavigationBarTitle({
- title: this.data.query.title
- })
- },
- })
![](https://csdnimg.cn/release/blogv2/dist/pc/img/newCodeMoreWhite.png)
- /*js*/
- Page({
- data: {
- query:{},
- shopList:[],
- page:1,
- pageSize:10,
- total:0,
- isLoading:false
- },
-
- onLoad(options) {
- this.setData({
- query:options
- })
- this.getshopList()
- },
- getshopList(){
- this.setData({
- isLoading:true
- })
- wx.showLoading({
- title: '数据加载中',
- })
- wx.request({
- url: 'https://www.escook.cn/categories/${this.data.query.id}/shops',
- method:'GET',
- data:{
- _page:this.data.page,
![](https://csdnimg.cn/release/blogv2/dist/pc/img/newCodeMoreWhite.png)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。