Commit 07322275 authored by sujie@126.com's avatar sujie@126.com

dd

parent 38864389
......@@ -272,6 +272,7 @@ Page({
},
rejectApproval(e){
const { item } = e.currentTarget.dataset;
const { leavesList } = this.data;
const that = this;
wx.showModal({
title: '提示',
......
......@@ -53,7 +53,7 @@
<view class="sure-student-list" wx:if="{{sureStudents.length>0}}">
<view class="item" wx:for="{{sureStudents}}" wx:key="{{index}}">
<view class="nickname-box">
<view class="left">{{item.formal_school_student.name}}</view>
<view class="left">{{item.formal_school_student.name || item.formal_school_student.nickname}}</view>
<view class="right">{{item.confirm_status == 2 ? '已确认' : '未确认'}}</view>
</view>
<view class="phone" bindtap="phoneCall" data-mobile="{{item.formal_school_student.mobile}}"><image class="" src="{{imageRoot}}2b/studentdetail/phone.png?{{imageVersion}}" mode="aspectFit|aspectFill|widthFix" />联系</view>
......@@ -66,7 +66,7 @@
<view class="sure-student-list" wx:if="{{unSureStudents.length>0}}">
<view class="item" wx:for="{{unSureStudents}}" wx:key="{{index}}">
<view class="nickname-box">
<view class="left">{{item.formal_school_student.name}}</view>
<view class="left">{{item.formal_school_student.name || item.formal_school_student.nickname}}</view>
<view class="status {{item.read_status == 2 ? 'readed' : ''}}">{{item.read_status == 2 ? '已读' : '未读'}}</view>
</view>
<view class="phone" bindtap="phoneCall" data-mobile="{{item.formal_school_student.mobile}}"><image class="" src="{{imageRoot}}2b/studentdetail/phone.png?{{imageVersion}}" mode="aspectFit|aspectFill|widthFix" />联系</view>
......
......@@ -223,7 +223,7 @@ page{
align-items: center;
justify-content: center;
}
.leave-student-list .nickname-box .right .readed{
.unsure-student .sure-student-list .nickname-box .right .readed{
color:rgba(101,184,244,1);
background:rgba(101,184,244,.15);
border-radius:6px;
......
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