Browse Source

fix: 仅在正式环境显示房屋视频

根据微信小程序环境版本判断,仅在正式环境(release)下显示房屋视频,避免在开发或测试环境展示视频内容。
master
前端-胡立永 2 days ago
parent
commit
2f2c485b2b
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      pages_subpack/detail/index.vue

+ 7
- 1
pages_subpack/detail/index.vue View File

@ -489,7 +489,13 @@
houseDetail({houseId:that.id}).then(response=>{
let items = response.result
console.info('response',response.result)
if(items.homeMp4){
//
const accountInfo = wx.getAccountInfoSync();
const envVersion = accountInfo.miniProgram.envVersion;
// (release)
if(items.homeMp4 && envVersion === 'release'){
that.list.push({
url: items.homeMp4,
type: 'video'


Loading…
Cancel
Save