Commit ccf4cf2c authored by 袁玲利's avatar 袁玲利

Merge branch 'develop' into uat

parents 39e54f37 216f052d
...@@ -1152,7 +1152,7 @@ export default { ...@@ -1152,7 +1152,7 @@ export default {
if (res1.code == "10000") { if (res1.code == "10000") {
bankInfo.schoolId = res1.results.schoolid; bankInfo.schoolId = res1.results.schoolid;
bankInfo.userId = res1.results.id; bankInfo.userId = res1.results.id;
bankInfo.accountType = res.results.accounttype; bankInfo.accountType = res1.results.accounttype;
this_.PersonalInfo = res1.results; this_.PersonalInfo = res1.results;
if (res1.results.usertype == 1) { if (res1.results.usertype == 1) {
$(".StudentCls").css("display", "block"); $(".StudentCls").css("display", "block");
......
...@@ -62,24 +62,24 @@ ...@@ -62,24 +62,24 @@
</view> </view>
<view class="timeSelectResults timeSelectResults_two"> <view class="timeSelectResults timeSelectResults_two">
<view class=" timeSelectResultsItem timeSelectResultsItem_three" @tap="temperatrue(3)"> <view class=" timeSelectResultsItem timeSelectResultsItem_three" @tap="temperatrue(3)">
<view class=" timeSelectResultsItemTheme"> <view class=" timeSelectResultsItemTheme">
<text>低温人数</text> <text>低温人数</text>
</view> </view>
<view class="timeSelectResultsItemNumber"> <view class="timeSelectResultsItemNumber">
<text class="specificNumber">{{numObj.lowTemperatureNum}}</text> <text class="specificNumber">{{numObj.lowTemperatureNum}}</text>
</view> </view>
</view>
<view class="timeSelectResultsItem timeSelectResultsItem_four" @tap="temperatrue(4)">
<view class="timeSelectResultsItemTheme">
<text>未检测人数</text>
</view> </view>
<view class="timeSelectResultsItemNumber"> <view class="timeSelectResultsItem timeSelectResultsItem_four" @tap="temperatrue(4)">
<text class="specificNumber">{{numObj.noTemperatureNum}}</text> <view class="timeSelectResultsItemTheme">
<text>未检测人数</text>
</view>
<view class="timeSelectResultsItemNumber">
<text class="specificNumber">{{numObj.noTemperatureNum}}</text>
</view>
</view> </view>
</view> </view>
</view> </view>
</view> </view>
</view>
</template> </template>
<script> <script>
...@@ -108,7 +108,7 @@ ...@@ -108,7 +108,7 @@
dateShow: false, dateShow: false,
selectDate: '', selectDate: '',
minDate: new Date('1970/01/01'), minDate: new Date('1970/01/01'),
maxDate: new Date(new Date().getTime() - 24 * 60 * 60 * 1000), maxDate: new Date(),
// 年级班级选择 // 年级班级选择
classShow: false, classShow: false,
className: '', className: '',
...@@ -119,7 +119,7 @@ ...@@ -119,7 +119,7 @@
} }
}, },
mounted() { mounted() {
this.selectDate = this.formatDate(new Date(new Date().getTime() - 24 * 60 * 60 * 1000)); this.selectDate = this.formatDate(new Date());
this.queryClassListByTeacher().then( this.queryClassListByTeacher().then(
() => { () => {
this.className = this.actions[0].name; this.className = this.actions[0].name;
...@@ -205,7 +205,8 @@ ...@@ -205,7 +205,8 @@
}, { }, {
classId: this.selectClass.classId, classId: this.selectClass.classId,
gradeId: this.selectClass.gradeId, gradeId: this.selectClass.gradeId,
registDate: this.selectDate, startTime: this.selectDate,
endTime: this.selectDate,
schoolId: getQueryParams('schoolId'), schoolId: getQueryParams('schoolId'),
temperatureInterval: this.timeSelect temperatureInterval: this.timeSelect
}) })
...@@ -273,7 +274,7 @@ ...@@ -273,7 +274,7 @@
.tainer { .tainer {
.themeBox { .themeBox {
height: 221rpx; height: 221rpx;
background: url(../../../static/images/temperatureRecords.png) center -152rpx no-repeat; background: url(../../../static/images/temperatureRecords.png) center -152rpx no-repeat;
background-size: cover; background-size: cover;
padding: 66rpx 32rpx 0; padding: 66rpx 32rpx 0;
box-sizing: border-box; box-sizing: border-box;
......
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