index.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <template>
  2. <web-view v-show="!controlStore.modal.show" ref="faceView" id="faceView" class="faceView" src="/static/face/door.html" bindmessage="receiveMessage" :webview-styles="webviewStyles" @message="onMessage">
  3. </web-view>
  4. <u-modal
  5. :show="controlStore.modal.show"
  6. title=""
  7. cancelText="退出应用"
  8. confirmText="确认"
  9. :zoom="false"
  10. :showConfirmButton="true"
  11. :showCancelButton="true"
  12. :closeOnClickOverlay="true"
  13. @confirm="controlStore.modalConfirm()"
  14. @cancel="controlStore.modalCancel()"
  15. @close="controlStore.modalClose()"
  16. >
  17. <view class="slot-content">
  18. <u-subsection class="mb20" :list="controlStore.subsection.list" :current="controlStore.subsection.value" @change="controlStore.sectionChange"></u-subsection>
  19. <view v-if="controlStore.subsection.value == 0">
  20. <view class="mb10 required">服务器地址</view>
  21. <view class="mb20">
  22. <u-input v-model="controlStore.form.linkUrl" placeholder="服务器地址(必填)" border="bottom" style="padding: 6px 0px" />
  23. </view>
  24. <view class="mb10">服务器端口</view>
  25. <view class="mb20">
  26. <u-input v-model="controlStore.form.port" placeholder="服务器端口(非必填)" border="bottom" style="padding: 6px 0px" />
  27. </view>
  28. </view>
  29. <view v-if="controlStore.subsection.value == 1">
  30. <view class="mb10">绑定门禁</view>
  31. <view>
  32. <u-input
  33. v-model="controlStore.form.doorName"
  34. placeholder="门禁(必选)"
  35. suffixIcon="arrow-right"
  36. suffixIconStyle="color: #909399"
  37. border="none"
  38. disabledColor="transparent"
  39. disabled
  40. @click="controlStore.handlePicker('绑定门禁')"
  41. />
  42. </view>
  43. </view>
  44. </view>
  45. </u-modal>
  46. <u-picker
  47. :show="controlStore.picker.show"
  48. :columns="controlStore.picker.list"
  49. :title="'请选择' + controlStore.picker.title"
  50. keyName="name"
  51. visibleItemCount="6"
  52. :defaultIndex="[controlStore.picker.defaultIndex]"
  53. :closeOnClickOverlay="true"
  54. @close="controlStore.picker.show = false"
  55. @cancel="controlStore.picker.show = false"
  56. @confirm="controlStore.pickerConfirm"
  57. ></u-picker>
  58. </template>
  59. <script setup>
  60. /*----------------------------------依赖引入-----------------------------------*/
  61. import { onLoad, onShow, onReady, onHide, onLaunch, onUnload, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
  62. import { ref, reactive, computed, getCurrentInstance, toRefs, inject, nextTick, watch } from "vue";
  63. /*----------------------------------接口引入-----------------------------------*/
  64. /*----------------------------------组件引入-----------------------------------*/
  65. /*----------------------------------store引入-----------------------------------*/
  66. import { controlStores } from "@/store/modules/index";
  67. /*----------------------------------公共方法引入-----------------------------------*/
  68. const controlStore = controlStores();
  69. /*----------------------------------公共变量-----------------------------------*/
  70. const state = reactive({
  71. webviewStyles: {
  72. width: "100%",
  73. height: "100%",
  74. },
  75. });
  76. const { webviewStyles } = toRefs(state);
  77. // 初始化
  78. function init() {
  79. controlStore.pageFunction = ["门禁"];
  80. controlStore.initCamera();
  81. controlStore.initNfc();
  82. controlStore.initData();
  83. controlStore.handleChildren({
  84. funcName: "初始化数据",
  85. data: JSON.stringify(controlStore.form),
  86. });
  87. }
  88. /**
  89. * @接收子页面传过来的值
  90. */
  91. function onMessage(e) {
  92. controlStore.analysisData(e.detail.data[0]);
  93. }
  94. // #ifdef H5
  95. window.onmessage = function (event) {
  96. controlStore.analysisData(event.data);
  97. };
  98. // #endif
  99. onLoad((options) => {
  100. setTimeout(() => {
  101. init();
  102. }, 500);
  103. });
  104. onShow(() => {});
  105. onUnload(() => {});
  106. </script>
  107. <style>
  108. .faceView {
  109. width: 100% !important;
  110. height: 100% !important;
  111. }
  112. iframe {
  113. width: 100% !important;
  114. height: 100% !important;
  115. border-width: 0;
  116. }
  117. </style>
  118. <style lang="scss" scoped>
  119. :deep() {
  120. .u-modal {
  121. width: 20rem !important;
  122. &__title {
  123. font-size: 18px !important;
  124. }
  125. .slot-content {
  126. font-size: 16px;
  127. width: 100%;
  128. }
  129. }
  130. }
  131. </style>