master
许宏杰 1 month ago
parent 86817a4837
commit 56fd311914

@ -5,12 +5,12 @@ VUE_APP_TITLE = 人口数据管理系统
ENV = 'development' ENV = 'development'
# # 政务网/开发环境 # # 政务网/开发环境
# VUE_APP_BASE_API_HTML = "http://122.193.93.182:19002" VUE_APP_BASE_API_HTML = "http://122.193.93.182:19002"
# VUE_APP_BASE_API = 'http://122.193.93.182:19002' VUE_APP_BASE_API = 'http://122.193.93.182:19002'
# 测试/开发环境 # 测试/开发环境
VUE_APP_BASE_API_HTML = "http://192.168.0.120:19002" # VUE_APP_BASE_API_HTML = "http://192.168.0.120:19002"
VUE_APP_BASE_API = "http://192.168.0.120:19002" # VUE_APP_BASE_API = "http://192.168.0.120:19002"
# 路由懒加载 # 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true VUE_CLI_BABEL_TRANSPILE_MODULES = true

@ -1,7 +1,7 @@
{ {
"name": "ruoyi", "name": "ruoyi",
"version": "3.8.8", "version": "3.8.8",
"description": "人口数据管理系统", "description": "若依管理系统",
"author": "若依", "author": "若依",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
@ -38,7 +38,6 @@
"dependencies": { "dependencies": {
"@riophae/vue-treeselect": "0.4.0", "@riophae/vue-treeselect": "0.4.0",
"animate.css": "^4.1.1", "animate.css": "^4.1.1",
"autofit.js": "^3.1.1",
"axios": "0.28.1", "axios": "0.28.1",
"clipboard": "2.0.8", "clipboard": "2.0.8",
"core-js": "3.37.1", "core-js": "3.37.1",
@ -51,12 +50,11 @@
"js-cookie": "3.0.1", "js-cookie": "3.0.1",
"jsencrypt": "3.0.0-rc.1", "jsencrypt": "3.0.0-rc.1",
"leaflet": "^1.9.4", "leaflet": "^1.9.4",
"lodash": "^4.17.21",
"nprogress": "0.2.0", "nprogress": "0.2.0",
"postcss-px-to-viewport": "^1.1.1",
"quill": "1.3.7", "quill": "1.3.7",
"screenfull": "5.0.2", "screenfull": "5.0.2",
"sortablejs": "1.10.2", "sortablejs": "1.10.2",
"v-scale-screen": "^1.0.3",
"vue": "2.6.12", "vue": "2.6.12",
"vue-count-to": "1.0.13", "vue-count-to": "1.0.13",
"vue-cropper": "0.5.5", "vue-cropper": "0.5.5",

@ -0,0 +1,7 @@
module.exports = {
plugins: {
"postcss-px-to-viewport": {
viewportWidth: 1920,
},
},
};

@ -1,10 +1,8 @@
<template> <template>
<ScaleBox>
<div id="app"> <div id="app">
<router-view /> <router-view />
<theme-picker /> <theme-picker />
</div> </div>
</ScaleBox>
</template> </template>
<script> <script>
@ -13,7 +11,7 @@ import ScaleBox from "@/components/scaleBox";
export default { export default {
mounted() {}, mounted() {},
name: "App", name: "App",
components: { ThemePicker,ScaleBox }, components: { ThemePicker, ScaleBox },
metaInfo() { metaInfo() {
return { return {
title: title:

@ -111,7 +111,7 @@ export default {
position: fixed; position: fixed;
top: 0; top: 0;
z-index: 100; z-index: 100;
height: 110px; height: 120px;
width: 100%; width: 100%;
background: url("~@/assets/images/ui/navigation.png"); background: url("~@/assets/images/ui/navigation.png");
background-size: cover; background-size: cover;
@ -126,7 +126,7 @@ export default {
} }
.navigation-title { .navigation-title {
text-align: center; text-align: center;
margin-top: 6px; margin-top: 4px;
.main-title { .main-title {
font-size: 36px; font-size: 36px;
color: #ffffff; color: #ffffff;

@ -215,8 +215,8 @@ export default {
border-radius: 6px; border-radius: 6px;
background-image: url("../assets/images/ui/img_frame.png"); background-image: url("../assets/images/ui/img_frame.png");
background-size: 100% 100%; background-size: 100% 100%;
width: 450px; width: 500px;
padding: 35px 35px 5px 35px; padding: 30px 35px 5px 35px;
.el-input { .el-input {
height: 50px; height: 50px;
input { input {
@ -227,7 +227,11 @@ export default {
background: rgba(9, 27, 52, 0.2); background: rgba(9, 27, 52, 0.2);
border-color: #1489cc; border-color: #1489cc;
} }
input::placeholder {
font-size: 18px;
}
} }
.input-icon { .input-icon {
height: 50px; height: 50px;
width: 18px; width: 18px;

Loading…
Cancel
Save