|
@@ -0,0 +1,340 @@
|
|
|
+<template>
|
|
|
+ <u-navbar :titleStyle="{ color: '#000' }" :autoBack="true" :title="pageTitle" :placeholder="true" :safeAreaInsetTop="true" bgColor="#fff">
|
|
|
+ <template #left>
|
|
|
+ <view class="u-navbar__content__left__item">
|
|
|
+ <u-icon name="arrow-left" size="20" color="#000"></u-icon>
|
|
|
+ </view>
|
|
|
+ </template>
|
|
|
+ </u-navbar>
|
|
|
+
|
|
|
+ <oa-scroll
|
|
|
+ customClass="doorSetting-container scroll-height"
|
|
|
+ :isSticky="true"
|
|
|
+ :customStyle="{
|
|
|
+ //#ifdef APP-PLUS || MP-WEIXIN
|
|
|
+ height: `calc(100vh - (44px + ${proxy.$settingStore.StatusBarHeight}))`,
|
|
|
+ //#endif
|
|
|
+ //#ifdef H5
|
|
|
+ height: `calc(100vh - (44px))`,
|
|
|
+ //#endif
|
|
|
+ }"
|
|
|
+ :refresherLoad="false"
|
|
|
+ :refresherEnabled="false"
|
|
|
+ :refresherDefaultStyle="'none'"
|
|
|
+ :refresherBackground="'#f5f6f7'"
|
|
|
+ :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
|
|
|
+ >
|
|
|
+ <template #default>
|
|
|
+ <!-- 顶部区域 -->
|
|
|
+ <view class="top-area">
|
|
|
+ <u-button class="top-area-button" type="primary" @click="controlStore.openDoor({ deviceUuid: deviceUuid }, true)">
|
|
|
+ <view>
|
|
|
+ <u-icon class="top-area-button_icon" name="lock" :size="55" color="white"></u-icon>
|
|
|
+ <view class="top-area-button_title">开启门禁</view>
|
|
|
+ </view>
|
|
|
+ </u-button>
|
|
|
+ </view>
|
|
|
+ <!-- 中心区域 -->
|
|
|
+ <view class="center-area">
|
|
|
+ <view class="center-area-seting">
|
|
|
+ <view class="center-area-seting_title">会客模式</view>
|
|
|
+ <view class="center-area-seting_center">
|
|
|
+ <u-subsection :list="subsection.list" :current="subsection.current" mode="subsection" @change="subsectionChange"></u-subsection>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="center-area-seting">
|
|
|
+ <view class="center-area-seting_title">门禁配置</view>
|
|
|
+ <view class="center-area-seting_center">
|
|
|
+ <view class="center-area-seting_center_item" v-for="(baseListItem, baseListIndex) in baseList" :key="baseListIndex" v-show="baseListItem.status" @click="handle(baseListItem)">
|
|
|
+ <view class="center-area-seting_center_item_title">{{ baseListItem.title }}</view>
|
|
|
+ <view class="center-area-seting_center_item_subTitle">{{ baseListItem.subTitle }}</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </template>
|
|
|
+ </oa-scroll>
|
|
|
+
|
|
|
+ <u-modal
|
|
|
+ :show="modal.show"
|
|
|
+ title=""
|
|
|
+ :cancelText="'取消'"
|
|
|
+ :zoom="false"
|
|
|
+ :showConfirmButton="true"
|
|
|
+ :showCancelButton="true"
|
|
|
+ :closeOnClickOverlay="true"
|
|
|
+ @confirm="modalConfirm()"
|
|
|
+ @cancel="modal.show = false"
|
|
|
+ @close="modal.show = false"
|
|
|
+ >
|
|
|
+ <view class="slot-content">
|
|
|
+ <view class="remark" style="" v-if="modal.type == '标识语'">
|
|
|
+ <u-textarea v-model="modal.form.remark" placeholder="请输入标识语" border="none" maxlength="200" style="padding: 0px" autoHeight></u-textarea>
|
|
|
+ <view class="remark_changeIt" @click="changeIt()">换一换</view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="imgPath" v-if="modal.type == '屏保'">
|
|
|
+ <oa-upload :uploadCount="1" :uploadImage="modal.form.imgPath" @uploadSuccessChange="uploadSuccessChange" @uploadDeleteChange="uploadDeleteChange"></oa-upload>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </u-modal>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup>
|
|
|
+/*----------------------------------依赖引入-----------------------------------*/
|
|
|
+import { onLoad, onShow, onReady, onHide, onLaunch, onUnload, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
|
|
|
+import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
|
|
|
+/*----------------------------------接口引入-----------------------------------*/
|
|
|
+import { doorApi } from "@/api/business/door.js";
|
|
|
+import { aiApi } from "@/api/business/ai.js";
|
|
|
+/*----------------------------------组件引入-----------------------------------*/
|
|
|
+/*----------------------------------store引入-----------------------------------*/
|
|
|
+import { useStores, commonStores, controlStores } from "@/store/modules/index";
|
|
|
+/*----------------------------------公共方法引入-----------------------------------*/
|
|
|
+/*----------------------------------公共变量-----------------------------------*/
|
|
|
+const { proxy } = getCurrentInstance();
|
|
|
+const useStore = useStores();
|
|
|
+const controlStore = controlStores();
|
|
|
+/*----------------------------------变量声明-----------------------------------*/
|
|
|
+const state = reactive({
|
|
|
+ pageTitle: "",
|
|
|
+ deviceUuid: "",
|
|
|
+ baseList: [
|
|
|
+ // {
|
|
|
+ // name: "lock",
|
|
|
+ // title: "授权",
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // name: "star",
|
|
|
+ // title: "开门密码",
|
|
|
+ // },
|
|
|
+ {
|
|
|
+ name: "star",
|
|
|
+ title: "标识语",
|
|
|
+ subTitle: "标识语/标语",
|
|
|
+ status: true,
|
|
|
+ type: "remark",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "star",
|
|
|
+ title: "屏保",
|
|
|
+ subTitle: "屏保/主题互动",
|
|
|
+ status: true,
|
|
|
+ type: "imgPath",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "photo",
|
|
|
+ title: "通行记录",
|
|
|
+ subTitle: "通行记录/人员通行记录",
|
|
|
+ status: true,
|
|
|
+ type: "record",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+
|
|
|
+ subsection: {
|
|
|
+ list: ["办公", "会客", "外出", "勿扰"],
|
|
|
+ current: 0,
|
|
|
+ value: "",
|
|
|
+ },
|
|
|
+ modal: {
|
|
|
+ show: false,
|
|
|
+ type: "",
|
|
|
+ form: {
|
|
|
+ id: "",
|
|
|
+ imgPath: "",
|
|
|
+ remark: "",
|
|
|
+ password: "",
|
|
|
+ openMode: "",
|
|
|
+ },
|
|
|
+ },
|
|
|
+});
|
|
|
+const { pageTitle, deviceUuid, baseList, subsection, modal } = toRefs(state);
|
|
|
+
|
|
|
+function subsectionChange(e) {
|
|
|
+ state.subsection.current = e;
|
|
|
+ state.subsection.value = state.subsection.list[e];
|
|
|
+}
|
|
|
+
|
|
|
+/** 操作按钮事件 */
|
|
|
+function handle(event) {
|
|
|
+ if (event.type === "remark") {
|
|
|
+ state.modal.type = "标识语";
|
|
|
+ state.modal.show = true;
|
|
|
+ } else if (event.type === "imgPath") {
|
|
|
+ state.modal.type = "屏保";
|
|
|
+ state.modal.show = true;
|
|
|
+ } else if (event.type === "record") {
|
|
|
+ proxy.$tab.navigateTo(`/pages/business/door/record/index?deviceName=${state.pageTitle}`);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+/** 确认事件 */
|
|
|
+function modalConfirm() {
|
|
|
+ doorApi()
|
|
|
+ .attachUpdate(state.modal.form)
|
|
|
+ .then((response) => {
|
|
|
+ proxy.$modal.msgSuccess("配置成功");
|
|
|
+ state.modal.show = false;
|
|
|
+ state.modal.type = "";
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ state.modal.show = false;
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+/** 换一换 */
|
|
|
+function changeIt() {
|
|
|
+ aiApi()
|
|
|
+ .changeIt({
|
|
|
+ content: state.pageTitle + "每天一语简洁",
|
|
|
+ })
|
|
|
+ .then((response) => {
|
|
|
+ console.log(response);
|
|
|
+ const data = response.data;
|
|
|
+ state.modal.form.remark = "";
|
|
|
+ state.modal.form.remark = data.reasoningContent;
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * @图片上传成功回调
|
|
|
+ */
|
|
|
+function uploadSuccessChange(e) {
|
|
|
+ state.modal.form.imgPath = e.url;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * @图片删除回调
|
|
|
+ */
|
|
|
+function uploadDeleteChange(e) {
|
|
|
+ state.modal.form.imgPath = "";
|
|
|
+}
|
|
|
+
|
|
|
+onReady(() => {});
|
|
|
+
|
|
|
+onShow(() => {});
|
|
|
+
|
|
|
+onLoad((options) => {
|
|
|
+ if ("pagesTitle" in options) {
|
|
|
+ state.pageTitle = options.pagesTitle;
|
|
|
+ }
|
|
|
+ if ("id" in options) {
|
|
|
+ state.modal.form.id = options.id;
|
|
|
+
|
|
|
+ doorApi()
|
|
|
+ .Select({
|
|
|
+ id: options.id,
|
|
|
+ current: 1, //页数
|
|
|
+ size: 20000000, //条数
|
|
|
+ })
|
|
|
+ .then((response) => {
|
|
|
+ const records = response.data.records[0];
|
|
|
+ state.modal.form.id = records.id;
|
|
|
+ state.modal.form.imgPath = records.imgPath;
|
|
|
+ state.modal.form.openMode = records.openMode;
|
|
|
+ state.modal.form.remark = records.remark;
|
|
|
+ state.modal.form.password = records.password;
|
|
|
+
|
|
|
+ state.deviceUuid = records.deviceUuid;
|
|
|
+ })
|
|
|
+ .catch((err) => {});
|
|
|
+ }
|
|
|
+});
|
|
|
+
|
|
|
+onUnload(() => {});
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped lang="scss">
|
|
|
+.doorSetting-container {
|
|
|
+ background-color: #fff;
|
|
|
+
|
|
|
+ .top-area {
|
|
|
+ &-button {
|
|
|
+ width: 180px;
|
|
|
+ height: 180px;
|
|
|
+ border-radius: 50%;
|
|
|
+ margin: 50px auto;
|
|
|
+
|
|
|
+ &_icon {
|
|
|
+ justify-content: center;
|
|
|
+ margin-bottom: 5px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &_title {
|
|
|
+ font-size: 16px !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .center-area {
|
|
|
+ padding: 20px;
|
|
|
+
|
|
|
+ &-seting {
|
|
|
+ &_title {
|
|
|
+ color: #999999;
|
|
|
+ font-size: 15px;
|
|
|
+ // font-weight: 600;
|
|
|
+ margin: 20px 0 15px 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ &_center {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+
|
|
|
+ &_item {
|
|
|
+ width: calc(50% - 10px);
|
|
|
+ padding: 15px;
|
|
|
+ margin-bottom: 15px;
|
|
|
+ border-radius: 10px;
|
|
|
+ box-shadow: 0px 0px 10px rgba(60, 156, 255, 0.1);
|
|
|
+
|
|
|
+ &_title {
|
|
|
+ font-size: 14px;
|
|
|
+ margin-bottom: 5px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &_subTitle {
|
|
|
+ font-size: 12px;
|
|
|
+ color: #999999;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ &_item:nth-child(odd) {
|
|
|
+ margin-right: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &_item:nth-child(2n) {
|
|
|
+ margin-left: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+:deep() {
|
|
|
+ .u-modal {
|
|
|
+ &__content {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ .slot-content {
|
|
|
+ width: 100%;
|
|
|
+
|
|
|
+ .remark {
|
|
|
+ position: relative;
|
|
|
+
|
|
|
+ &_changeIt {
|
|
|
+ position: absolute;
|
|
|
+ right: 0;
|
|
|
+ z-index: 5;
|
|
|
+ color: #2979ff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .oa-upload {
|
|
|
+ justify-content: center;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|