Skip to content

Commit a8c5d55

Browse files
committed
perf: 扫码弹窗独立组件
1 parent cb65d15 commit a8c5d55

File tree

2 files changed

+11
-21
lines changed

2 files changed

+11
-21
lines changed

src/views/home/components/qrcode-modal.vue

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
<template>
22
<n-modal
33
style="width: 300px;height: 300px"
4-
v-model:show = "state.showQrCodeModal"
4+
:show = "showQrCodeModal"
55
preset="dialog"
66
:show-icon="false"
77
:title="'墨滴第三方平台扫码登录'"
88
>
99
<div class="modal-center">
10-
<img :src="state.qrCodeUrl" style="width: 200px; height: 200px;" />
10+
<img :src="qrCodeUrl" style="width: 200px; height: 200px;" />
1111
<div style="margin-top: 10px;">本二维码由墨滴平台生成</div>
1212
</div>
1313
</n-modal>
1414
</template>
1515
<script setup lang="ts">
16-
import { reactive } from 'vue';
17-
const state = reactive({
18-
showQrCodeModal: false,
19-
qrCodeUrl: ""
16+
17+
defineProps({
18+
showQrCodeModal: Boolean,
19+
qrCodeUrl: String
2020
})
2121
</script>
2222
<style scoped>

src/views/home/index.vue

+5-15
Original file line numberDiff line numberDiff line change
@@ -92,19 +92,6 @@
9292
</n-card>
9393
</n-modal>
9494

95-
<n-modal
96-
style="width: 300px;height: 300px"
97-
v-model:show = "state.showQrCodeModal"
98-
preset="dialog"
99-
:show-icon="false"
100-
:title="'墨滴第三方平台扫码登录'"
101-
>
102-
<div class="modal-center">
103-
<img :src="state.qrCodeUrl" style="width: 200px; height: 200px;" />
104-
<div style="margin-top: 10px;">本二维码由墨滴平台生成</div>
105-
</div>
106-
</n-modal>
107-
10895
<n-drawer v-model:show="active" :width="502" :placement="'right'">
10996
<n-drawer-content title="系统设置">
11097
<n-collapse>
@@ -126,6 +113,10 @@
126113

127114
<!-----时间区间图片弹窗选择----->
128115
<ImageListModal ref="imageListModal" :target="target" v-model:showImageModal = "state.showImageModal" :videoData="state.currentVideoData" :everyStartTime = "state.everyStartTime" :everyEndTime = "state.everyEndTime" />
116+
117+
<!-----墨滴平台扫码确认身份------>
118+
<QrcodeModal v-model:showQrCodeModal = "state.showQrCodeModal" :qrCodeUrl="state.qrCodeUrl" />
119+
129120
<context-menu
130121
v-model:show="state.showMenu"
131122
:options="state.menuOptions"
@@ -159,6 +150,7 @@ export default defineComponent({
159150
} from '@vicons/ionicons5'
160151
import PromptModal from "./components/prompt-modal.vue"
161152
import ImageListModal from "./components/imagelist-modal.vue"
153+
import QrcodeModal from "./components/qrcode-modal.vue"
162154
import { get, all, run } from '../../sqlite3';
163155
import { GoogleGenerativeAI } from "@google/generative-ai"
164156
import { useStorage } from "@vueuse/core";
@@ -206,8 +198,6 @@ export default defineComponent({
206198
}
207199
})
208200
209-
210-
211201
const testApi = async() => {
212202
const code = "gemini"
213203
const geminiInfo: any = await get(`select apiKey from OpenAPI where code = ?`, code)

0 commit comments

Comments
 (0)