This commit is contained in:
xiaozhiyong
2023-05-06 15:45:59 +08:00
parent 2774be4bb9
commit 29ee331456
10 changed files with 821 additions and 159 deletions

View File

@@ -11,8 +11,10 @@
<uni-icons type="forward" size="16" color="white"></uni-icons>
</view>
<view class="header_seach_seach">
<uni-easyinput @confirm='seachFn' style="height: 100%; flex: 1; background-color: #FFFFFF; border-radius:12rpx ;"
prefixIcon="search" placeholder-style="color:#bbbbbb;font-weight: 100;" v-model="getData.params.id" placeholder="司机姓名、司机ID、电话号码" @iconClick="onClick">
<uni-easyinput @confirm='seachFn'
style="height: 100%; flex: 1; background-color: #FFFFFF; border-radius:12rpx ;"
prefixIcon="search" placeholder-style="color:#bbbbbb;font-weight: 100;"
v-model="getData.params.id" placeholder="司机姓名、司机ID、电话号码" @iconClick="onClick">
</uni-easyinput>
<button @tap='jump(2)' class="header_seach_butten">
<uni-icons type="personadd" size="20" color="#bbbbbb"></uni-icons>
@@ -29,23 +31,26 @@
</view>
</view>
<view style="flex: 1;overflow: hidden;">
<scroll-view style="height: 100%;" scroll-y="true" @scrolltolower='scrolltolower'>
<scroll-view style="height: 100%;" scroll-y="true" @scrolltolower='scrolltolower'>
<view v-for="(item,index) in listData" class="form_body">
<view @tap="jump(1,item)" class="form_body_item">
<view class="form_body_item_body">
<view class="form-item_body_left" style="">
<image :src="item.headPhoto?item.headPhoto: '../../static/tx.png'" style="width: 100rpx; height: 100rpx;border-radius: 50%;"></image>
<image :src="item.headPhoto?item.headPhoto: '../../static/tx.png'"
style="width: 100rpx; height: 100rpx;border-radius: 50%;"></image>
<view class="form_body_item_body_container">
<view :style="{color:item.userName?'':'#999999'}">{{item.userName?item.userName:' 无设置'}}</view>
<view :style="{color:item.userName?'':'#999999'}">
{{item.userName?item.userName:' 无设置'}}</view>
<view>
{{item.phone?item.phone:'无设置'}}
<view class="copy" v-if="item.phone" @tap.stop="copy(item.phone)"></view>
<view class="copy" v-if="item.phone" @tap.stop="copy(item.phone)"></view>
</view>
<view class="form-item_body_left_bottom_text" style="">{{item.companyName?item.companyName :'无直属公司'}}</view>
<view class="form-item_body_left_bottom_text" style="">
{{item.companyName?item.companyName :'无直属公司'}}</view>
</view>
</view>
<view class="form-item_body_right" style="">
<view :class="item.enableMark==1?'typeyuan':'seletypeyuan'"></view>
<view :class="item.enableMark==1?'typeyuan':'seletypeyuan'"></view>
{{item.enableMark==1? '启用':'禁用'}}
</view>
</view>
@@ -65,15 +70,15 @@
export default {
data() {
return {
companyName:'',
candidates:[],
companyName: '',
candidates: [],
getData: {
pageSize: 15,
currentPage: 1,
params: {
userSource: '',
companyId: '',
id:'',
id: '',
enableMark: '',
},
sorted: {
@@ -102,27 +107,32 @@
listData: []
}
},
onPullDownRefresh() {
//下拉的生命周期
this.getData.currentPage = 1
this.getList()
console.log('下拉的生命周期')
},
onPullDownRefresh() {
//下拉的生命周期
this.getData.currentPage = 1
this.getList()
console.log('下拉的生命周期')
},
onLoad() {
let that =this
let that = this
this.styles = uni.getMenuButtonBoundingClientRect()
uni.$on('company',function(e){
uni.$on('company', function(e) {
let routes = getCurrentPages();
let routerIndex = routes[ (routes.length-2) ].$page.fullPath.indexOf('?')!=-1?
routes[ (routes.length-2) ].$page.fullPath.split('?')[0].split('/')[routes[ (routes.length-2) ].$page.fullPath.split('?')[0].split('/').length-1]
:routes[ (routes.length-2) ].$page.fullPath.split('/')[routes[ (routes.length-2) ].$page.fullPath.split('/').length-1]
console.log(routes,routerIndex,'获取当前打开过的页面路由数组')
if(routerIndex!=='index')return
if(e){
( {id:that.getData.params.companyId,name:that.companyName} = e );
let routerIndex = routes[(routes.length - 2)].$page.fullPath.indexOf('?') != -1 ?
routes[(routes.length - 2)].$page.fullPath.split('?')[0].split('/')[routes[(routes.length - 2)]
.$page.fullPath.split('?')[0].split('/').length - 1] :
routes[(routes.length - 2)].$page.fullPath.split('/')[routes[(routes.length - 2)].$page
.fullPath.split('/').length - 1]
console.log(routes, routerIndex, '获取当前打开过的页面路由数组')
if (routerIndex !== 'index') return
if (e) {
({
id: that.getData.params.companyId,
name: that.companyName
} = e);
console.log(that.getData)
}else{
that.getData.params.companyId=''
} else {
that.getData.params.companyId = ''
that.companyName = ''
}
})
@@ -137,11 +147,11 @@
});
},
scrolltolower() {
this.getData.currentPage+=1
this.getData.currentPage += 1
console.log('触底了')
this.getList()
},
seachFn(){
seachFn() {
// this.getData.params.id = this.seachValue
this.getData.currentPage = 1
this.getList()
@@ -149,52 +159,53 @@
},
getList() {
let user = uni.getStorageSync('user');
console.log(user,'---')
console.log(user, '---')
// ({ userSource:this.getData.params.userSource,id:this.getData.params.id} = user);
driverManagement.getByPagesApp(this.getData).then(res => {
if (res.code !== 20000) return
if(this.getData.currentPage!==1){
if (this.getData.currentPage !== 1) {
this.listData = this.listData.concat(res.data.list);
return
}
this.listData = res.data.list
})
},
jump(e,item) {
jump(e, item) {
switch (e) {
case -1:
uni.navigateBack()
break;
case 0:
uni.navigateTo({
url: "../company/company?jsData="+ JSON.stringify(this.companyName)
url: "../company/company?jsData=" + JSON.stringify(this.companyName)
})
break;
case 1:
console.log(item,JSON.stringify(item))
console.log(item, JSON.stringify(item))
uni.navigateTo({
url: "../driverDetails/driverDetails?jsData="+ encodeURIComponent(JSON.stringify(item))
url: "../driverDetails/driverDetails?jsData=" + encodeURIComponent(JSON.stringify(
item))
})
break;
case 2:
if(uni.getStorageSync('user').authList.includes('driver:info:add')){
case 2:
if (uni.getStorageSync('user').authList.includes('driver:info:add')) {
uni.navigateTo({
url:"../addDiver/addDiver"
url: "../addDiver/addDiver"
})
}else{
} else {
uni.showToast({
title:'暂无权限请联系管理员',
icon:'none'
title: '暂无权限请联系管理员',
icon: 'none'
})
}
break;
}
},
seleFn(e) {
if(e.index!=-1){
if (e.index != -1) {
this.getData.params.enableMark = e.index
}else{
} else {
this.getData.params.enableMark = ''
}
this.getData.currentPage = 1
@@ -209,23 +220,26 @@
</script>
<style>
.typeyuan{
.typeyuan {
background-color: #17A00E;
width: 14rpx;
height: 14rpx;
border-radius: 50px;
margin-right: 6rpx;
}
.seletypeyuan{
.seletypeyuan {
background-color: red;
width: 14rpx;
height: 14rpx;
border-radius: 50px;
margin-right: 6rpx;
}
.is-input-border{
.is-input-border {
border: 0px !important;
}
page {
background-color: #F0F2FF;
}
@@ -245,10 +259,10 @@
text-align: end;
color: #999999;
font-size: 24rpx;
height: max-content;
display: flex;
justify-content: flex-end;
align-items: center;
height: max-content;
display: flex;
justify-content: flex-end;
align-items: center;
}
.form-item_body_left_bottom_text {
@@ -369,11 +383,11 @@
}
.header {
background-color: #007AFF;
/* background-color: #007AFF; */
color: white;
min-height: 403rpx;
background-image: url('https://xoi-support.oss-cn-hangzhou.aliyuncs.com/星油admin小程序/sjbj.png');
background-size: 100% 100%;
background: url('https://xoi-support.oss-cn-hangzhou.aliyuncs.com/星油admin小程序/sjbj.png') 100%/100%;
/* background-size: 100% 100%; */
position: relative;
}
@@ -385,6 +399,7 @@
.top {
height: var(--status-bar-height);
}
.copy {
position: relative;
top: 7rpx;
@@ -392,6 +407,6 @@
margin-left: 15rpx;
width: 32rpx;
height: 32rpx;
background: url('../../static/copy.png') 100%/ 100%;
background: url('../../static/copy.png') 100%/ 100%;
}
</style>