Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bianpoSys
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xinzhedeai
bianpoSys
Commits
53c05b82
Commit
53c05b82
authored
Feb 20, 2025
by
xinzhedeai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
init:山西华远版本-from lcl
parent
b88a0933
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
7 deletions
+11
-7
README.md
README.md
+2
-0
request.js
src/utils/request.js
+1
-1
index.vue
src/views/index.vue
+0
-1
login.vue
src/views/login.vue
+2
-0
index.vue
src/views/system/monitorPoint/index.vue
+1
-1
vue.config.js
vue.config.js
+5
-4
No files found.
README.md
View file @
53c05b82
## 开发
## 开发
```
bash
```
bash
...
...
src/utils/request.js
View file @
53c05b82
...
@@ -10,7 +10,7 @@ import { saveAs } from 'file-saver'
...
@@ -10,7 +10,7 @@ import { saveAs } from 'file-saver'
let
downloadLoadingInstance
;
let
downloadLoadingInstance
;
// 是否显示重新登录
// 是否显示重新登录
export
let
isRelogin
=
{
show
:
false
};
export
let
isRelogin
=
{
show
:
false
};
document
.
cookie
=
`Admin-Token=
${
new
URLSearchParams
(
window
.
location
.
search
).
get
(
'
Admin
'
)}
`
;
axios
.
defaults
.
headers
[
'
Content-Type
'
]
=
'
application/json;charset=utf-8
'
axios
.
defaults
.
headers
[
'
Content-Type
'
]
=
'
application/json;charset=utf-8
'
// 创建axios实例
// 创建axios实例
...
...
src/views/index.vue
View file @
53c05b82
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<div
class=
"home-right"
>
<div
class=
"home-right"
>
<div
class=
"home-right-top"
>
<div
class=
"home-right-top"
>
<p
class=
"title"
>
边坡介绍
</p>
<p
class=
"title"
>
边坡介绍
</p>
<!--
<p
class=
"cont"
>
边坡名称:威海晶合边坡结构系统
</p>
-->
<p
class=
"cont"
>
边坡名称:边坡结构系统
</p>
<p
class=
"cont"
>
边坡名称:边坡结构系统
</p>
<p
class=
"cont"
>
边坡工程安全等级:高级
</p>
<p
class=
"cont"
>
边坡工程安全等级:高级
</p>
<p
class=
"cont"
>
边坡危害等级:低级
</p>
<p
class=
"cont"
>
边坡危害等级:低级
</p>
...
...
src/views/login.vue
View file @
53c05b82
...
@@ -138,6 +138,8 @@ export default {
...
@@ -138,6 +138,8 @@ export default {
},
},
},
},
created
()
{
created
()
{
document
.
cookie
=
`Admin-Token=
${
new
URLSearchParams
(
window
.
location
.
search
).
get
(
'
Admin
'
)}
`
;
console
.
log
(
new
URLSearchParams
(
window
.
location
.
search
).
get
(
'
Admin
'
))
this
.
getCode
();
this
.
getCode
();
this
.
getCookie
();
this
.
getCookie
();
},
},
...
...
src/views/system/monitorPoint/index.vue
View file @
53c05b82
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
<el-card
class=
"box-card mt20"
>
<el-card
class=
"box-card mt20"
>
<div
class=
"lcl-title"
>
检测点
</div>
<div
class=
"lcl-title"
>
检测点
</div>
<div
class=
"mt20"
>
<div
class=
"mt20"
>
<el-select
v-model=
"queryParams.equipno"
placeholder=
"请选择设备"
>
<el-select
v-model=
"queryParams.equipno"
placeholder=
"请选择设备"
clearable
>
<el-option
<el-option
v-for=
"item in monDicList"
v-for=
"item in monDicList"
:key=
"item.monNumber"
:key=
"item.monNumber"
...
...
vue.config.js
View file @
53c05b82
...
@@ -10,7 +10,7 @@ const CompressionPlugin = require('compression-webpack-plugin')
...
@@ -10,7 +10,7 @@ const CompressionPlugin = require('compression-webpack-plugin')
// const name = process.env.VUE_APP_TITLE || '边坡结构稳定性监测系统' // 网页标题
// const name = process.env.VUE_APP_TITLE || '边坡结构稳定性监测系统' // 网页标题
const
name
=
'
边坡结构稳定性监测系统
'
// 网页标题
const
name
=
'
边坡结构稳定性监测系统
'
// 网页标题
const
port
=
process
.
env
.
port
||
process
.
env
.
npm_config_port
||
1210
0
// 端口
const
port
=
process
.
env
.
port
||
process
.
env
.
npm_config_port
||
8
0
// 端口
// vue.config.js 配置说明
// vue.config.js 配置说明
//官方vue.config.js 参考文档 https://cli.vuejs.org/zh/config/#css-loaderoptions
//官方vue.config.js 参考文档 https://cli.vuejs.org/zh/config/#css-loaderoptions
...
@@ -36,9 +36,10 @@ module.exports = {
...
@@ -36,9 +36,10 @@ module.exports = {
proxy
:
{
proxy
:
{
// detail: https://cli.vuejs.org/config/#devserver-proxy
// detail: https://cli.vuejs.org/config/#devserver-proxy
[
process
.
env
.
VUE_APP_BASE_API
]:
{
[
process
.
env
.
VUE_APP_BASE_API
]:
{
// target: `http://192.168.3.180:8002`,
// target: `http://192.168.3.226:9090`,
// target: `http://192.168.3.37:9090`,
target
:
`http://192.168.2.16:9090`
,
target
:
`http://60.212.188.152:12000`
,
//服务器
// target: `http://60.212.188.152:12000`,//服务器
// target: `http://182.92.170.89:10082`,//服务器
changeOrigin
:
true
,
changeOrigin
:
true
,
pathRewrite
:
{
pathRewrite
:
{
[
'
^
'
+
process
.
env
.
VUE_APP_BASE_API
]:
''
[
'
^
'
+
process
.
env
.
VUE_APP_BASE_API
]:
''
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment