diff --git a/resources/assets/js/pages/manage/application.vue b/resources/assets/js/pages/manage/application.vue
index 08eedabf0..e47c8ba45 100644
--- a/resources/assets/js/pages/manage/application.vue
+++ b/resources/assets/js/pages/manage/application.vue
@@ -98,12 +98,12 @@
{{ $L('签到管理') }}
-
- {{ signType == 1 ? $L('系统设置') : $L('返回') }}
+
+ {{ signInType == 1 ? $L('系统设置') : $L('返回') }}
-
+
@@ -259,7 +259,7 @@ export default {
aibotDialogSearchLoad: "",
//
signInShow: false,
- signType: 1,
+ signInType: 1,
//
meetingShow: false,
meetingType: 1,
@@ -308,7 +308,11 @@ export default {
{ value: "meeting", label: "会议" }
];
// wap模式
- let appApplyList = this.windowOrientation != 'portrait' ? [] : [
+ let appApplyList = this.windowOrientation != 'portrait' ? (
+ $A.isEEUiApp ? [
+ { value: "scan", label: "扫一扫" }
+ ] : []
+ ) : [
{ value: "calendar", label: "日历" },
{ value: "file", label: "文件" },
{ value: "addProject", label: "创建项目" },
diff --git a/resources/assets/js/pages/manage/calendar.vue b/resources/assets/js/pages/manage/calendar.vue
index 5cb6533e4..b0c2ba2b7 100644
--- a/resources/assets/js/pages/manage/calendar.vue
+++ b/resources/assets/js/pages/manage/calendar.vue
@@ -4,7 +4,7 @@