修改问题

master
夜笙歌 6 months ago
parent c2c358188c
commit e84c1b5b3a

@ -1,5 +1,5 @@
# 页面标题 # 页面标题
VUE_APP_TITLE = 智慧物联监控平台 VUE_APP_TITLE = 海威物联官网
# 开发环境配置 # 开发环境配置
ENV = 'development' ENV = 'development'

@ -1,5 +1,5 @@
# 页面标题 # 页面标题
VUE_APP_TITLE = 智慧物联监控平台 VUE_APP_TITLE = 海威物联官网
# 生产环境配置 # 生产环境配置
ENV = 'production' ENV = 'production'

@ -1,5 +1,5 @@
# 页面标题 # 页面标题
VUE_APP_TITLE = 智慧物联监控平台 VUE_APP_TITLE = 海威物联官网
NODE_ENV = production NODE_ENV = production

@ -6,6 +6,8 @@
<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="<%= BASE_URL %>favicon.ico"> <link rel="icon" href="<%= BASE_URL %>favicon.ico">
<script src="./highcharts.js"></script>
<script src="./highcharts-3d.js"></script>
<title><%= webpackConfig.name %></title> <title><%= webpackConfig.name %></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>

@ -1,6 +1,6 @@
<template> <template>
<div> <div>
<div class="title">{{ tenantData.tenantBoardTopic || '智慧物联监控平台' }}</div> <div class="title">{{ tenantData.tenantBoardTopic || '海威物联官网' }}</div>
<div> <div>
<div v-if="isIndex" :class="`menu ${nowMenu==='1'? 'menuClick' :''}`" style="left: 2%" <div v-if="isIndex" :class="`menu ${nowMenu==='1'? 'menuClick' :''}`" style="left: 2%"
@click="toLink('index','1')"> @click="toLink('index','1')">
@ -231,7 +231,7 @@ export default {
} }
.menuClick { .menuClick {
background-image: url("~@/assets/board/common/subheadClick.png"); //background-image: url("~@/assets/board/common/subheadClick.png");
color: #f3f3f3; color: #f3f3f3;
} }

@ -1,7 +1,7 @@
// zh.js // zh.js
export default { export default {
login: { login: {
title: '智慧物联监控平台', title: '海威物联官网',
logIn: '登录', logIn: '登录',
username: '账号', username: '账号',
password: '密码' password: '密码'

@ -8,7 +8,7 @@ import { isRelogin } from '@/utils/request'
NProgress.configure({ showSpinner: false }) NProgress.configure({ showSpinner: false })
const whiteList = ['/login', '/register'] const whiteList = ['/login', '/jqz', '/register']
router.beforeEach((to, from, next) => { router.beforeEach((to, from, next) => {
NProgress.start() NProgress.start()

@ -31,7 +31,7 @@ import BoardIndex from '@/layout/boardIndex1.vue'
*/ */
// 公共路由 // 公共路由
export const constantRoutes = [ export const constantRoutes = [{path: '/jqz', component: () => import('@/views/board/jqz.vue')},
{path: '/sceneView', component: () => import('@/views/sceneView/index.vue')}, {path: '/sceneView', component: () => import('@/views/sceneView/index.vue')},
{ {
path: '/map', path: '/map',

File diff suppressed because it is too large Load Diff

@ -302,7 +302,7 @@ export default {
} }
.menuClick { .menuClick {
background-image: url("~@/assets/board/common/subheadClick.png"); //background-image: url("~@/assets/board/common/subheadClick.png");
color: #f3f3f3; color: #f3f3f3;
} }

@ -1,7 +1,7 @@
<template> <template>
<div class="register"> <div class="register">
<el-form ref="registerForm" :model="registerForm" :rules="registerRules" class="register-form"> <el-form ref="registerForm" :model="registerForm" :rules="registerRules" class="register-form">
<h3 class="title">智慧物联监控平台</h3> <h3 class="title">海威物联官网</h3>
<el-form-item prop="username"> <el-form-item prop="username">
<el-input v-model="registerForm.username" type="text" auto-complete="off" placeholder="账号"> <el-input v-model="registerForm.username" type="text" auto-complete="off" placeholder="账号">
<svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" /> <svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" />

@ -197,7 +197,7 @@
<el-upload <el-upload
v-if="pageCfg.isBgImg" v-if="pageCfg.isBgImg"
class="avatar-uploader" class="avatar-uploader"
:action="process.env.VUE_APP_BASE_API + '/file/upload'" :action="uploadUrl"
:headers="{ :headers="{
authorization:'Bearer ' + getToken() authorization:'Bearer ' + getToken()
}" }"
@ -281,6 +281,7 @@ export default {
}, },
data() { data() {
return { return {
uploadUrl: process.env.VUE_APP_BASE_API + "/file/upload",
process, process,
inputVisible: false, inputVisible: false,
inputValue: '', inputValue: '',

Loading…
Cancel
Save