diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/common/select-organize-multiple.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/common/select-organize-multiple.vue
new file mode 100644
index 000000000..c19ec196c
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/common/select-organize-multiple.vue
@@ -0,0 +1,157 @@
+
+
+
+
+
+
+
+
+
+ 已选择:{{names||'暂无'}}
+
+
+
+ 清空选择
+
+
+ 确定选择
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/common/select-organize.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/common/select-organize.vue
index bd970a166..1a17d9121 100644
--- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/common/select-organize.vue
+++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/common/select-organize.vue
@@ -19,7 +19,7 @@ export default {
type: null,
contactList: [],
searchText: '',
- placeholder: '搜索公司名/部门名/职员姓名',
+ placeholder: '搜索学校名/部门名/职员姓名',
root: { type: 'company', id: '0' }
}
},
@@ -41,8 +41,8 @@ export default {
async init(type, rootId, rootType) {
this.placeholder = {
user: '搜索职员姓名',
- department: '搜索公司名/部门名',
- company: '搜索公司名/部门名/职员姓名'
+ department: '搜索学校名/部门名',
+ company: '搜索学校名/部门名/职员姓名'
}[type]
if (rootId && rootId !== 'undefined' && rootId !== 'null') {
@@ -50,7 +50,7 @@ export default {
}
this.type = type || 'user'
- const selectType = { user: '职员', department: '部门', company: '公司' }[type]
+ const selectType = { user: '职员', department: '部门', company: '学校' }[type]
this.SET_TITLE(`请选择一个${selectType}`)
},