mirror of
https://github.com/kuaifan/dootask.git
synced 2026-01-04 10:58:18 +00:00
feat:扫一扫按钮显示优化
This commit is contained in:
parent
f23ece5e9e
commit
304b22b1c1
@ -98,12 +98,12 @@
|
|||||||
<div class="ivu-modal-wrap-apply">
|
<div class="ivu-modal-wrap-apply">
|
||||||
<div class="ivu-modal-wrap-apply-title">
|
<div class="ivu-modal-wrap-apply-title">
|
||||||
{{ $L('签到管理') }}
|
{{ $L('签到管理') }}
|
||||||
<p @click="signType = signType == 1 ? 2 : 1" v-if="userIsAdmin">
|
<p @click="signInType = signInType == 1 ? 2 : 1" v-if="userIsAdmin">
|
||||||
{{ signType == 1 ? $L('系统设置') : $L('返回') }}
|
{{ signInType == 1 ? $L('系统设置') : $L('返回') }}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="ivu-modal-wrap-apply-body">
|
<div class="ivu-modal-wrap-apply-body">
|
||||||
<Checkin v-if="signType == 1" />
|
<Checkin v-if="signInType == 1" />
|
||||||
<SystemCheckin v-else />
|
<SystemCheckin v-else />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -259,7 +259,7 @@ export default {
|
|||||||
aibotDialogSearchLoad: "",
|
aibotDialogSearchLoad: "",
|
||||||
//
|
//
|
||||||
signInShow: false,
|
signInShow: false,
|
||||||
signType: 1,
|
signInType: 1,
|
||||||
//
|
//
|
||||||
meetingShow: false,
|
meetingShow: false,
|
||||||
meetingType: 1,
|
meetingType: 1,
|
||||||
@ -308,7 +308,11 @@ export default {
|
|||||||
{ value: "meeting", label: "会议" }
|
{ value: "meeting", label: "会议" }
|
||||||
];
|
];
|
||||||
// wap模式
|
// wap模式
|
||||||
let appApplyList = this.windowOrientation != 'portrait' ? [] : [
|
let appApplyList = this.windowOrientation != 'portrait' ? (
|
||||||
|
$A.isEEUiApp ? [
|
||||||
|
{ value: "scan", label: "扫一扫" }
|
||||||
|
] : []
|
||||||
|
) : [
|
||||||
{ value: "calendar", label: "日历" },
|
{ value: "calendar", label: "日历" },
|
||||||
{ value: "file", label: "文件" },
|
{ value: "file", label: "文件" },
|
||||||
{ value: "addProject", label: "创建项目" },
|
{ value: "addProject", label: "创建项目" },
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
<div class="calendar-head">
|
<div class="calendar-head">
|
||||||
<div class="calendar-titbox">
|
<div class="calendar-titbox">
|
||||||
<div class="calendar-title">
|
<div class="calendar-title">
|
||||||
<div class="common-nav-back portrait" @click="goBack()"><i class="taskfont"></i></div>
|
<div class="common-nav-back portrait" @click="goForward({name: 'manage-application'},true)"><i class="taskfont"></i></div>
|
||||||
<h1>{{rangeText}}</h1>
|
<h1>{{rangeText}}</h1>
|
||||||
</div>
|
</div>
|
||||||
<ButtonGroup class="calendar-arrow" size="small">
|
<ButtonGroup class="calendar-arrow" size="small">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user