|
@@ -11,7 +11,37 @@ Page({
|
|
|
* 页面的初始数据
|
|
|
*/
|
|
|
data: {
|
|
|
- iconList: [],
|
|
|
+ iconList: [{
|
|
|
+ "text": "何以中国",
|
|
|
+ "url": "https://cxzx.smcic.net/topic/Applets/shengshizhongguo/0.png",
|
|
|
+ "type": "article_china",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "text": "日程安排",
|
|
|
+ "url": "https://cxzx.smcic.net/topic/Applets/shengshizhongguo/1.png",
|
|
|
+ "type": "schedule",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "text": "图片集锦",
|
|
|
+ "url": "https://cxzx.smcic.net/topic/Applets/shengshizhongguo/3.png",
|
|
|
+ "type": "image"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "text": "精彩视频",
|
|
|
+ "url": "https://cxzx.smcic.net/topic/Applets/shengshizhongguo/4.png",
|
|
|
+ "type": "video"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "text": "媒体聚焦",
|
|
|
+ "url": "https://cxzx.smcic.net/topic/Applets/shengshizhongguo/5.png",
|
|
|
+ "type": "article_media",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "text": "蓝直播",
|
|
|
+ "url": "https://cxzx.smcic.net/topic/Applets/shengshizhongguo/2.png",
|
|
|
+ "type": "live"
|
|
|
+ }
|
|
|
+ ],
|
|
|
headTitle: ""
|
|
|
},
|
|
|
activity: "",
|
|
@@ -55,17 +85,9 @@ Page({
|
|
|
title: this.activity
|
|
|
});
|
|
|
}
|
|
|
-
|
|
|
- const _this = this;
|
|
|
- httpOrther({
|
|
|
- url: `/Applets/shengshizhongguo/json/${(options.url || 'shengshi') + globalData.miniProgram.envVersion}.json?${Date.now()}`,
|
|
|
- call(res) {
|
|
|
- _this.setData({
|
|
|
- iconList: res.list || [],
|
|
|
- headTitle: res.headTitle || '',
|
|
|
- headImage: res.headImage || ''
|
|
|
- })
|
|
|
- }
|
|
|
+ this.setData({
|
|
|
+ headTitle: options.introduction || '',
|
|
|
+ headImage: options.theme || ''
|
|
|
})
|
|
|
},
|
|
|
|