|
|
@ -112,10 +112,7 @@ |
|
|
|
activeTab == 5 ? 'tab_btn style-btn active_btn' : 'style-btn tab_btn' |
|
|
|
" |
|
|
|
@click="changeTab(5)" |
|
|
|
v-if=" |
|
|
|
userStore.loginUserPermission != 3 && |
|
|
|
operatorStore.disinfectStatus != 1 |
|
|
|
" |
|
|
|
v-if="userStore.loginUserPermission != 3" |
|
|
|
> |
|
|
|
<svg |
|
|
|
xmlns="http://www.w3.org/2000/svg" |
|
|
@ -170,15 +167,17 @@ |
|
|
|
:hideKeyBoard="hideKeyBoard" |
|
|
|
:input="input" |
|
|
|
/> |
|
|
|
<!-- <Progress |
|
|
|
<Progress |
|
|
|
v-if="activeTab == 1 && !showOpertor" |
|
|
|
:changeShowOperator="changeShowOperator" |
|
|
|
/> --> |
|
|
|
<Progress :changeShowOperator="changeShowOperator" /> |
|
|
|
/> |
|
|
|
<LiquidHandle v-if="activeTab == 2" :tabType="1" /> |
|
|
|
<LiquidHandle v-if="activeTab == 3" :tabType="2" /> |
|
|
|
<Test v-if="activeTab == 4" /> |
|
|
|
<Setting v-if="activeTab == 5" /> |
|
|
|
<Setting v-if="activeTab == 5 && operatorStore.disinfectStatus != 1" /> |
|
|
|
<DisinfectionSetting |
|
|
|
v-if="activeTab == 5 && operatorStore.disinfectStatus == 1" |
|
|
|
/> |
|
|
|
<Audit v-if="activeTab == 6" /> |
|
|
|
<div class="other_info"> |
|
|
|
<p class="ip">IP {{ settingStore.deviceIp }}</p> |
|
|
@ -278,6 +277,7 @@ import SimpleKeyboard from 'cpns/SimpleKeyboard' |
|
|
|
import moment from 'moment' |
|
|
|
import Operator from 'cpns/Operator' |
|
|
|
import Audit from 'cpns/Audit' |
|
|
|
import DisinfectionSetting from 'cpns/DisinfectionSetting' |
|
|
|
import Progress from 'cpns/Progress' |
|
|
|
import LiquidHandle from 'cpns/LiquidHandle' |
|
|
|
import Setting from 'cpns/Setting' |
|
|
|