|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<web-view
|
|
|
- v-show="!controlStore.modal.show"
|
|
|
+ v-show="!controlStore.popup.show"
|
|
|
ref="faceView"
|
|
|
id="faceView"
|
|
|
class="faceView"
|
|
@@ -11,85 +11,9 @@
|
|
|
>
|
|
|
</web-view>
|
|
|
|
|
|
- <u-modal
|
|
|
- :show="controlStore.modal.show"
|
|
|
- title=""
|
|
|
- cancelText="退出应用"
|
|
|
- confirmText="确认"
|
|
|
- :zoom="false"
|
|
|
- :showConfirmButton="true"
|
|
|
- :showCancelButton="true"
|
|
|
- :closeOnClickOverlay="true"
|
|
|
- @confirm="controlStore.modalConfirm()"
|
|
|
- @cancel="controlStore.modalCancel()"
|
|
|
- @close="controlStore.modalClose()"
|
|
|
- >
|
|
|
- <view class="slot-content">
|
|
|
- <u-subsection class="mb20" :list="controlStore.subsection.list" :current="controlStore.subsection.value" @change="controlStore.sectionChange"></u-subsection>
|
|
|
-
|
|
|
- <view v-if="controlStore.subsection.value == 0">
|
|
|
- <view class="mb10 required">服务器地址</view>
|
|
|
- <view class="mb20">
|
|
|
- <u-input v-model="controlStore.form.linkUrl" placeholder="服务器地址(必填)" border="bottom" style="padding: 6px 0px" />
|
|
|
- </view>
|
|
|
-
|
|
|
- <view class="mb10">服务器端口</view>
|
|
|
- <view class="mb20">
|
|
|
- <u-input v-model="controlStore.form.port" placeholder="服务器端口(非必填)" border="bottom" style="padding: 6px 0px" />
|
|
|
- </view>
|
|
|
- </view>
|
|
|
-
|
|
|
- <view v-if="controlStore.subsection.value == 1">
|
|
|
- <view class="mb10">绑定门禁</view>
|
|
|
- <view>
|
|
|
- <u-input
|
|
|
- v-model="controlStore.form.doorList.name"
|
|
|
- placeholder="门禁(必选)"
|
|
|
- suffixIcon="arrow-right"
|
|
|
- suffixIconStyle="color: #909399"
|
|
|
- border="none"
|
|
|
- disabledColor="transparent"
|
|
|
- disabled
|
|
|
- @click="controlStore.handlePicker('绑定门禁')"
|
|
|
- />
|
|
|
- </view>
|
|
|
- </view>
|
|
|
-
|
|
|
- <u-cell-group v-if="controlStore.subsection.value == 2">
|
|
|
- <!-- <u-cell title="导航栏显示">
|
|
|
- <template #value>
|
|
|
- <u-switch v-model="setting.navBarNew" size="15" @change="navBarNewChange"></u-switch>
|
|
|
- </template>
|
|
|
- </u-cell> -->
|
|
|
- <u-cell title="软件版本号" :value="version"></u-cell>
|
|
|
- <!-- <u-cell title="设备型号" :value="getAndroidModle()"></u-cell>
|
|
|
- <u-cell title="设备序列号" :value="getSerialno()"></u-cell> -->
|
|
|
- <u-cell title="检查更新" @click="handleToUpgrade()">
|
|
|
- <template #value> <view class="iconfont oaIcon-jianchagengxin menu-item-icon mr2" style="color: #2979ff"></view> </template>
|
|
|
- </u-cell>
|
|
|
- <!-- <u-cell title="设备重启" @click="rebootNow()">
|
|
|
- <template #value> <u-icon name="reload" color="#2979ff" size="20"></u-icon> </template>
|
|
|
- </u-cell> -->
|
|
|
- </u-cell-group>
|
|
|
- </view>
|
|
|
- </u-modal>
|
|
|
-
|
|
|
- <u-picker
|
|
|
- :show="controlStore.picker.show"
|
|
|
- :columns="controlStore.picker.list"
|
|
|
- :title="'请选择' + controlStore.picker.title"
|
|
|
- keyName="name"
|
|
|
- visibleItemCount="6"
|
|
|
- :defaultIndex="[controlStore.picker.defaultIndex]"
|
|
|
- :closeOnClickOverlay="true"
|
|
|
- @close="controlStore.picker.show = false"
|
|
|
- @cancel="controlStore.picker.show = false"
|
|
|
- @confirm="controlStore.pickerConfirm"
|
|
|
- ></u-picker>
|
|
|
-
|
|
|
- <!-- <u-popup :show="popup.show" @close="popupClose" @open="popupOpen" bgColor="#474747" :zIndex="10074">
|
|
|
- <oaPassBody :show="popup.show"></oaPassBody>
|
|
|
- </u-popup> -->
|
|
|
+ <u-popup :show="controlStore.popup.show" bgColor="#474747" :zIndex="10074">
|
|
|
+ <oaPassBody :show="controlStore.popup.show" @change="change" @close="close"></oaPassBody>
|
|
|
+ </u-popup>
|
|
|
</template>
|
|
|
<script setup>
|
|
|
/*----------------------------------依赖引入-----------------------------------*/
|
|
@@ -97,7 +21,6 @@ import config from "@/config";
|
|
|
import { onLoad, onShow, onReady, onHide, onLaunch, onUnload, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
|
|
|
import { ref, reactive, computed, getCurrentInstance, toRefs, inject, nextTick, watch } from "vue";
|
|
|
/*----------------------------------接口引入-----------------------------------*/
|
|
|
-import { doorApi } from "@/api/business/door.js";
|
|
|
/*----------------------------------组件引入-----------------------------------*/
|
|
|
import oaPassBody from "@/components/oa-passBody/index";
|
|
|
/*----------------------------------store引入-----------------------------------*/
|
|
@@ -114,52 +37,37 @@ const state = reactive({
|
|
|
width: "100%",
|
|
|
height: "100%",
|
|
|
},
|
|
|
- inter: {
|
|
|
- doorDom: null,
|
|
|
- },
|
|
|
- popup: {
|
|
|
- show: false,
|
|
|
- },
|
|
|
});
|
|
|
-const { version, webviewStyles, popup } = toRefs(state);
|
|
|
+const { version, webviewStyles } = toRefs(state);
|
|
|
|
|
|
// 初始化
|
|
|
function init() {
|
|
|
- controlStore.pageFunction = ["门禁"];
|
|
|
controlStore.initCamera();
|
|
|
- controlStore.initNfc();
|
|
|
+ // controlStore.initNfc();
|
|
|
controlStore.initData();
|
|
|
controlStore.initHandle();
|
|
|
|
|
|
- if (!state.inter.doorDom) {
|
|
|
- getDoorList();
|
|
|
- state.inter.doorDom = setInterval(() => {
|
|
|
- getDoorList();
|
|
|
+ if (!controlStore.inter.doorDom) {
|
|
|
+ controlStore.getDoorList("updateData");
|
|
|
+ controlStore.inter.doorDom = setInterval(() => {
|
|
|
+ controlStore.getDoorList("updateData");
|
|
|
}, 1000 * 3);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-function popupOpen() {}
|
|
|
-
|
|
|
-function popupClose() {}
|
|
|
+function close(event) {
|
|
|
+ controlStore.popup.show = event;
|
|
|
+}
|
|
|
|
|
|
-function getDoorList() {
|
|
|
- if (controlStore.form.domain) {
|
|
|
- doorApi()
|
|
|
- .Select({
|
|
|
- current: 1, //页数
|
|
|
- size: 2000, //条数
|
|
|
- domain: controlStore.form.domain, //域名
|
|
|
- deviceName: controlStore.form.doorList.name,
|
|
|
- })
|
|
|
- .then((requset) => {
|
|
|
- if (requset.data.records.length > 0) {
|
|
|
- controlStore.handleChildren({
|
|
|
- funcName: "初始化数据",
|
|
|
- data: JSON.stringify(requset.data.records[0]),
|
|
|
- });
|
|
|
- }
|
|
|
- });
|
|
|
+function change(event) {
|
|
|
+ if (event == "628628") {
|
|
|
+ controlStore.popup.show = false;
|
|
|
+ controlStore.analysisData({
|
|
|
+ funcName: "点击开门",
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ controlStore.popup.show = false;
|
|
|
+ proxy.$modal.msg("密码错误");
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -175,52 +83,16 @@ window.onmessage = function (event) {
|
|
|
};
|
|
|
// #endif
|
|
|
|
|
|
-/**
|
|
|
- * @检查更新
|
|
|
- */
|
|
|
-function handleToUpgrade() {
|
|
|
- proxy.$settingStore.handleToUpgrade({
|
|
|
- success: (res) => {
|
|
|
- proxy.$refs["oaUpgradeRef"].openUpgrade({
|
|
|
- modalArray: res.data,
|
|
|
- });
|
|
|
- },
|
|
|
- });
|
|
|
-}
|
|
|
-
|
|
|
-onLoad((options) => {
|
|
|
+onLoad((options) => {});
|
|
|
+
|
|
|
+onShow(() => {
|
|
|
setTimeout(() => {
|
|
|
init();
|
|
|
}, 500);
|
|
|
-
|
|
|
- //#ifdef APP-PLUS
|
|
|
- // const myActivityClass = plus.android.importClass("com.example.serialPort.UniSerialPort"); // 替换为你的包名和Activity名
|
|
|
- // const myActivity = new myActivityClass(); // 创建插件类的实例
|
|
|
-
|
|
|
- // console.log(myActivity);
|
|
|
-
|
|
|
- // myActivity.test();
|
|
|
-
|
|
|
- // myActivity.open((res) => {
|
|
|
- // console.log("open", res);
|
|
|
- // });
|
|
|
-
|
|
|
- // myActivity.onMessage((res) => {
|
|
|
- // console.log(res);
|
|
|
- // });
|
|
|
-
|
|
|
- // myActivity.getAllDeviceList((res) => {
|
|
|
- // console.log("getAllDeviceList", res);
|
|
|
- // });
|
|
|
-
|
|
|
- // console.log(myActivity.isOpen());
|
|
|
- //#endif
|
|
|
});
|
|
|
|
|
|
-onShow(() => {});
|
|
|
-
|
|
|
onUnload(() => {
|
|
|
- clearInterval(state.inter.doorDom); //销毁之前定时器
|
|
|
+ clearInterval(controlStore.inter.doorDom); //销毁之前定时器
|
|
|
});
|
|
|
</script>
|
|
|
<style>
|