|
@@ -2,10 +2,6 @@ const getHeight = require("../../utils/getRheRemainingHeight");
|
|
|
const _Http = getApp().globalData.http;
|
|
|
|
|
|
Page({
|
|
|
-
|
|
|
- /**
|
|
|
- * 页面的初始数据
|
|
|
- */
|
|
|
data: {
|
|
|
scrollHeight: 0,
|
|
|
list: [],
|
|
@@ -20,20 +16,9 @@ Page({
|
|
|
},
|
|
|
unreadNum: 0
|
|
|
},
|
|
|
-
|
|
|
- /**
|
|
|
- * 生命周期函数--监听页面加载
|
|
|
- */
|
|
|
onLoad(options) {
|
|
|
- const auth = options.auth ? JSON.parse(options.auth) : getApp().globalData.queryPer.query(wx.getStorageSync('userauth'), ['营销工具'], ['通告'])[0].apps;
|
|
|
- let authList = [];
|
|
|
- auth[0].meta.auth.forEach(v => authList.push(v.optionname));
|
|
|
- this.setData({
|
|
|
- authList
|
|
|
- })
|
|
|
this.getList();
|
|
|
},
|
|
|
-
|
|
|
getList(init = false) {
|
|
|
if (init.detail != undefined) init = init.detail;
|
|
|
if (init) this.setData({
|
|
@@ -60,25 +45,11 @@ Page({
|
|
|
})
|
|
|
})
|
|
|
},
|
|
|
- /* 查看详情 */
|
|
|
- toDetails(e) {
|
|
|
- const {
|
|
|
- item
|
|
|
- } = e.currentTarget.dataset, authList = this.data.authList;
|
|
|
- wx.navigateTo({
|
|
|
- url: `./details?id=${item.sat_noticeid}&auth=${authList}`
|
|
|
- })
|
|
|
- },
|
|
|
-
|
|
|
- /**
|
|
|
- * 生命周期函数--监听页面初次渲染完成
|
|
|
- */
|
|
|
onReady() {
|
|
|
getHeight.getHeight('.top', this).then(res => {
|
|
|
this.setData({
|
|
|
scrollHeight: res
|
|
|
})
|
|
|
})
|
|
|
- },
|
|
|
-
|
|
|
+ }
|
|
|
})
|