Authored by 徐炜

Merge branch 'release/4.9.2'

... ... @@ -29,12 +29,11 @@ exports.index = (req, res, next) => {
exports.main = (req, res, next) => {
const isReplay = /^\/live\/replay\//.test(req.path);
const id = req.params.id;
const goDownload = req.query.no;
res.locals.liveRoom = id;
res.locals.module = 'activity';
res.locals.page = 'live-play';
res.locals.enableFoot = goDownload !== 1;
res.locals.enableFoot = Number(req.query.no) !== 1;
model.fetchInfo(id, isReplay)
.then(result => {
... ...
... ... @@ -30,6 +30,9 @@ var debounceFn = debounce(function(cardNo, formModel) {
// 返回1不支持, 孟令阶
if (result && result.data && result.data.businessSupport === '1') {
formModel.bankCode = '';
formModel.bankName = '';
$('#bank-name').text('暂不支持此银行卡');
$('#bank-desc').show();
$('#bank-icon').hide();
... ...