103 lines
2.7 KiB
Vue
103 lines
2.7 KiB
Vue
|
<template>
|
|||
|
<view class="content">
|
|||
|
<view class="search card">
|
|||
|
<u--input
|
|||
|
prefixIcon="search"
|
|||
|
placeholder="请输入关键字"
|
|||
|
border="surround"
|
|||
|
v-model="NAME"
|
|||
|
clearable
|
|||
|
shape="circle"
|
|||
|
></u--input>
|
|||
|
<u-button class="bth-mini ml-10" type="success" text="确定" @click="resetList"></u-button>
|
|||
|
</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">
|
|||
|
<text>部门级别:{{item.DEPTNAME}}</text>
|
|||
|
<text>部门:{{item.DEPTNAME}}</text>
|
|||
|
</view>
|
|||
|
<view class="flex-between mt-10 subtitle">
|
|||
|
<text>岗位:{{item.DEPTNAME}}</text>
|
|||
|
<text>电话:{{item.DEPTNAME}}</text>
|
|||
|
</view>
|
|||
|
<view class="flex-between mt-10 subtitle">
|
|||
|
<text>是否确认人:{{item.DEPTNAME}}</text>
|
|||
|
<text>人员类型:{{item.DEPTNAME}}</text>
|
|||
|
</view>
|
|||
|
<view class="flex-end mt-10">
|
|||
|
<u-button type="primary" text="查看" size="mini" class="bth-mini"
|
|||
|
@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,
|
|||
|
CORPINFO_ID:this.CORPINFO_ID,
|
|||
|
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>
|
|||
|
|
|||
|
<style scoped>
|
|||
|
|
|||
|
</style>
|