29 lines
617 B
Vue
29 lines
617 B
Vue
|
<script>
|
||
|
export default {
|
||
|
globalData:{
|
||
|
projectname:'', // 项目名称
|
||
|
lat:'', // 公司地址维度
|
||
|
lng:'' ,// 公司地址经度
|
||
|
hostapi:'https://laonon.scdxtc.cn' // 域名配置
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
/* 阿里巴巴矢量图标库 start */
|
||
|
@import url("./commons/icon-font.css");
|
||
|
/* 阿里巴巴矢量图标库 end */
|
||
|
|
||
|
/* 项目基础样式 start */
|
||
|
@import url("./commons/base.css");
|
||
|
/* 项目基础样式 end */
|
||
|
|
||
|
/* 加载中样式 start */
|
||
|
@import url("./commons/loading.css");
|
||
|
/* 加载中样式 end */
|
||
|
|
||
|
/* 设置背景颜色 */
|
||
|
page{ background-color: #f5f5f5;}
|
||
|
</style>
|
||
|
|