This commit is contained in:
parent
105e38c726
commit
8e69969c0e
|
|
@ -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_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/'
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "vite-electron",
|
"name": "vite-electron",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "1.3.37",
|
"version": "1.3.39",
|
||||||
"main": "dist-electron/main.js",
|
"main": "dist-electron/main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "chcp 65001 && vite",
|
"dev": "chcp 65001 && vite",
|
||||||
|
|
|
||||||
|
|
@ -63,7 +63,8 @@ watch(route, (to) => {
|
||||||
if (to.meta.keepAlive) {
|
if (to.meta.keepAlive) {
|
||||||
includeList.push(to.name);
|
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)) {
|
if (arr.includes(to.path)) {
|
||||||
hideLeftMenu.value = true;
|
hideLeftMenu.value = true;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
|
|
@ -70,6 +70,19 @@
|
||||||
锁屏
|
锁屏
|
||||||
</div>
|
</div>
|
||||||
</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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -113,6 +126,14 @@ function openCallHandle() {
|
||||||
emit('openCall')
|
emit('openCall')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 跳转
|
||||||
|
function to(pathName, data) {
|
||||||
|
router.push({
|
||||||
|
name: pathName,
|
||||||
|
query: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
defineExpose({
|
defineExpose({
|
||||||
show
|
show
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -88,6 +88,11 @@ const routes = [
|
||||||
name: "add_label",
|
name: "add_label",
|
||||||
component: () => import("@/views/device/add_label.vue"),
|
component: () => import("@/views/device/add_label.vue"),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: "/webview",
|
||||||
|
name: "webview",
|
||||||
|
component: () => import("@/views/webview/index.vue"),
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const router = createRouter({
|
const router = createRouter({
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
Loading…
Reference in New Issue