|
@@ -12,7 +12,8 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankOverview
|
|
|
|
|
|
|
|
<view class="topcontent uni-column uni-jcsa">
|
|
<view class="topcontent uni-column uni-jcsa">
|
|
|
<view class="logo"></view>
|
|
<view class="logo"></view>
|
|
|
- <text class="top-acttime">{{fmtMcTime2(beginSecond, endSecond)}}</text>
|
|
|
|
|
|
|
+ <text v-if="configParam.subTitle.length > 0" class="top-acttime">{{configParam.subTitle}}</text>
|
|
|
|
|
+ <text v-else class="top-acttime">{{fmtMcTime2(beginSecond, endSecond)}}</text>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
@@ -130,6 +131,9 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankOverview
|
|
|
popupRuleConfig: {}, // 规则弹窗配置
|
|
popupRuleConfig: {}, // 规则弹窗配置
|
|
|
popupDataList: [],
|
|
popupDataList: [],
|
|
|
navPoint: {},
|
|
navPoint: {},
|
|
|
|
|
+ configParam: {
|
|
|
|
|
+ subTitle: ""
|
|
|
|
|
+ },
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
computed: {
|
|
computed: {
|
|
@@ -325,6 +329,15 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankOverview
|
|
|
console.log("[loadConfig] popupDataList 加载默认列表");
|
|
console.log("[loadConfig] popupDataList 加载默认列表");
|
|
|
}
|
|
}
|
|
|
// console.log("[loadConfig] popupDataList:", this.popupDataList);
|
|
// console.log("[loadConfig] popupDataList:", this.popupDataList);
|
|
|
|
|
+
|
|
|
|
|
+ // 加载页面参数
|
|
|
|
|
+ const param = config.param;
|
|
|
|
|
+ if (param != undefined) {
|
|
|
|
|
+ if (param.subTitle != undefined && param.subTitle.length > 0) {
|
|
|
|
|
+ this.configParam.subTitle = param.subTitle;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ // console.log("[loadConfig] param:", this.configParam);
|
|
|
},
|
|
},
|
|
|
// 获取倒计时
|
|
// 获取倒计时
|
|
|
getCountdown() {
|
|
getCountdown() {
|
|
@@ -703,7 +716,10 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankOverview
|
|
|
]
|
|
]
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
- ]
|
|
|
|
|
|
|
+ ],
|
|
|
|
|
+ "param": {
|
|
|
|
|
+ "subTitle": "山东大学123周年庆"
|
|
|
|
|
+ }
|
|
|
}; */
|
|
}; */
|
|
|
|
|
|
|
|
this.loadConfig(config);
|
|
this.loadConfig(config);
|