| | |
| | | <view class="from-item"> |
| | | <view class="label"><text class="icon">*</text> 姓名: </view> |
| | | <view class="item-content"> |
| | | <t-input placeholder="请输入姓名" borderless value="{{name}}" bindchange="bindTnputBlur" /> |
| | | <t-input placeholder="请输入姓名" borderless value="{{name}}" bindchange="bindTnputBlur" disabled="{{disabled}}" /> |
| | | </view> |
| | | </view> |
| | | <view class="from-item"> |
| | | <view class="label"> <text class="icon">*</text>学校: </view> |
| | | <view class="item-content"> |
| | | <t-input placeholder="输学校名称" borderless value="{{school}}" type="number" bindchange="onSchoolInput" /> |
| | | <t-input placeholder="输学校名称" borderless value="{{school}}" type="number" bindchange="onSchoolInput" disabled="{{disabled}}" /> |
| | | </view> |
| | | </view> |
| | | <view class="from-item"> |
| | | <view class="label"><text class="icon">*</text> 班级: </view> |
| | | <view class="item-content"> |
| | | <t-input placeholder="请输入班级" borderless value="{{class}}" bindchange="bindClassBlur" /> |
| | | <t-input placeholder="请输入班级" borderless value="{{class}}" bindchange="bindClassBlur" disabled="{{disabled}}" /> |
| | | </view> |
| | | </view> |
| | | <view class="from-item"> |
| | |
| | | </view> |
| | | <view class="content-Box"> |
| | | <view class="item-title"> |
| | | <image src="/static/images/bookService/detail/renwudan/icon.png" class="icon" /> |
| | | <image src="/static/images/bookService/detail/renwudan/icon.png" class="iconImage" /> |
| | | <view>学习任务单</view> |
| | | </view> |
| | | <view class="item-box" wx:if="{{menuList.length > 0 && !loading}}"> |
| | |
| | | </view> |
| | | <view bind:tap="getTask" data-item="{{item}}">{{ item.name }}</view> |
| | | </view> |
| | | <view class="childBox"> |
| | | <view class="childBox" wx:if="{{item.children}}"> |
| | | <view wx:for="{{item.children}}" wx:for-item="item1" wx:for-index="index" wx:key="id" class="item"> |
| | | <view bind:tap="getTask" data-item="{{item}}">{{ item1.name }}</view> |
| | | </view> |
| | |
| | | <view class="box-list"> |
| | | <view class="lable"><text class="icon">*</text>学习反思:</view> |
| | | <view class="inputBox"> |
| | | <t-textarea placeholder="请输入学习反思" value="{{item.introspection}}" disableDefaultPadding="{{true}}" autosize="{{autosize}}" data-index="{{index}}" bindchange="onIntrospectionInput" /> |
| | | <t-textarea placeholder="请输入学习反思" value="{{item.introspection}}" disableDefaultPadding="{{true}}" autosize="{{autosize}}" data-index="{{index}}" bindchange="onIntrospectionInput" disabled="{{disabled}}" /> |
| | | </view> |
| | | </view> |
| | | <view class="box-list"> |
| | | <view class="lable"><text class="icon">*</text>完成情况:</view> |
| | | <view class="inputBox"> |
| | | <t-textarea placeholder="请输入完成情况" value="{{item.completion}}" disableDefaultPadding="{{true}}" autosize="{{autosize}}" bindchange="onCompletionInput" /> |
| | | <t-textarea placeholder="请输入完成情况" value="{{item.completion}}" data-index="{{index}}" disableDefaultPadding="{{true}}" autosize="{{autosize}}" disabled="{{disabled}}" bindchange="onCompletionInput" /> |
| | | </view> |
| | | </view> |
| | | <view class="box-list"> |
| | | <view class="lable"><text class="icon">*</text>自己评:</view> |
| | | <view class="inputBox"> |
| | | <t-textarea placeholder="请输入评价" value="{{item.selfEvaluation}}" disableDefaultPadding="{{true}}" autosize="{{autosize}}" bindchange="onSelfInput" /> |
| | | <t-textarea placeholder="请输入评价" value="{{item.selfEvaluation}}" data-index="{{index}}" disableDefaultPadding="{{true}}" autosize="{{autosize}}" disabled="{{disabled}}" bindchange="onSelfInput" /> |
| | | </view> |
| | | </view> |
| | | <view class="box-list" wx:if="{{consumer == 'classmate' || !consumer}}"> |
| | | <view class="lable">同伴评:</view> |
| | | <view class="inputBox"> |
| | | <t-textarea placeholder="请输入评价" value="{{item.mateEvaluation}}" disableDefaultPadding="{{true}}" autosize="{{autosize}}" bindchange="onMateInput" wx:if="{{consumer == 'classmate'}}" /> |
| | | <t-textarea placeholder="请输入评价" value="{{item.mateEvaluation}}" disableDefaultPadding="{{true}}" autosize="{{autosize}}" bindchange="onMateInput" data-index="{{index}}" wx:if="{{consumer == 'classmate'}}" /> |
| | | <view wx:if="{{isUpdate && item.mateEvaluation.length > 0}}" class="rateList"> |
| | | <view wx:for="{{item.mateEvaluation}}" wx:for-item="mateItem" wx:key="index"> |
| | | <view wx:for="{{item.mateEvaluation}}" wx:for-item="mateItem" wx:key="index" class="li"> |
| | | <view class="userName">{{ mateItem.userName }}</view> |
| | | <view>{{ mateItem.evaluation }}</view> |
| | | </view> |
| | |
| | | <view class="box-list" wx:if="{{consumer == 'teacher' || !consumer}}"> |
| | | <view class="lable">老师评:</view> |
| | | <view class="inputBox"> |
| | | <t-textarea placeholder="请输入评价" value="{{item.teacherEvaluation}}" disableDefaultPadding="{{true}}" autosize="{{autosize}}" bindchange="onTeacherInput" wx:if="{{consumer == 'teacher'}}" /> |
| | | <t-textarea placeholder="请输入评价" value="{{item.teacherEvaluation}}" disableDefaultPadding="{{true}}" autosize="{{autosize}}" bindchange="onTeacherInput" data-index="{{index}}" wx:if="{{consumer == 'teacher'}}" /> |
| | | <view wx:if="{{isUpdate && item.teacherEvaluation.length > 0}}" class="rateList"> |
| | | <view wx:for="{{item.teacherEvaluation}}" wx:for-item="mateItem" wx:key="index"> |
| | | <view class="userName">{{ mateItem.userName }}</view> |
| | | <view wx:for="{{item.teacherEvaluation}}" wx:for-item="mateItem" wx:key="index" class="li"> |
| | | <view class="userName"><text></text>{{ mateItem.userName }}</view> |
| | | <view>{{ mateItem.evaluation }}</view> |
| | | </view> |
| | | </view> |
| | |
| | | </view> |
| | | </t-popup> |
| | | </view> |
| | | <view class="popup-box" wx:if="{{dialogVisible}}" bindtap="handleClose"></view> |
| | | <view class="info-center" style="top:{{height*0.3}}px;" wx:if="{{dialogVisible}}"> |
| | | <view class="block1"> |
| | | <t-radio-group value="{{invitee}}" borderless t-class="box" class="radioBox" bind:change="onInviteeChange"> |
| | | <t-radio block="{{false}}" label="同伴" value="mate" class="radio" /> |
| | | <t-radio block="{{false}}" label="老师" value="teacher" class="radio" /> |
| | | </t-radio-group> |
| | | </view> |
| | | <view class="buttonBox"> |
| | | <t-button class="btn" theme="primary" bind:tap="handleClose"> |
| | | <view slot="content" class="btn-content">取消</view> |
| | | </t-button> |
| | | <t-button class="btn" theme="primary" bind:tap="confirmBtn" open-type="share"> |
| | | <view slot="content" class="btn-content">确定</view> |
| | | </t-button> |
| | | </view> |
| | | </view> |
| | | </view> |