123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282 |
- <template>
- <view class="container">
- <u-navbar leftIconColor="#fff" titleStyle="color:#fff;fontSize:36rpx;" :autoBack="true" bgColor="#2C6FF3"
- :placeholder="true" title="人员管理"></u-navbar>
- <view class="content">
- <scroll-view class="scrollview" :scroll-with-animation="true" scroll-y lower-threshold="100"
- :style="{height:fullHeight}">
- <view class="list" v-if="list&&list.length>0">
- <block v-for="(item, index) in list" :key="index">
- <view class="comm-main flex justify-between">
- <view @click.stop="detail(item)">
- <view class="flex align-center">
- <view>
- {{item.name}}
- </view>
- <view>
- {{item.roleNames[0]||'无'}}
- </view>
- </view>
- <view class="phone-user flex align-center" @click.stop="phone(item.tel)">
- <image class="image" src="https://ossfile.mxrvending.com/assets/xy_merc_mini/images/system/tel.png" mode="widthFix"></image>
- <view class="tel">
- {{item.tel}}
- </view>
- </view>
- </view>
- <view class="stop">
- <u-switch activeColor="#2C6FF3" size="20" v-model="item.status"
- @change="stop(item)"></u-switch>
- </view>
- </view>
- </block>
- </view>
- <view class="empty" v-if="list.length==0">
- <u-empty mode="list" text="没有用户!"></u-empty>
- </view>
- </scroll-view>
- <view class="btn safe-bottom">
- <xbutton size="large" round="82rpx" @click="add">添加人员</xbutton>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- list,
- update
- } from "@/api/system/employee.js"
- export default {
- data() {
- return {
- list: [], //列表
- fullHeight: 0,
- }
- },
- onLoad() {
- let _this = this;
- const query = uni.createSelectorQuery().in(this);
- query.select(".scrollview").boundingClientRect((data) => {
- uni.getSystemInfo({
- success(res) {
- // 针对iPhone X等机型底部安全距离做适配
- const model = res.model;
- const modelInclude = [
- "iPhone X",
- 'iPhone XR',
- "iPhone XS",
- "iPhone XS MAX",
- "iPhone 12/13 mini",
- "iPhone 12/13 (Pro)",
- "iPhone 12/13 Pro Max",
- "iPhone 14 Pro Max"
- ];
- let safeDistance = modelInclude.includes(model)
- //动态设置商品区域高度
- if (safeDistance) {
- _this.fullHeight = res.windowHeight - data.top - 34 + 'px';
- } else {
- _this.fullHeight = res.windowHeight - data.top + 'px';
- }
- },
- });
- }).exec();
- },
- onShow() {
- this.getList()
- },
- methods: {
- //获取分页
- getList() {
- list({}).then(res => {
- this.list = res.data
- })
- },
- detail(item) {
- this.$tab.navigateTo(`/pages/system/empDetail?title=${item.name}&id=${item.userId}`)
- },
- stop(item) {
- let msg = item.status ? '启用' : '禁用'
- uni.showModal({
- title: '提示',
- content: `是否确认${msg}`,
- success: res=> {
- if (res.confirm) {
- update({
- userId: item.userInfoId,
- status: item.status
- }).then(res => {
- this.getList()
- setTimeout(()=>{
- this.$modal.showToast(`${msg}成功~`)
- },500)
- }).catch(err => {
-
- })
- } else if (res.cancel) {
- item.status=!item.status
- }
- }
- });
- },
- //添加人员
- add() {
- this.$tab.navigateTo('/pages/system/addEmployee')
- },
-
- //拨打电话
- phone(tel){
- uni.makePhoneCall({
- phoneNumber: tel
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- overflow: hidden;
- .content {
- .list {
- width: 100%;
- padding: 0rpx 13rpx 12rpx;
- padding-bottom: calc(110rpx + env(safe-area-inset-bottom) / 2);
- overflow: hidden;
- .comm-img {
- width: 130rpx;
- height: 130rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-around;
- image {
- width: 130rpx;
- height: 130rpx;
- }
- }
- .comm-main {
- padding: 20rpx 30rpx;
- background-color: #fff;
- border-radius: 12rpx;
- margin-top: 12rpx;
- box-sizing: border-box;
- color: #999;
- line-height: 60rpx;
- position: relative;
-
- .image{
- width:23rpx;
- height:23rpx;
- margin-right: 12rpx;
- }
- >view:nth-child(1){
- width:580rpx;
- >view {
- padding: 4rpx 0;
- }
-
- >view:nth-child(1) {
-
- >view:nth-child(1) {
- font-size: 30rpx;
- font-weight: bold;
- color: #333;
- }
-
- >view:nth-child(2) {
- font-size: 28rpx;
- margin-left: 24rpx;
- }
- }
-
- >view:nth-child(2) {
- font-size: 28rpx;
- }
- }
-
- .phone-user{
- width:250rpx;
- }
- .stop {
- // position: absolute;
- // right: 30rpx;
- // top: 26rpx;
- }
- }
- }
- }
- }
- .empty {
- margin-top: 40%;
- }
- .btn {
- width: 100%;
- position: fixed;
- left: 0;
- padding: 0 24rpx;
- }
- .popup-content {
- padding: 36rpx 24rpx;
- display: flex;
- flex-flow: row nowrap;
- justify-content: flex-start;
- align-items: center;
- input {
- border: 1rpx solid #999;
- border-radius: 6rpx;
- width: 530rpx;
- padding: 0 24rpx;
- }
- &.edit-point {
- flex-direction: column;
- align-items: flex-start;
- .edit-point-item {
- width: 100%;
- padding-left: 170rpx;
- position: relative;
- &+.edit-point-item {
- margin-top: 12rpx;
- }
- >view:nth-child(1) {
- position: absolute;
- left: 0;
- top: 50%;
- transform: translateY(-50%);
- }
- }
- }
- }
- .del-popup-content {
- padding: 36rpx 24rpx;
- text-align: center;
- font-size: 32rpx;
- }
- </style>
|