driver-manage/pages/teacher/StudentManagement.vue
zhuchunyun d655b59eaa 分页
2024-08-28 20:28:31 +08:00

255 lines
4.3 KiB
Vue

<template>
<view class="content">
<view class="top-">
<u-search @change="changeInput" placeholder="搜索" v-model="keyword"></u-search>
</view>
<view class="tab-box">
<view :class="{ 'acv':tabindex == item.id }" v-for="(item,index) in tablist" :key="index"
@click="getindex(item.id)">
{{item.name}}
</view>
</view>
<view class="box_" v-for="(item,index) in cadetList" :key="index " @click="goDetails(item.userId)">
<view style="display: flex;justify-content: space-between;align-items: center;">
<view class="d-s">
<view class="touxiang">
<image :src="imagesUrl + item.vactor" mode=""></image>
</view>
<view class="">
<view class="name_">{{item.name}}</view>
<view class="tel_">{{item.phone}}</view>
</view>
</view>
<view style="color: #009905;">
{{item.courseName}}
</view>
</view>
<view class="b-s">
<view class="w-d-s">
<view class="hui_">教学教练:</view>
<view class="hei_">{{item.jlName}}</view>
</view>
<view class="w-d-s">
<view class="hui_">入学时间:</view>
<view class="hei_">{{item.createTime}}</view>
</view>
</view>
</view>
</view>
</template>
<script>
import request from "@/utils/request.js"
import {
imagesUrl
} from "@/config.js"
export default {
data() {
return {
tabindex: 2,
tablist: [{
name: "可练科二",
id: 2
},
{
name: "可练科三",
id: 3
},
],
keyword: '',
cadetList: [],
param:{
pageNum:1,
pageSize:10,
total:0,
type:2
}
}
},
onShow() {
this.findCadetList()
},
onPullDownRefresh() {
console.log("刷新");
uni.stopPullDownRefresh()
},
onReachBottom() {
// 触底加载
if (this.orderList.length < this.param.total) {
this.param.pageNum++
this.findCadetList()
}
},
methods: {
async getindex(id) {
this.tabindex = id
this.param.type = id
this.findCadetList()
},
async changeInput() {
this.param.pageNum = 1
this.param.pageSize = 10
this.param.pageNum = 1
this.param.name = this.keyword
this.cadetList= []
this.findCadetList()
},
async findCadetList() {
let res = await request({
url: '/system/pay/stuListByCoachId',
method: 'get',
params:this.param
})
if (res.code == 0) {
if (this.param.pageNum != 1) {
this.cadetList = this.cadetList.concat(res.data.records)
} else {
this.cadetList = res.data.records
}
this.param.total = res.data.total
} else {
uni.showToast({
title: "网络不佳请稍后再试",
icon: 'error'
})
}
},
goDetails(userId) {
uni.navigateTo({
url: `/pages/index/cadetDetails?userId=${userId}`
})
},
goback() {
uni.navigateBack()
}
}
}
</script>
<style scoped lang="scss">
.content {
width: 100%;
background: #f4f5f6;
height: 100vh;
}
.container {
width: 100%;
background: #f4f5f6;
box-sizing: border-box;
padding-top: 88px;
}
.top- {
width: 100%;
height: 50px;
background: #FFFFFF;
box-sizing: border-box;
padding: 10px 15px;
}
.box_ {
width: 95%;
margin: 15px auto;
background: #FFFFFF;
border-radius: 8px;
box-sizing: border-box;
padding: 15px;
}
.d-s {
display: flex;
align-items: center;
}
.touxiang {
width: 46px;
height: 46px;
overflow: hidden;
border-radius: 50%;
margin-right: 10px;
image {
width: 100%;
height: 100%;
}
}
.name_ {
font-weight: bold;
font-size: 16px;
color: #333333;
}
.tel_ {
font-size: 14px;
color: #999999;
}
.g_ {
width: 95%;
margin: 10px auto;
}
.b-s {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
.w-d-s {
width: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-top: 15px;
}
.hui_ {
width: 40%;
font-weight: 400;
font-size: 12px;
color: #999999;
margin-right: 10px;
}
.hei_ {
width: 60%;
font-weight: 400;
font-size: 12px;
color: #333333;
}
.tab-box {
width: 95%;
margin: 15px auto;
display: flex;
align-items: center;
justify-content: space-around;
}
.tabbox {
text-align: center;
}
.acv {
color: #41a863 !important;
font-weight: bold;
}
</style>