|
@@ -7,6 +7,7 @@ Page({
|
|
|
* 页面的初始数据
|
|
|
*/
|
|
|
data: {
|
|
|
+ optionList: [],
|
|
|
scrollHeight: 0, //滚动区域高度
|
|
|
searchContent: "", //搜索内容
|
|
|
mainActiveIndex: 0, //分类选择器打开分类的下标
|
|
@@ -29,6 +30,12 @@ Page({
|
|
|
* 生命周期函数--监听页面加载
|
|
|
*/
|
|
|
onLoad(options) {
|
|
|
+ if (options.auth) {
|
|
|
+ let auth = JSON.parse(options.auth)[0].meta.auth;
|
|
|
+ this.setData({
|
|
|
+ optionList: auth.map(v => v.optionname)
|
|
|
+ })
|
|
|
+ }
|
|
|
this.selectMenu(0);
|
|
|
this.selectList();
|
|
|
},
|
|
@@ -55,7 +62,7 @@ Page({
|
|
|
item
|
|
|
} = e.currentTarget.dataset;
|
|
|
wx.navigateTo({
|
|
|
- url: './detail?id=' + item.sat_coursewareid,
|
|
|
+ url: `./detail?id=${item.sat_coursewareid}&viewData=${this.data.optionList.includes("查看数据")}`,
|
|
|
})
|
|
|
},
|
|
|
/* 获取列表 */
|