This commit is contained in:
gyq 2024-07-05 18:08:21 +08:00
parent 105e38c726
commit 8e69969c0e
6 changed files with 92 additions and 4 deletions

View File

@ -11,7 +11,7 @@ VITE_API_WSS = 'wss://cashier.sxczgkj.cn/client'
VITE_API_PHP_URL = 'http://192.168.2.33:1666/index.php/api'
# 测试
VITE_API_URL = 'https://cashier-client.sxczgkj.cn/cashier-client'
# VITE_API_URL = 'https://cashier-client.sxczgkj.cn/cashier-client'
# 线上环境接口地址
# VITE_API_URL = 'https://cashierclient.sxczgkj.cn/cashier-client/'
VITE_API_URL = 'https://cashierclient.sxczgkj.cn/cashier-client/'

View File

@ -1,7 +1,7 @@
{
"name": "vite-electron",
"private": true,
"version": "1.3.37",
"version": "1.3.39",
"main": "dist-electron/main.js",
"scripts": {
"dev": "chcp 65001 && vite",

View File

@ -63,7 +63,8 @@ watch(route, (to) => {
if (to.meta.keepAlive) {
includeList.push(to.name);
}
let arr = ["/login", "/device_list", "/add_device", "/add_label"];
//
let arr = ["/login", "/device_list", "/add_device", "/add_label", '/webview'];
if (arr.includes(to.path)) {
hideLeftMenu.value = true;
} else {

View File

@ -70,6 +70,19 @@
锁屏
</div>
</div>
<!-- <div class="drawerbox_bo_box_itembox" @click="to('webview', {
url: 'https://cashiernewadmin.sxczgkj.cn/',
title: '后台管理'
})">
<div class="drawerbox_bo_box_icon">
<el-icon size="40">
<Monitor />
</el-icon>
</div>
<div class="drawerbox_bo_box_icontext">
后台管理
</div>
</div> -->
</div>
</div>
</div>
@ -113,6 +126,14 @@ function openCallHandle() {
emit('openCall')
}
//
function to(pathName, data) {
router.push({
name: pathName,
query: data
})
}
defineExpose({
show
})

View File

@ -88,6 +88,11 @@ const routes = [
name: "add_label",
component: () => import("@/views/device/add_label.vue"),
},
{
path: "/webview",
name: "webview",
component: () => import("@/views/webview/index.vue"),
},
];
const router = createRouter({

View File

@ -0,0 +1,61 @@
<template>
<div class="device_container">
<div class="header" @click="router.back()">
<el-icon style="position: relative; top: 2px; margin-right: 4px" size="22">
<ArrowLeft />
</el-icon>
<el-text>{{ info.title }}</el-text>
</div>
<div class="d_content">
<iframe class="iframe" seamless :src="info.url"></iframe>
</div>
</div>
</template>
<script setup>
import { onMounted, reactive, ref } from 'vue';
import { useRoute, useRouter } from 'vue-router'
const route = useRoute()
const router = useRouter()
const info = ref({
title: '',
url: ''
})
onMounted(() => {
console.log('iframe===', route);
info.value = route.query
})
</script>
<style scoped lang="scss">
.device_container {
width: 100vw;
height: 100vh;
padding: 15px;
background-color: #f1f1f1;
}
.header {
height: 50px;
background-color: #fff;
border-radius: 10px;
display: flex;
align-items: center;
padding: 0 10px;
}
.d_content {
padding-top: 15px;
display: flex;
height: calc(100vh - 15px * 2 - 50px);
.iframe {
width: 100%;
height: 100%;
border: none;
border-radius: 10px;
}
}
</style>