Commit fed9cc11 by zhangleyuan

feat:处理文案显示

parent 10c484bd
...@@ -271,15 +271,15 @@ class AddLiveIntro extends React.Component { ...@@ -271,15 +271,15 @@ class AddLiveIntro extends React.Component {
</div> </div>
</div> </div>
<div className="allow-tourist-join"> <div className="allow-tourist-join">
<span className="label">允许游客加入</span> <span className="label">观看设置</span>
<div className="content"> <div className="content">
<div> <div>
<Switch checked={whetherVisitorsJoin==="YES"? true:false} onChange={this.whetherVisitorsJoinChange}/> <Switch checked={whetherVisitorsJoin==="YES"? true:false} onChange={this.whetherVisitorsJoinChange}/>
</div> </div>
<div> <div>
<div class="instro-text"> <div class="instro-text">
<div>开启:用户可直接进入直播间观看直播</div> <div>开启:允许未绑定手机号的用户进入直播间观看直播</div>
<div>关闭:用户需先填写手机号并短信验证,通过后才可进入直播间观看直播</div> <div>关闭:仅限绑定了手机号的用户可以进入直播间观看直播</div>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -76,7 +76,7 @@ class LiveCourseList extends React.Component { ...@@ -76,7 +76,7 @@ class LiveCourseList extends React.Component {
const _appId = appId; const _appId = appId;
const { liveCourseId } = item; const { liveCourseId } = item;
const htmlUrl = `${LIVE_SHARE}live_detail/${liveCourseId}`; const htmlUrl = `${LIVE_SHARE}live_detail/${liveCourseId}?id=${User.getStoreId()}`;
const longUrl = htmlUrl const longUrl = htmlUrl
console.log('htmlUrl',htmlUrl,longUrl); console.log('htmlUrl',htmlUrl,longUrl);
......
...@@ -193,8 +193,8 @@ class AddVideoIntro extends React.Component { ...@@ -193,8 +193,8 @@ class AddVideoIntro extends React.Component {
</Col> </Col>
<Col span={21}> <Col span={21}>
<div className="desc"> <div className="desc">
<div>开启:仅限绑定了手机号的用户可以观看视频</div> <div>开启:允许未绑定手机号的用户进入直播间观看直播</div>
<div> 关闭:未绑定手机号的用户也可观看</div> <div>关闭:仅限绑定了手机号的用户可以进入直播间观看直播</div>
</div> </div>
</Col> </Col>
</Row> </Row>
......
...@@ -237,7 +237,7 @@ class VideoCourseList extends React.Component { ...@@ -237,7 +237,7 @@ class VideoCourseList extends React.Component {
const { id, scheduleVideoUrl } = record; const { id, scheduleVideoUrl } = record;
const _appId = appId; const _appId = appId;
const htmlUrl = `${LIVE_SHARE}video_detail/${id}`; const htmlUrl = `${LIVE_SHARE}video_detail/${id}?id=${User.getStoreId()}`;
const longUrl = htmlUrl; const longUrl = htmlUrl;
const { coverUrl, courseName } = record; const { coverUrl, courseName } = record;
const shareData = { const shareData = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment