206 lines
3.5 KiB
Vue
206 lines
3.5 KiB
Vue
<template>
|
|
<view class="content">
|
|
<view class="top-">
|
|
<u-search @change="changeInput" placeholder="日照香炉生紫烟" v-model="keyword"></u-search>
|
|
</view>
|
|
|
|
<view class="g_">
|
|
共{{cadetList.total}}人
|
|
</view>
|
|
<u-empty mode="list" v-if="cadetList.total == 0">
|
|
</u-empty>
|
|
<view class="box_" v-for="(item,index) in cadetList.rows" :key="index ">
|
|
<view style="display: flex;align-items: center;
|
|
justify-content: space-between;width: 100%;">
|
|
<view class="d-s" @click="goDetails(item.userId)">
|
|
<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>
|
|
<u-icon name="phone-fill" color="#2979ff" size="28" @click="gettel(item.phone)"></u-icon>
|
|
</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 {
|
|
keyword: '',
|
|
cadetList: []
|
|
}
|
|
},
|
|
onShow() {
|
|
this.findCadetList()
|
|
},
|
|
onPullDownRefresh() {
|
|
console.log("刷新");
|
|
uni.stopPullDownRefresh()
|
|
},
|
|
onReachBottom() {
|
|
// this.show = true
|
|
setTimeout(() => {
|
|
console.log("加载执行");
|
|
}, 2000)
|
|
},
|
|
|
|
methods: {
|
|
async changeInput() {
|
|
if (this.keyword) {
|
|
let res = await request({
|
|
url: `/system/pay/stuList?name=${this.keyword}`,
|
|
method: 'get'
|
|
})
|
|
this.cadetList = res
|
|
} else {
|
|
this.findCadetList()
|
|
}
|
|
},
|
|
async findCadetList() {
|
|
let res = await request({
|
|
url: `/system/pay/stuList`,
|
|
method: 'get'
|
|
})
|
|
this.cadetList = res
|
|
},
|
|
gettel(tel) {
|
|
uni.makePhoneCall({
|
|
phoneNumber: tel //仅为示例
|
|
});
|
|
},
|
|
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;
|
|
}
|
|
</style>
|