刘翔宇-旅管家 3 years ago
parent a3112b7553
commit fe697196f0

@ -2,5 +2,5 @@
ENV = 'development' ENV = 'development'
# base api # base api
VUE_APP_BASE_API = http://starter.ali251.langye.net VUE_APP_BASE_API = http://bd-fangke.ali251.langye.net
VUE_APP_UPLOAD_API = http://starter.ali251.langye.net/api/admin/upload-file VUE_APP_UPLOAD_API = http://bd-fangke.ali251.langye.net/api/admin/upload-file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 KiB

After

Width:  |  Height:  |  Size: 48 KiB

@ -32,7 +32,7 @@ export default {
<style lang="less" scoped> <style lang="less" scoped>
.v-header { .v-header {
display: flex; display: flex;
border-bottom: 1px solid #dcdee2; border-bottom: 1px solid #004593;
flex-direction: column; flex-direction: column;
.v-left-text { .v-left-text {
margin-top: 3px; margin-top: 3px;
@ -40,9 +40,9 @@ export default {
// padding-top: 10px; // padding-top: 10px;
font-weight: bold; font-weight: bold;
font-size: 15px; font-size: 15px;
color: #444140; color: #004593;
white-space: nowrap; white-space: nowrap;
border-bottom: 2px solid #444140; border-bottom: 2px solid #004593;
> span { > span {
position: relative; position: relative;

@ -35,8 +35,7 @@
transition: opacity 1.5s; transition: opacity 1.5s;
} }
.sidebar-name-logo { .sidebar-name-logo {
width: 160px; width: 195px;
height: 36px;
} }
.sidebarLogoFade-enter, .sidebarLogoFade-enter,

@ -1,6 +1,6 @@
module.exports = { module.exports = {
title: '朗业基础平台', title: 'BD访客管理系统',
/** /**
* @type {boolean} true | false * @type {boolean} true | false

@ -1,5 +1,5 @@
/* 改变主题色变量 */ /* 改变主题色变量 */
$--color-primary: #444140; $--color-primary: #004593;
/* 改变 icon 字体路径变量,必需 */ /* 改变 icon 字体路径变量,必需 */
$--font-path: '~element-ui/lib/theme-chalk/fonts'; $--font-path: '~element-ui/lib/theme-chalk/fonts';

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -11,7 +11,7 @@
transition: width 0.28s; transition: width 0.28s;
width: $sideBarWidth !important; width: $sideBarWidth !important;
//background-color: $menuBg; //background-color: $menuBg;
background: linear-gradient(180deg, #d70c25, #ec5669); background: linear-gradient(180deg, #f27707, #f3a359);
box-shadow: 1px 1px 15px 0px rgba(17, 76, 157, 0.2); box-shadow: 1px 1px 15px 0px rgba(17, 76, 157, 0.2);
height: 100%; height: 100%;
position: fixed; position: fixed;
@ -229,7 +229,7 @@
>.el-menu--popup { >.el-menu--popup {
max-height: 100vh; max-height: 100vh;
overflow-y: auto; overflow-y: auto;
background: #d70c25 !important; background: #f27707 !important;
&::-webkit-scrollbar-track-piece { &::-webkit-scrollbar-track-piece {
background: #d3dce6; background: #d3dce6;

@ -13,7 +13,7 @@ $subMenuHover:rgba(242, 242, 242, .4);
$submenuActiveBg:rgba(242, 242, 242, .4); $submenuActiveBg:rgba(242, 242, 242, .4);
$sideBarWidth: 210px; $sideBarWidth: 210px;
$primaryColor: #1a1a5e; $primaryColor: #004593;
// the :export directive is the magic sauce for webpack // the :export directive is the magic sauce for webpack
// https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass // https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass
:export { :export {

@ -1,4 +1,4 @@
@import '~view-design/src/styles/index.less'; @import '~view-design/src/styles/index.less';
// Here are the variables to cover, such as: // Here are the variables to cover, such as:
@primary-color: #444140; @primary-color: #004593;

@ -1,20 +1,7 @@
<template> <template>
<div> <div>
<div class="statistics">
<panel-group :totaldata="list" />
</div>
<div class="chart">
<div class="chartItem" style="margin-right: 1%;">
<div class="chartItemTitle">营业与收入</div>
<div id="col-chart"></div>
</div>
<div class="chartItem" style="margin-left: 1%;">
<div class="chartItemTitle">客户与订单</div>
<div id="line-chart"></div>
</div>
</div>
</div> </div>
</template> </template>
@ -44,7 +31,7 @@
watch: { watch: {
chartData(val, newval) { chartData(val, newval) {
if (newval){ if (newval){
this.init(); //this.init();
} }
} }
}, },
@ -180,7 +167,7 @@
}, },
created() { created() {
this.loadData(); //this.loadData();
}, },
mounted() { mounted() {

@ -13,7 +13,7 @@ const name = defaultSettings.title // page title
// For example, Mac: sudo npm run // For example, Mac: sudo npm run
// You can change the port by the following methods: // You can change the port by the following methods:
// port = 9528 npm run dev OR npm run dev --port = 9528 // port = 9528 npm run dev OR npm run dev --port = 9528
const port = process.env.port || process.env.npm_config_port || 8000 // dev port const port = process.env.port || process.env.npm_config_port || 8020 // dev port
// All configuration item explanations can be find in https://cli.vuejs.org/config/ // All configuration item explanations can be find in https://cli.vuejs.org/config/
module.exports = { module.exports = {
@ -25,7 +25,7 @@ module.exports = {
* Detail: https://cli.vuejs.org/config/#publicpath * Detail: https://cli.vuejs.org/config/#publicpath
*/ */
publicPath: '/admin/', publicPath: '/admin/',
outputDir: '/Users/liuxiangyu/Work/z-zhongjia/app/zhongjia-finance-service/public/admin', outputDir: '/Users/liuxiangyu/Work/s-szbd/code/szbd-visitor-service/public/admin',
assetsDir: 'static', assetsDir: 'static',
css: { css: {
loaderOptions: { // 向 CSS 相关的 loader 传递选项 loaderOptions: { // 向 CSS 相关的 loader 传递选项

Loading…
Cancel
Save