2023-11-07 10:08:37 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="content">
|
|
|
|
|
<view class="search card">
|
|
|
|
|
<u--input
|
|
|
|
|
prefixIcon="search"
|
|
|
|
|
placeholder="请输入关键字"
|
|
|
|
|
border="surround"
|
|
|
|
|
v-model="NAME"
|
|
|
|
|
clearable
|
|
|
|
|
shape="circle"
|
|
|
|
|
></u--input>
|
2024-10-10 10:14:31 +08:00
|
|
|
|
<view class="bth-mini ml-10">
|
|
|
|
|
<u-button type="success" text="确定" @click="resetList"></u-button>
|
|
|
|
|
</view>
|
2023-11-07 10:08:37 +08:00
|
|
|
|
</view>
|
|
|
|
|
<u-list @scrolltolower="scrolltolower" v-if="list.length > 0">
|
|
|
|
|
<u-list-item v-for="(item, index) in list" :key="index">
|
|
|
|
|
<view>
|
|
|
|
|
<view class="flex-between main-title">
|
|
|
|
|
<text>{{ item.NAME }}</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="flex-between mt-10 subtitle">
|
2024-10-10 10:14:31 +08:00
|
|
|
|
<text>部门级别:{{ item.DEPTNAME }}</text>
|
|
|
|
|
<text>部门:{{ item.DEPTNAME }}</text>
|
2023-11-07 10:08:37 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="flex-between mt-10 subtitle">
|
2024-10-10 10:14:31 +08:00
|
|
|
|
<text>岗位:{{ item.DEPTNAME }}</text>
|
|
|
|
|
<text>电话:{{ item.DEPTNAME }}</text>
|
2023-11-07 10:08:37 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="flex-between mt-10 subtitle">
|
2024-10-10 10:14:31 +08:00
|
|
|
|
<text>是否确认人:{{ item.DEPTNAME }}</text>
|
|
|
|
|
<text>人员类型:{{ item.DEPTNAME }}</text>
|
2023-11-07 10:08:37 +08:00
|
|
|
|
</view>
|
2024-07-27 15:13:42 +08:00
|
|
|
|
<view class="flex-end mt-10 see_btn">
|
2024-10-10 10:14:31 +08:00
|
|
|
|
<u-button type="primary" text="查看" size="mini"
|
2023-11-07 10:08:37 +08:00
|
|
|
|
@click="fnNavigatorDetail(item.USER_ID)"></u-button>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</u-list-item>
|
|
|
|
|
</u-list>
|
|
|
|
|
<empty v-else></empty>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {getCorpInfoListFindByCorpInfo} from "../../../api";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
NAME: '',
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
currentPage: 1,
|
|
|
|
|
totalPage: 0,
|
|
|
|
|
list: [],
|
|
|
|
|
CORPINFO_ID: ''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
userInfo() {
|
|
|
|
|
return this.$store.getters.getUserInfo
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad(event) {
|
|
|
|
|
this.CORPINFO_ID = event.CORPINFO_ID
|
|
|
|
|
this.resetList()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
async getData() {
|
|
|
|
|
let resData = await getCorpInfoListFindByCorpInfo({
|
|
|
|
|
USER_ID: this.userInfo.USER_ID,
|
2024-10-10 10:14:31 +08:00
|
|
|
|
CORPINFO_ID: this.CORPINFO_ID,
|
2023-11-07 10:08:37 +08:00
|
|
|
|
NAME: this.NAME,
|
|
|
|
|
showCount: this.pageSize,
|
|
|
|
|
currentPage: this.currentPage,
|
|
|
|
|
});
|
|
|
|
|
this.list = [...this.list, ...resData.userList];
|
|
|
|
|
this.totalPage = resData.page.totalPage;
|
|
|
|
|
},
|
|
|
|
|
resetList() {
|
|
|
|
|
this.pageSize = 10
|
|
|
|
|
this.currentPage = 1
|
|
|
|
|
this.list = []
|
|
|
|
|
this.getData()
|
|
|
|
|
},
|
|
|
|
|
fnNavigatorDetail(USER_ID) {
|
|
|
|
|
uni.$u.route({
|
|
|
|
|
url: '/pages/branch-information-management/branch-staff/detail',
|
|
|
|
|
params: {
|
|
|
|
|
USER_ID,
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
scrolltolower() {
|
|
|
|
|
this.currentPage++;
|
|
|
|
|
if (this.totalPage >= this.currentPage) this.getData();
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
2024-07-27 15:13:42 +08:00
|
|
|
|
<style scoped lang="scss">
|
2024-10-10 10:14:31 +08:00
|
|
|
|
.search {
|
2024-07-27 15:13:42 +08:00
|
|
|
|
display: flex;
|
2024-10-10 10:14:31 +08:00
|
|
|
|
|
|
|
|
|
.ml-10 {
|
2024-07-27 15:13:42 +08:00
|
|
|
|
margin-left: 10rpx;
|
|
|
|
|
}
|
2024-10-10 10:14:31 +08:00
|
|
|
|
|
|
|
|
|
.bth-mini {
|
2024-07-27 15:13:42 +08:00
|
|
|
|
width: 100rpx;
|
|
|
|
|
}
|
2023-11-07 10:08:37 +08:00
|
|
|
|
|
2024-07-27 15:13:42 +08:00
|
|
|
|
}
|
2024-10-10 10:14:31 +08:00
|
|
|
|
|
|
|
|
|
.see_btn {
|
2024-07-27 15:13:42 +08:00
|
|
|
|
width: 100rpx;
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
2023-11-07 10:08:37 +08:00
|
|
|
|
|
|
|
|
|
</style>
|