|
92 | 92 | </n-card>
|
93 | 93 | </n-modal>
|
94 | 94 |
|
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 |
| - |
108 | 95 | <n-drawer v-model:show="active" :width="502" :placement="'right'">
|
109 | 96 | <n-drawer-content title="系统设置">
|
110 | 97 | <n-collapse>
|
|
126 | 113 |
|
127 | 114 | <!-----时间区间图片弹窗选择----->
|
128 | 115 | <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 | + |
129 | 120 | <context-menu
|
130 | 121 | v-model:show="state.showMenu"
|
131 | 122 | :options="state.menuOptions"
|
@@ -159,6 +150,7 @@ export default defineComponent({
|
159 | 150 | } from '@vicons/ionicons5'
|
160 | 151 | import PromptModal from "./components/prompt-modal.vue"
|
161 | 152 | import ImageListModal from "./components/imagelist-modal.vue"
|
| 153 | + import QrcodeModal from "./components/qrcode-modal.vue" |
162 | 154 | import { get, all, run } from '../../sqlite3';
|
163 | 155 | import { GoogleGenerativeAI } from "@google/generative-ai"
|
164 | 156 | import { useStorage } from "@vueuse/core";
|
@@ -206,8 +198,6 @@ export default defineComponent({
|
206 | 198 | }
|
207 | 199 | })
|
208 | 200 |
|
209 |
| -
|
210 |
| -
|
211 | 201 | const testApi = async() => {
|
212 | 202 | const code = "gemini"
|
213 | 203 | const geminiInfo: any = await get(`select apiKey from OpenAPI where code = ?`, code)
|
|
0 commit comments