@cgboiler/biz-mobile 1.17.3 → 1.17.5
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.
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/org-picker/OrgPicker.js +23 -15
- package/es/org-picker/_atomic.css +6 -0
- package/es/org-picker/index.css +1 -1
- package/es/org-picker/index.less +51 -27
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/org-picker/OrgPicker.js +23 -15
- package/lib/org-picker/_atomic.css +6 -0
- package/lib/org-picker/index.css +1 -1
- package/lib/org-picker/index.less +51 -27
- package/package.json +1 -1
package/es/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ declare namespace _default {
|
|
|
7
7
|
}
|
|
8
8
|
export default _default;
|
|
9
9
|
export function install(app: any): void;
|
|
10
|
-
export const version: "1.17.
|
|
10
|
+
export const version: "1.17.4";
|
|
11
11
|
import MdPreview from './md-preview';
|
|
12
12
|
import OrgPicker from './org-picker';
|
|
13
13
|
import ProjectSelect from './project-select';
|
package/es/index.js
CHANGED
|
@@ -84,10 +84,12 @@ var stdin_default = defineComponent({
|
|
|
84
84
|
const finished = ref(true);
|
|
85
85
|
const searchRef = ref();
|
|
86
86
|
watch(() => props.show, (newVal) => __async(this, null, function* () {
|
|
87
|
-
var _a;
|
|
88
87
|
if (newVal && props.autoFocus) {
|
|
89
88
|
yield nextTick();
|
|
90
|
-
(
|
|
89
|
+
setTimeout(() => {
|
|
90
|
+
var _a;
|
|
91
|
+
(_a = searchRef.value) == null ? void 0 : _a.focus();
|
|
92
|
+
}, 300);
|
|
91
93
|
}
|
|
92
94
|
}));
|
|
93
95
|
watch(keyword, (newKeyword) => {
|
|
@@ -118,14 +120,27 @@ var stdin_default = defineComponent({
|
|
|
118
120
|
"closeOnClickAction": !props.multiple
|
|
119
121
|
}, {
|
|
120
122
|
default: () => [_createVNode("div", {
|
|
121
|
-
"class": "org-list"
|
|
123
|
+
"class": "org-list cgx-atm"
|
|
122
124
|
}, [_createVNode(Search, {
|
|
123
125
|
"ref": searchRef,
|
|
124
126
|
"modelValue": keyword.value,
|
|
125
127
|
"onUpdate:modelValue": ($event) => keyword.value = $event,
|
|
126
128
|
"placeholder": "\u641C\u7D22\u4EBA\u5458",
|
|
127
129
|
"class": "search-bar"
|
|
128
|
-
}, null),
|
|
130
|
+
}, null), _createVNode("div", {
|
|
131
|
+
"class": "org-selected-items"
|
|
132
|
+
}, [selectedItems.value.length > 0 ? selectedItems.value.map((item) => _createVNode("div", {
|
|
133
|
+
"key": item.id,
|
|
134
|
+
"class": "selected-tag",
|
|
135
|
+
"onClick": () => handleSelect(item)
|
|
136
|
+
}, [_createVNode(Image, {
|
|
137
|
+
"class": "tag-avatar",
|
|
138
|
+
"src": item.avatar
|
|
139
|
+
}, null), _createVNode("div", {
|
|
140
|
+
"class": "close-icon"
|
|
141
|
+
}, [_createTextVNode("X")])])) : _createVNode("p", {
|
|
142
|
+
"class": "color-[#aaa] text-[14px] text-center w-full leading-[38px]"
|
|
143
|
+
}, [_createTextVNode("\u672A\u9009\u62E9\u4EBA\u5458")])]), !keyword.value && _createVNode("div", {
|
|
129
144
|
"class": "breadcrumb-nav"
|
|
130
145
|
}, [deptPath.value.map((dept, index) => _createVNode("span", {
|
|
131
146
|
"key": dept.id
|
|
@@ -156,19 +171,12 @@ var stdin_default = defineComponent({
|
|
|
156
171
|
"src": item.avatar
|
|
157
172
|
}, null), _createVNode("div", {
|
|
158
173
|
"class": "org-name"
|
|
159
|
-
}, [item.name
|
|
174
|
+
}, [item.name, _createVNode("span", {
|
|
175
|
+
"class": "org-item-select-icon"
|
|
176
|
+
}, [_createTextVNode("\u2713")])])]))]
|
|
160
177
|
})]), props.multiple && _createVNode("div", {
|
|
161
178
|
"class": "bottom-section"
|
|
162
|
-
}, [
|
|
163
|
-
"class": "selected-items"
|
|
164
|
-
}, [selectedItems.value.map((item) => _createVNode("div", {
|
|
165
|
-
"key": item.id,
|
|
166
|
-
"class": "selected-tag",
|
|
167
|
-
"onClick": () => handleSelect(item)
|
|
168
|
-
}, [_createVNode(Image, {
|
|
169
|
-
"class": "tag-avatar",
|
|
170
|
-
"src": item.avatar
|
|
171
|
-
}, null)]))]), _createVNode("div", {
|
|
179
|
+
}, [_createVNode("div", {
|
|
172
180
|
"class": "action-buttons"
|
|
173
181
|
}, [_createVNode("div", {
|
|
174
182
|
"class": "confirm-button",
|
|
@@ -30,3 +30,9 @@
|
|
|
30
30
|
flex-wrap: wrap;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
+
/* layer: default */
|
|
34
|
+
.cgx-atm .w-full{width:100%;}
|
|
35
|
+
.cgx-atm .text-center{text-align:center;}
|
|
36
|
+
.cgx-atm .text-\[14px\]{font-size:14px;}
|
|
37
|
+
.cgx-atm .leading-\[38px\]{line-height:38px;}
|
|
38
|
+
.cgx-atm .color-\[\#aaa\]{--un-text-opacity:1;color:rgba(170,170,170,var(--un-text-opacity));}
|
package/es/org-picker/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:root:root{--van-action-sheet-max-height: 100%}.org-list{height:85vh;display:flex;flex-direction:column}.org-list .breadcrumb-nav{margin-bottom:4px;padding:2px 16px;border-radius:4px;font-size:12px}.org-list .breadcrumb-nav .dept-name.current-dept{color:#969799}.org-list .breadcrumb-nav .separator{color:#969799;margin:0 4px}.org-list .search-bar{position:-webkit-sticky;position:-webkit-sticky;position:sticky;top:0;z-index:1}.org-list .
|
|
1
|
+
:root:root{--van-action-sheet-max-height: 100%}.org-list{height:85vh;display:flex;flex-direction:column}.org-list .breadcrumb-nav{margin-bottom:4px;padding:2px 16px;border-radius:4px;font-size:12px}.org-list .breadcrumb-nav .dept-name.current-dept{color:#969799}.org-list .breadcrumb-nav .separator{color:#969799;margin:0 4px}.org-list .search-bar{position:-webkit-sticky;position:-webkit-sticky;position:sticky;top:0;z-index:1}.org-list .org-selected-items{display:flex;flex-wrap:nowrap;padding:12px 16px;gap:12px;background-color:#fff;overflow-x:auto;height:68px;border-bottom:1px solid #eee}.org-list .org-selected-items .selected-tag{flex-shrink:0;background:none;border:none;padding:0;margin:0;position:relative}.org-list .org-selected-items .selected-tag .close-icon{position:absolute;top:0;right:0;z-index:1;background-color:#fff;border-radius:50%;border:1px solid #eee;width:10px;height:10px;display:flex;align-items:center;justify-content:center;font-size:6px;color:#969799}.org-list .org-selected-items .selected-tag .tag-avatar{width:40px;height:40px}.org-list .org-selected-items .selected-tag .tag-avatar img{border-radius:4px;border:1px solid #eee;object-fit:contain}.org-list .bottom-section{border-top:1px solid #eee;background-color:#fff}.org-list .van-list{flex:1;overflow-y:auto;padding:0 16px}.org-list .feed-list-wrap{flex:1;display:flex;overflow:hidden;position:relative;justify-content:center}.org-list .search-result-list{position:absolute;top:0;left:0;right:0;bottom:0;z-index:1;background-color:#fff;overflow-y:auto;padding:0 16px}.org-list .org-item{padding:12px 0;border-bottom:1px solid #eee;cursor:pointer;display:flex;align-items:center;gap:12px}.org-list .org-item .org-item-select-icon{display:none;padding-left:4px}.org-list .org-item.selected{color:var(--van-primary-color)}.org-list .org-item.selected .org-item-select-icon{display:inline}.org-list .org-item .org-avatar{flex-shrink:0;width:40px;height:40px;display:flex;align-items:center;justify-content:center}.org-list .org-item .org-avatar img{border-radius:4px;border:1px solid #eee;object-fit:contain}.org-list .org-item .org-name{font-size:14px;flex:1}.org-list .org-item:last-child{border-bottom:none}.org-list .action-buttons{padding:16px;display:flex;justify-content:center}.org-list .action-buttons .confirm-button{background-color:var(--van-primary-color);color:#fff;padding:10px 0;border-radius:4px;text-align:center;width:100%;font-size:14px}
|
package/es/org-picker/index.less
CHANGED
|
@@ -30,39 +30,57 @@
|
|
|
30
30
|
z-index: 1;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
-
.
|
|
34
|
-
|
|
33
|
+
.org-selected-items {
|
|
34
|
+
display: flex;
|
|
35
|
+
flex-wrap: nowrap;
|
|
36
|
+
padding: 12px 16px;
|
|
37
|
+
gap: 12px;
|
|
35
38
|
background-color: #fff;
|
|
39
|
+
overflow-x: auto;
|
|
40
|
+
height: 68px;
|
|
41
|
+
border-bottom: 1px solid #eee;
|
|
36
42
|
|
|
37
|
-
.selected-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
43
|
+
.selected-tag {
|
|
44
|
+
flex-shrink: 0;
|
|
45
|
+
background: none;
|
|
46
|
+
border: none;
|
|
47
|
+
padding: 0;
|
|
48
|
+
margin: 0;
|
|
49
|
+
position: relative;
|
|
50
|
+
.close-icon {
|
|
51
|
+
position: absolute;
|
|
52
|
+
top: 0;
|
|
53
|
+
right: 0;
|
|
54
|
+
z-index: 1;
|
|
55
|
+
background-color: #fff;
|
|
56
|
+
border-radius: 50%;
|
|
57
|
+
border: 1px solid #eee;
|
|
58
|
+
width: 10px;
|
|
59
|
+
height: 10px;
|
|
60
|
+
display: flex;
|
|
61
|
+
align-items: center;
|
|
62
|
+
justify-content: center;
|
|
63
|
+
font-size: 6px;
|
|
64
|
+
color: #969799;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.tag-avatar {
|
|
68
|
+
width: 40px;
|
|
69
|
+
height: 40px;
|
|
70
|
+
img {
|
|
71
|
+
border-radius: 4px;
|
|
72
|
+
border: 1px solid #eee;
|
|
73
|
+
object-fit: contain;
|
|
61
74
|
}
|
|
62
75
|
}
|
|
63
76
|
}
|
|
64
77
|
}
|
|
65
78
|
|
|
79
|
+
.bottom-section {
|
|
80
|
+
border-top: 1px solid #eee;
|
|
81
|
+
background-color: #fff;
|
|
82
|
+
}
|
|
83
|
+
|
|
66
84
|
.van-list {
|
|
67
85
|
flex: 1;
|
|
68
86
|
overflow-y: auto;
|
|
@@ -96,8 +114,15 @@
|
|
|
96
114
|
align-items: center;
|
|
97
115
|
gap: 12px;
|
|
98
116
|
|
|
117
|
+
.org-item-select-icon {
|
|
118
|
+
display: none;
|
|
119
|
+
padding-left: 4px;
|
|
120
|
+
}
|
|
99
121
|
&.selected {
|
|
100
122
|
color: var(--van-primary-color);
|
|
123
|
+
.org-item-select-icon {
|
|
124
|
+
display: inline;
|
|
125
|
+
}
|
|
101
126
|
}
|
|
102
127
|
|
|
103
128
|
.org-avatar {
|
|
@@ -128,7 +153,6 @@
|
|
|
128
153
|
padding: 16px;
|
|
129
154
|
display: flex;
|
|
130
155
|
justify-content: center;
|
|
131
|
-
border-top: 1px solid #eee;
|
|
132
156
|
|
|
133
157
|
.confirm-button {
|
|
134
158
|
background-color: var(--van-primary-color);
|
package/lib/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ declare namespace _default {
|
|
|
7
7
|
}
|
|
8
8
|
export default _default;
|
|
9
9
|
export function install(app: any): void;
|
|
10
|
-
export const version: "1.17.
|
|
10
|
+
export const version: "1.17.4";
|
|
11
11
|
import MdPreview from './md-preview';
|
|
12
12
|
import OrgPicker from './org-picker';
|
|
13
13
|
import ProjectSelect from './project-select';
|
package/lib/index.js
CHANGED
|
@@ -42,7 +42,7 @@ var import_project_select = __toESM(require("./project-select"));
|
|
|
42
42
|
__reExport(stdin_exports, require("./md-preview"), module.exports);
|
|
43
43
|
__reExport(stdin_exports, require("./org-picker"), module.exports);
|
|
44
44
|
__reExport(stdin_exports, require("./project-select"), module.exports);
|
|
45
|
-
const version = "1.17.
|
|
45
|
+
const version = "1.17.4";
|
|
46
46
|
function install(app) {
|
|
47
47
|
const components = [
|
|
48
48
|
import_md_preview.default,
|
|
@@ -116,10 +116,12 @@ var stdin_default = (0, import_vue2.defineComponent)({
|
|
|
116
116
|
const finished = (0, import_vue2.ref)(true);
|
|
117
117
|
const searchRef = (0, import_vue2.ref)();
|
|
118
118
|
(0, import_vue2.watch)(() => props.show, (newVal) => __async(this, null, function* () {
|
|
119
|
-
var _a;
|
|
120
119
|
if (newVal && props.autoFocus) {
|
|
121
120
|
yield (0, import_vue2.nextTick)();
|
|
122
|
-
(
|
|
121
|
+
setTimeout(() => {
|
|
122
|
+
var _a;
|
|
123
|
+
(_a = searchRef.value) == null ? void 0 : _a.focus();
|
|
124
|
+
}, 300);
|
|
123
125
|
}
|
|
124
126
|
}));
|
|
125
127
|
(0, import_vue2.watch)(keyword, (newKeyword) => {
|
|
@@ -150,14 +152,27 @@ var stdin_default = (0, import_vue2.defineComponent)({
|
|
|
150
152
|
"closeOnClickAction": !props.multiple
|
|
151
153
|
}, {
|
|
152
154
|
default: () => [(0, import_vue.createVNode)("div", {
|
|
153
|
-
"class": "org-list"
|
|
155
|
+
"class": "org-list cgx-atm"
|
|
154
156
|
}, [(0, import_vue.createVNode)(import_vant.Search, {
|
|
155
157
|
"ref": searchRef,
|
|
156
158
|
"modelValue": keyword.value,
|
|
157
159
|
"onUpdate:modelValue": ($event) => keyword.value = $event,
|
|
158
160
|
"placeholder": "\u641C\u7D22\u4EBA\u5458",
|
|
159
161
|
"class": "search-bar"
|
|
160
|
-
}, null),
|
|
162
|
+
}, null), (0, import_vue.createVNode)("div", {
|
|
163
|
+
"class": "org-selected-items"
|
|
164
|
+
}, [selectedItems.value.length > 0 ? selectedItems.value.map((item) => (0, import_vue.createVNode)("div", {
|
|
165
|
+
"key": item.id,
|
|
166
|
+
"class": "selected-tag",
|
|
167
|
+
"onClick": () => handleSelect(item)
|
|
168
|
+
}, [(0, import_vue.createVNode)(import_vant.Image, {
|
|
169
|
+
"class": "tag-avatar",
|
|
170
|
+
"src": item.avatar
|
|
171
|
+
}, null), (0, import_vue.createVNode)("div", {
|
|
172
|
+
"class": "close-icon"
|
|
173
|
+
}, [(0, import_vue.createTextVNode)("X")])])) : (0, import_vue.createVNode)("p", {
|
|
174
|
+
"class": "color-[#aaa] text-[14px] text-center w-full leading-[38px]"
|
|
175
|
+
}, [(0, import_vue.createTextVNode)("\u672A\u9009\u62E9\u4EBA\u5458")])]), !keyword.value && (0, import_vue.createVNode)("div", {
|
|
161
176
|
"class": "breadcrumb-nav"
|
|
162
177
|
}, [deptPath.value.map((dept, index) => (0, import_vue.createVNode)("span", {
|
|
163
178
|
"key": dept.id
|
|
@@ -188,19 +203,12 @@ var stdin_default = (0, import_vue2.defineComponent)({
|
|
|
188
203
|
"src": item.avatar
|
|
189
204
|
}, null), (0, import_vue.createVNode)("div", {
|
|
190
205
|
"class": "org-name"
|
|
191
|
-
}, [item.name
|
|
206
|
+
}, [item.name, (0, import_vue.createVNode)("span", {
|
|
207
|
+
"class": "org-item-select-icon"
|
|
208
|
+
}, [(0, import_vue.createTextVNode)("\u2713")])])]))]
|
|
192
209
|
})]), props.multiple && (0, import_vue.createVNode)("div", {
|
|
193
210
|
"class": "bottom-section"
|
|
194
|
-
}, [
|
|
195
|
-
"class": "selected-items"
|
|
196
|
-
}, [selectedItems.value.map((item) => (0, import_vue.createVNode)("div", {
|
|
197
|
-
"key": item.id,
|
|
198
|
-
"class": "selected-tag",
|
|
199
|
-
"onClick": () => handleSelect(item)
|
|
200
|
-
}, [(0, import_vue.createVNode)(import_vant.Image, {
|
|
201
|
-
"class": "tag-avatar",
|
|
202
|
-
"src": item.avatar
|
|
203
|
-
}, null)]))]), (0, import_vue.createVNode)("div", {
|
|
211
|
+
}, [(0, import_vue.createVNode)("div", {
|
|
204
212
|
"class": "action-buttons"
|
|
205
213
|
}, [(0, import_vue.createVNode)("div", {
|
|
206
214
|
"class": "confirm-button",
|
|
@@ -30,3 +30,9 @@
|
|
|
30
30
|
flex-wrap: wrap;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
+
/* layer: default */
|
|
34
|
+
.cgx-atm .w-full{width:100%;}
|
|
35
|
+
.cgx-atm .text-center{text-align:center;}
|
|
36
|
+
.cgx-atm .text-\[14px\]{font-size:14px;}
|
|
37
|
+
.cgx-atm .leading-\[38px\]{line-height:38px;}
|
|
38
|
+
.cgx-atm .color-\[\#aaa\]{--un-text-opacity:1;color:rgba(170,170,170,var(--un-text-opacity));}
|
package/lib/org-picker/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:root:root{--van-action-sheet-max-height: 100%}.org-list{height:85vh;display:flex;flex-direction:column}.org-list .breadcrumb-nav{margin-bottom:4px;padding:2px 16px;border-radius:4px;font-size:12px}.org-list .breadcrumb-nav .dept-name.current-dept{color:#969799}.org-list .breadcrumb-nav .separator{color:#969799;margin:0 4px}.org-list .search-bar{position:-webkit-sticky;position:-webkit-sticky;position:sticky;top:0;z-index:1}.org-list .
|
|
1
|
+
:root:root{--van-action-sheet-max-height: 100%}.org-list{height:85vh;display:flex;flex-direction:column}.org-list .breadcrumb-nav{margin-bottom:4px;padding:2px 16px;border-radius:4px;font-size:12px}.org-list .breadcrumb-nav .dept-name.current-dept{color:#969799}.org-list .breadcrumb-nav .separator{color:#969799;margin:0 4px}.org-list .search-bar{position:-webkit-sticky;position:-webkit-sticky;position:sticky;top:0;z-index:1}.org-list .org-selected-items{display:flex;flex-wrap:nowrap;padding:12px 16px;gap:12px;background-color:#fff;overflow-x:auto;height:68px;border-bottom:1px solid #eee}.org-list .org-selected-items .selected-tag{flex-shrink:0;background:none;border:none;padding:0;margin:0;position:relative}.org-list .org-selected-items .selected-tag .close-icon{position:absolute;top:0;right:0;z-index:1;background-color:#fff;border-radius:50%;border:1px solid #eee;width:10px;height:10px;display:flex;align-items:center;justify-content:center;font-size:6px;color:#969799}.org-list .org-selected-items .selected-tag .tag-avatar{width:40px;height:40px}.org-list .org-selected-items .selected-tag .tag-avatar img{border-radius:4px;border:1px solid #eee;object-fit:contain}.org-list .bottom-section{border-top:1px solid #eee;background-color:#fff}.org-list .van-list{flex:1;overflow-y:auto;padding:0 16px}.org-list .feed-list-wrap{flex:1;display:flex;overflow:hidden;position:relative;justify-content:center}.org-list .search-result-list{position:absolute;top:0;left:0;right:0;bottom:0;z-index:1;background-color:#fff;overflow-y:auto;padding:0 16px}.org-list .org-item{padding:12px 0;border-bottom:1px solid #eee;cursor:pointer;display:flex;align-items:center;gap:12px}.org-list .org-item .org-item-select-icon{display:none;padding-left:4px}.org-list .org-item.selected{color:var(--van-primary-color)}.org-list .org-item.selected .org-item-select-icon{display:inline}.org-list .org-item .org-avatar{flex-shrink:0;width:40px;height:40px;display:flex;align-items:center;justify-content:center}.org-list .org-item .org-avatar img{border-radius:4px;border:1px solid #eee;object-fit:contain}.org-list .org-item .org-name{font-size:14px;flex:1}.org-list .org-item:last-child{border-bottom:none}.org-list .action-buttons{padding:16px;display:flex;justify-content:center}.org-list .action-buttons .confirm-button{background-color:var(--van-primary-color);color:#fff;padding:10px 0;border-radius:4px;text-align:center;width:100%;font-size:14px}
|
|
@@ -30,39 +30,57 @@
|
|
|
30
30
|
z-index: 1;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
-
.
|
|
34
|
-
|
|
33
|
+
.org-selected-items {
|
|
34
|
+
display: flex;
|
|
35
|
+
flex-wrap: nowrap;
|
|
36
|
+
padding: 12px 16px;
|
|
37
|
+
gap: 12px;
|
|
35
38
|
background-color: #fff;
|
|
39
|
+
overflow-x: auto;
|
|
40
|
+
height: 68px;
|
|
41
|
+
border-bottom: 1px solid #eee;
|
|
36
42
|
|
|
37
|
-
.selected-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
43
|
+
.selected-tag {
|
|
44
|
+
flex-shrink: 0;
|
|
45
|
+
background: none;
|
|
46
|
+
border: none;
|
|
47
|
+
padding: 0;
|
|
48
|
+
margin: 0;
|
|
49
|
+
position: relative;
|
|
50
|
+
.close-icon {
|
|
51
|
+
position: absolute;
|
|
52
|
+
top: 0;
|
|
53
|
+
right: 0;
|
|
54
|
+
z-index: 1;
|
|
55
|
+
background-color: #fff;
|
|
56
|
+
border-radius: 50%;
|
|
57
|
+
border: 1px solid #eee;
|
|
58
|
+
width: 10px;
|
|
59
|
+
height: 10px;
|
|
60
|
+
display: flex;
|
|
61
|
+
align-items: center;
|
|
62
|
+
justify-content: center;
|
|
63
|
+
font-size: 6px;
|
|
64
|
+
color: #969799;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.tag-avatar {
|
|
68
|
+
width: 40px;
|
|
69
|
+
height: 40px;
|
|
70
|
+
img {
|
|
71
|
+
border-radius: 4px;
|
|
72
|
+
border: 1px solid #eee;
|
|
73
|
+
object-fit: contain;
|
|
61
74
|
}
|
|
62
75
|
}
|
|
63
76
|
}
|
|
64
77
|
}
|
|
65
78
|
|
|
79
|
+
.bottom-section {
|
|
80
|
+
border-top: 1px solid #eee;
|
|
81
|
+
background-color: #fff;
|
|
82
|
+
}
|
|
83
|
+
|
|
66
84
|
.van-list {
|
|
67
85
|
flex: 1;
|
|
68
86
|
overflow-y: auto;
|
|
@@ -96,8 +114,15 @@
|
|
|
96
114
|
align-items: center;
|
|
97
115
|
gap: 12px;
|
|
98
116
|
|
|
117
|
+
.org-item-select-icon {
|
|
118
|
+
display: none;
|
|
119
|
+
padding-left: 4px;
|
|
120
|
+
}
|
|
99
121
|
&.selected {
|
|
100
122
|
color: var(--van-primary-color);
|
|
123
|
+
.org-item-select-icon {
|
|
124
|
+
display: inline;
|
|
125
|
+
}
|
|
101
126
|
}
|
|
102
127
|
|
|
103
128
|
.org-avatar {
|
|
@@ -128,7 +153,6 @@
|
|
|
128
153
|
padding: 16px;
|
|
129
154
|
display: flex;
|
|
130
155
|
justify-content: center;
|
|
131
|
-
border-top: 1px solid #eee;
|
|
132
156
|
|
|
133
157
|
.confirm-button {
|
|
134
158
|
background-color: var(--van-primary-color);
|