diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/custompage.js b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/custompage.js
index 786db8dc0..59f6cca30 100644
--- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/custompage.js
+++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/custompage.js
@@ -312,7 +312,8 @@ export default {
MobileOrPhoneOrNull: t => t.length <= 0 || /^1[0-9]{10}$/.test(t) || /^[+0-9- ]*$/.test(t) ||
'须留空或符合手机/电话号码格式',
Uri: t => /^[a-zA-z]+:\/\/[^\s]*$/.test(t) || '须符合网址Url格式',
- UriOrNull: t => t.length <= 0 || /^[a-zA-z]+:\/\/[^\s]*$/.test(t) || '须留空或符合网址Url格式'
+ UriOrNull: t => t.length <= 0 || /^[a-zA-z]+:\/\/[^\s]*$/.test(t) || '须留空或符合网址Url格式',
+ TrueOrFalse:t => t===true || t===false || '不能为空',
}
}
}
diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages.json b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages.json
index ee3d4255d..84fcafd67 100644
--- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages.json
+++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages.json
@@ -1079,6 +1079,24 @@
}
}
+ // 学员通讯录
+ ,{
+ "path" : "pages/EducationalAdministration/AddressBook/list",
+ "style" :
+ {
+ "navigationBarTitleText": "学员通讯录",
+ "enablePullDownRefresh": false
+ }
+
+ }
+ ,{
+ "path" : "pages/EducationalAdministration/AddressBook/single",
+ "style" :
+ {
+ "navigationBarTitleText": "学员通讯录",
+ "enablePullDownRefresh": false
+ }
+ }
],
// 全局样式
diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/AddressBook/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/AddressBook/list.vue
new file mode 100644
index 000000000..e3ec36477
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/AddressBook/list.vue
@@ -0,0 +1,303 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 姓名:
+ {{ displayListItem(item, 'AName') }}
+
+
+
+
+
+ 手机:
+ {{ displayListItem(item, 'AMobile') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 重置查询条件
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/AddressBook/single.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/AddressBook/single.vue
new file mode 100644
index 000000000..c6f38d04f
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/AddressBook/single.vue
@@ -0,0 +1,208 @@
+
+
+
+
+
+
+
+
+
+
+ 提交保存
+
+
+ 编辑本页
+
+
+ 取消编辑
+
+
+ 删除
+
+
+
+
+
+
+
\ No newline at end of file