This commit is contained in:
hzz 2024-10-09 08:50:33 +08:00
parent 4ddc4d76a3
commit aa7caccffd
8 changed files with 22 additions and 6 deletions

View File

@ -1,5 +1,5 @@
# 页面标题 # 页面标题
VITE_APP_TITLE = 物联管理系统 VITE_APP_TITLE = 物联大屏管理系统
# 开发环境配置 # 开发环境配置
VITE_APP_ENV = 'development' VITE_APP_ENV = 'development'

View File

@ -1,5 +1,5 @@
# 页面标题 # 页面标题
VITE_APP_TITLE = 物联管理系统 VITE_APP_TITLE = 物联大屏管理系统
# 生产环境配置 # 生产环境配置
VITE_APP_ENV = 'production' VITE_APP_ENV = 'production'

View File

@ -7,7 +7,7 @@
<meta name="renderer" content="webkit"> <meta name="renderer" content="webkit">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="icon" href="/favicon.ico"> <link rel="icon" href="/favicon.ico">
<title>物联管理系统</title> <title>物联大屏管理系统</title>
<!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]--> <!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
<style> <style>
html, html,

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -14,7 +14,7 @@
<el-input v-model="prop.form.url" placeholder="网页路径" /> <el-input v-model="prop.form.url" placeholder="网页路径" />
</el-form-item> </el-form-item>
<el-form-item label="大屏图片"> <el-form-item label="大屏图片">
<ImageUpload v-model="prop.form.img" :limit="1" /> <ImageUpload v-model="prop.form.img" :limit="1" :fileSize="1" />
</el-form-item> </el-form-item>
<el-form-item label="备注"> <el-form-item label="备注">
<el-input v-model="prop.form.remark" placeholder="备注" /> <el-input v-model="prop.form.remark" placeholder="备注" />

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="login"> <div class="login">
<el-form ref="loginRef" :model="loginForm" :rules="loginRules" class="login-form"> <el-form ref="loginRef" :model="loginForm" :rules="loginRules" class="login-form">
<h3 class="title">再登物联管理系统</h3> <h3 class="title">物联大屏管理系统</h3>
<el-form-item prop="username"> <el-form-item prop="username">
<el-input <el-input
v-model="loginForm.username" v-model="loginForm.username"

View File

@ -0,0 +1,16 @@
<template>
<div class="things-container">
<iframe src="http://localhost:4200" frameborder="0" width="100%" height="100%"></iframe>
</div>
</template>
<script setup>
</script>
<style lang="scss" scoped>
.things-container {
width: 100%;
height: calc(100vh - 84px);
background-color: #fff;
}
</style>

View File

@ -32,7 +32,7 @@ export default defineConfig(({ mode, command }) => {
// https://cn.vitejs.dev/config/#server-proxy // https://cn.vitejs.dev/config/#server-proxy
'/dev-api': { '/dev-api': {
// target: 'http://192.168.110.23:9015', // target: 'http://192.168.110.23:9015',
target: 'http://8.130.165.100:9015', target: 'http://8.141.87.86:9015',
// target: 'http://192.168.110.90:10393/mock/5ce74738-f63f-4d21-af85-b1d132c6f6fd', // target: 'http://192.168.110.90:10393/mock/5ce74738-f63f-4d21-af85-b1d132c6f6fd',
changeOrigin: true, changeOrigin: true,
rewrite: (p) => p.replace(/^\/dev-api/, '') rewrite: (p) => p.replace(/^\/dev-api/, '')