@zscreate/zhxy-app-component 1.0.179 → 1.0.180
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -582,7 +582,6 @@ import LbPicker from '../../components/lb-picker/index.vue';
|
|
|
582
582
|
import MyPicker from '../../components/dying318-picker/Pickers.vue';
|
|
583
583
|
import UniRate from '../../components/uni-rate/uni-rate.vue';
|
|
584
584
|
import DataTable from "../../components/DataTable/DataTable.vue";
|
|
585
|
-
import userSelectByRole from "../userSelectByRole/userSelectByRole.vue";
|
|
586
585
|
|
|
587
586
|
import richEditor from '../rich-editor/index.vue';
|
|
588
587
|
import Pubsub from 'pubsub-js'
|
|
@@ -617,7 +616,6 @@ export default {
|
|
|
617
616
|
'xp-picker': XpPicker,
|
|
618
617
|
UniRate,
|
|
619
618
|
DataTable,
|
|
620
|
-
userSelectByRole,
|
|
621
619
|
tColorPicker,
|
|
622
620
|
unploadFile,
|
|
623
621
|
lFile,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<u-popup v-model="roleSelectShow" width="100%">
|
|
3
|
-
<view class="role-select-body" style="padding:
|
|
3
|
+
<view class="role-select-body" :style="{padding: paddingTop, 'margin-top': '40rpx'}">
|
|
4
4
|
<view>角色选择</view>
|
|
5
5
|
<u-radio-group v-model="roleChecked" >
|
|
6
6
|
<u-radio
|
|
@@ -72,6 +72,12 @@ export default {
|
|
|
72
72
|
depId: '',
|
|
73
73
|
roleChecked: '',
|
|
74
74
|
isLoading: true,
|
|
75
|
+
// #ifdef H5
|
|
76
|
+
paddingTop: '20rpx',
|
|
77
|
+
// #endif
|
|
78
|
+
// #ifdef MP-WEIXIN
|
|
79
|
+
paddingTop: '95rpx 20rpx 20rpx 20rpx',
|
|
80
|
+
// #endif
|
|
75
81
|
}
|
|
76
82
|
},
|
|
77
83
|
computed: {
|