Commit d331db0c authored by lvtz's avatar lvtz

fix

parent 91684268
......@@ -211,7 +211,9 @@ Page({
delete ele.poster;
}
})
sjdMediaEditorList.push({title:introduceContent[i].title, content: _content})
// 描述模块标题不要了,如果有,在提交的时候置空
// sjdMediaEditorList.push({title:introduceContent[i].title, content: _content})
sjdMediaEditorList.push({title:'', content: _content})
}
try {
params.content = JSON.stringify(sjdMediaEditorList);
......
......@@ -21,7 +21,15 @@
<view class="section introduce-setting">
<view class="section-titlebox">打卡概述</view>
<view class="introduce-box" wx:for="{{introduceContent}}" wx:key="index">
<view class="close-box" data-index="{{index}}" bindtap="delIntroduce" wx:if="{{index>0}}">
<image class="" src="{{imageRoot}}2b/themeeditorlock/closexicon.png?{{imageVersion}}" />
</view>
<view class="introduce-title" wx:if="{{item.title}}">
<input class="" value="{{item.title}}" type="text" placeholder="请输入标题" placeholder-style="" data-index="{{index}}" placeholder-class="input-placeholder" maxlength="15" bindinput="introducetitleipt">
</input>
<view class="tips">点击修改标题,最多15个字</view>
</view>
<view>
<sjd-media-editor
content="{{item.content}}"
......
......@@ -94,7 +94,7 @@ page {
.introduce-setting .introduce-box .close-box{
position: absolute;
top: -25rpx;
right: -25rpx;
right: -20rpx;
}
.introduce-setting .introduce-box .close-box image{
width: 50rpx;
......
......@@ -59,7 +59,7 @@
<view class="title-item">登录电脑后台去管理学员数据</view>
</view>
<view class="copy-text">后台网址:biz.qingxiao.online</view>
<view class="tips">输入账号密码登录 - 在班级管理里导出</view>
<view class="tips">输入账号密码登录 - 在闯关打卡里导出</view>
<view class="foot-btn" bindtap="copyEvent">复制网址</view>
</view>
</view>
......@@ -132,7 +132,7 @@
<view class="tip">学校首页</view>
</view>
<!-- 没有手机号 需要授权-->
<button class="btn btn-clock" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber" wx:if="{{studentMobile=='' || !hadAuthMobile}}">加入打卡</button>
<button class="btn btn-clock" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber" wx:if="{{studentMobile=='' && !hadAuthMobile}}">加入打卡</button>
<view class="btn btn-clock" bindtap="goClock">{{themeSelect.is_join==1 ? (themeSelect.is_clock ? '已打卡' : '去打卡') : '加入打卡'}}</view>
</view>
</view>
......
......@@ -133,7 +133,7 @@
<view class="tip">学校首页</view>
</view>
<!-- 没有手机号 需要授权 -->
<button class="btn btn-clock" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber" wx:if="{{studentMobile=='' || !hadAuthMobile}}">加入打卡</button>
<button class="btn btn-clock" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber" wx:if="{{studentMobile=='' && !hadAuthMobile}}">加入打卡</button>
<view class="btn btn-clock" bindtap="goClock" wx:else>{{themeSelect.is_join==1 ? (themeSelect.is_clock ? '已打卡' : '去打卡') : '加入打卡'}}</view>
</view>
</view>
......
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