| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | <view class="msgBox">    <!-- 标题和按钮 -->    <view class="msgBox-title-and-but">        <view class="msgBox-title">直播账号信息</view>        <slot wx:if="{{accountMsg.fliveshowurl}}"></slot>    </view>    <!-- 直播信息 -->    <view wx:if="{{accountStatus==1}}" class="account-information">        <view class="account-information-row">            <view>                <view class="title" style="margin-right: 8rpx;">密码</view>{{accountMsg.channelpasswd}}            </view>            <view>                <view class="title">直播间地址</view>                <view class="chained-address u-line-1">{{accountMsg.fliveshowurl}}</view>                <view data-url="{{accountMsg.fliveshowurl}}" class="chained-address-copy" bindtap="copyTheAddress">复制</view>            </view>        </view>        <view class="account-information-row">            <view>                <view class="title">助教地址</view>                <view class="chained-address u-line-1">{{accountMsg.fassistanturl}}</view>                <view data-url="{{accountMsg.fassistanturl}}" class="chained-address-copy" bindtap="copyTheAddress">复制</view>            </view>        </view>        <view class="account-information-row">            <view>                <view class="title">客户端开播地址</view>                <view class="chained-address u-line-1">{{accountMsg.fliveurl_client}}</view>                <view data-url="{{accountMsg.fliveurl_client}}" class="chained-address-copy" bindtap="copyTheAddress">复制</view>            </view>        </view>        <view class="account-information-row">            <view>                <view class="title">web端开播地址</view>                <view class="chained-address u-line-1">{{accountMsg.fliveurl_web}}</view>                <view data-url="{{accountMsg.fliveurl_web}}" class="chained-address-copy" bindtap="copyTheAddress">复制</view>            </view>        </view>    </view>    <view wx:if="{{accountStatus!=1 && isSY}}" class="go-to-apply-for" catchtap="applyForLive">        {{accountStatus==3?'暂无账号 点击申请 ':'直播申请中'}}<image wx:if="{{accountStatus==3}}" style="width: 20rpx; height: 22rpx; margin-left: 8rpx;" src="/static/icon-07.png"></image>    </view>    <view wx:if="{{accountStatus!=1 && isSY==false}}" class="go-to-apply-for">        暂无展会直播账号    </view></view>
 |