diff --git a/src/assets/css/homeScreen.scss b/src/assets/css/homeScreen.scss new file mode 100644 index 0000000..006cadc --- /dev/null +++ b/src/assets/css/homeScreen.scss @@ -0,0 +1,228 @@ +@mixin textColor($color1, $color2) { + background-image: linear-gradient(0deg, $color1 0%, $color2 100%); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} +.homeBox{ + width: 100%; + height: 100vh; + .home-contant{ + position: relative; + top: 70px; + width: 100%; + height: calc(100vh - 72px); + overflow: hidden; + z-index: 2; + .home-aside{ + width: 442px; + height: 100%; + z-index: 10; + } + .homeBtn{ + height: 302px; + width: calc(100% - 894px); + position: absolute; + bottom: 2px; + left: 50%; + transform: translateX(-50%); + } + } + // 头部 + .headBox { + position: fixed; + top: 0; + width: 100%; + height: 151px; + background: url("~@/assets/images/home_head.png") no-repeat center center; + background-size: 100% 100%; + .top-center { + position: absolute; + left: 50%; + top: 2%; + transform: translateX(-50%); + font-size: 56px; + letter-spacing: 2px; + font-family: "YSBTH"; + white-space: nowrap; + background-image: linear-gradient( + 72deg, + #0072ff 0%, + #00ffff 18%, + #07e9ff 51%, + #00ffff 83%, + #0072ff 100% + ); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + text-shadow: 4px 4px 4px rgba(54, 255, 243, 0.15); + } + .topBtn { + display: flex; + position: absolute; + top: 15%; + .topBtn-item { + width: 190px; + height: 38px; + display: flex; + align-items: center; + justify-content: center; + background: url("~@/assets/images/home_btns.png") no-repeat center center; + background-size: 100% 100%; + font-size: 18px; + cursor: pointer; + span { + font-family: "YSBTH"; + margin-top: -4px; + @include textColor(#a1d6ff, #ffffff); + } + } + .yjbtn{ + width: 155px; + height: 38px; + line-height: 38px; + text-align: center; + background: url("~@/assets/images/home_btns.png") no-repeat center center; + background-size: 100% 100%; + font-size: 16px; + font-family: "YSBTH"; + .btms{ + @include textColor(#a1d6ff, #ffffff); + } + } + .yjbtnActive{ + // background: url("~@/assets/images/home_btns_active.png") no-repeat center center; + // background-size: 100% 100%; + } + } + .topBtn-left { + left: 5px; + font-size: 12px; + .text { + font-family: "YSBTH"; + color: #0bb7ff; + } + .tests { + color: #0a99ff; + } + } + .topBtn-right { + right: 170px; + .topBtn-item { + background: url("~@/assets/images/home_btns_right.png") no-repeat center + center; + background-size: 100% 100%; + } + .active-topBtn { + background: url("~@/assets/images/home_btns_right_active.png") no-repeat + center center; + background-size: 100% 100%; + span { + @include textColor(#00ffff, #faff00); + } + } + } + .rightIcon { + position: absolute; + right: 20px; + top: 20%; + font-size: 17px; + span { + color: #0bb7ff; + cursor: pointer; + } + img { + width: 20px; + } + } + } + // 左边 + .asideL{ + position: absolute; + box-sizing: border-box; + left: 10px; + .asideL-top{ + width: 100%; + height: 141px; + background: #052249; + } + .asideL-Bottom{ + height: calc(100% - 141px); + .commom-aside{ + height: calc((100%/3) - 6px); + margin-top: 7px; + background: #052249; + } + } + } + // 右边 + .asideR{ + position: absolute; + right: 10px; + .commom-aside-small{ + height: calc(((100% - 146px) /3) - 6px); + background: #052249; + margin-top: 9px; + } + .commom-aside-big{ + height: calc(((100% - (100% - 146px) /3)/2) - 6px); + margin-bottom: 9px; + background: #052249; + } + } + + .home-center{ + position: absolute; + left: 50%; + top: 0px; + transform: translateX(-50%); + width: calc(100% - 920px); + height: 80px; + } + .home-foot{ + position: absolute; + left: 50%; + bottom: 0px; + transform: translateX(-50%); + width: calc(100% - 920px); + height: calc((100% - 141px)/3 - 9px); + min-width: 560px; + overflow: hidden; + background: url("~@/assets/images/right-1.png") no-repeat center center; + background-size: 100% 100%; + .comom-title{ + background: url("~@/assets/images/bg18.png") no-repeat center center; + background-size: 100% 100%; + .title{ + font-size: 22px; + font-family: 'YSBTH'; + padding-left: 35px; + } + } + } + + // 公用 + .comom-title{ + background: url("~@/assets/images/bg17.png") no-repeat center center; + background-size: 100% 100%; + width: 100%; + height: 35px; + display: flex; + justify-content: space-between; + align-items: center; + padding: 0 10px; + box-sizing: border-box; + .title{ + font-size: 22px; + font-family: 'YSBTH'; + padding-left: 35px; + } + } + .comom-cnt{ + height: calc(100% - 35px); + padding: 4px 10px; + box-sizing: border-box; + background: url("~@/assets/images/bg_13.png") no-repeat center center; + background-size: 100% 100%; + } + + } \ No newline at end of file diff --git a/src/assets/images/GroupBlue.png b/src/assets/images/GroupBlue.png new file mode 100644 index 0000000..a279a16 Binary files /dev/null and b/src/assets/images/GroupBlue.png differ diff --git a/src/assets/images/GroupOrange.png b/src/assets/images/GroupOrange.png new file mode 100644 index 0000000..f70f965 Binary files /dev/null and b/src/assets/images/GroupOrange.png differ diff --git a/src/assets/images/GroupRed.png b/src/assets/images/GroupRed.png new file mode 100644 index 0000000..a828ba3 Binary files /dev/null and b/src/assets/images/GroupRed.png differ diff --git a/src/assets/images/GroupYellow.png b/src/assets/images/GroupYellow.png new file mode 100644 index 0000000..60d9710 Binary files /dev/null and b/src/assets/images/GroupYellow.png differ diff --git a/src/assets/images/Polygon_right.png b/src/assets/images/Polygon_right.png new file mode 100644 index 0000000..0f8fd70 Binary files /dev/null and b/src/assets/images/Polygon_right.png differ diff --git a/src/assets/images/bg17.png b/src/assets/images/bg17.png new file mode 100644 index 0000000..7435763 Binary files /dev/null and b/src/assets/images/bg17.png differ diff --git a/src/assets/images/bg18.png b/src/assets/images/bg18.png new file mode 100644 index 0000000..7d5eab0 Binary files /dev/null and b/src/assets/images/bg18.png differ diff --git a/src/assets/images/bg_12.png b/src/assets/images/bg_12.png new file mode 100644 index 0000000..3c2dbec Binary files /dev/null and b/src/assets/images/bg_12.png differ diff --git a/src/assets/images/bg_13.png b/src/assets/images/bg_13.png new file mode 100644 index 0000000..75e8a48 Binary files /dev/null and b/src/assets/images/bg_13.png differ diff --git a/src/assets/images/bg_14.png b/src/assets/images/bg_14.png new file mode 100644 index 0000000..74c3e63 Binary files /dev/null and b/src/assets/images/bg_14.png differ diff --git a/src/assets/images/databi/content-item.png b/src/assets/images/content-item.png similarity index 100% rename from src/assets/images/databi/content-item.png rename to src/assets/images/content-item.png diff --git a/src/assets/images/databi/blue.png b/src/assets/images/databi/blue.png deleted file mode 100644 index 58cb260..0000000 Binary files a/src/assets/images/databi/blue.png and /dev/null differ diff --git a/src/assets/images/databi/cantainer.png b/src/assets/images/databi/cantainer.png deleted file mode 100644 index 0acdabd..0000000 Binary files a/src/assets/images/databi/cantainer.png and /dev/null differ diff --git a/src/assets/images/databi/content-box-2.png b/src/assets/images/databi/content-box-2.png deleted file mode 100644 index e3654e5..0000000 Binary files a/src/assets/images/databi/content-box-2.png and /dev/null differ diff --git a/src/assets/images/databi/content-box-3.png b/src/assets/images/databi/content-box-3.png deleted file mode 100644 index 2e9b945..0000000 Binary files a/src/assets/images/databi/content-box-3.png and /dev/null differ diff --git a/src/assets/images/databi/content-box-4.png b/src/assets/images/databi/content-box-4.png deleted file mode 100644 index 36b3479..0000000 Binary files a/src/assets/images/databi/content-box-4.png and /dev/null differ diff --git a/src/assets/images/databi/content-box-5.png b/src/assets/images/databi/content-box-5.png deleted file mode 100644 index 04c8313..0000000 Binary files a/src/assets/images/databi/content-box-5.png and /dev/null differ diff --git a/src/assets/images/databi/content-box.png b/src/assets/images/databi/content-box.png deleted file mode 100644 index 31550c6..0000000 Binary files a/src/assets/images/databi/content-box.png and /dev/null differ diff --git a/src/assets/images/databi/head-1.png b/src/assets/images/databi/head-1.png deleted file mode 100644 index cbc50d6..0000000 Binary files a/src/assets/images/databi/head-1.png and /dev/null differ diff --git a/src/assets/images/databi/head-2.png b/src/assets/images/databi/head-2.png deleted file mode 100644 index 41e9364..0000000 Binary files a/src/assets/images/databi/head-2.png and /dev/null differ diff --git a/src/assets/images/databi/main-top-item.png b/src/assets/images/databi/main-top-item.png deleted file mode 100644 index fde71e8..0000000 Binary files a/src/assets/images/databi/main-top-item.png and /dev/null differ diff --git a/src/assets/images/databi/right-2.png b/src/assets/images/databi/right-2.png deleted file mode 100644 index c3f3b5b..0000000 Binary files a/src/assets/images/databi/right-2.png and /dev/null differ diff --git a/src/assets/images/databi/right-3.png b/src/assets/images/databi/right-3.png deleted file mode 100644 index 8825973..0000000 Binary files a/src/assets/images/databi/right-3.png and /dev/null differ diff --git a/src/assets/images/databi/tianqi.png b/src/assets/images/databi/tianqi.png deleted file mode 100644 index 186ef28..0000000 Binary files a/src/assets/images/databi/tianqi.png and /dev/null differ diff --git a/src/assets/images/databi/time (4).png b/src/assets/images/databi/time (4).png deleted file mode 100644 index 10e0235..0000000 Binary files a/src/assets/images/databi/time (4).png and /dev/null differ diff --git a/src/assets/images/databi/time (5).png b/src/assets/images/databi/time (5).png deleted file mode 100644 index 96f98a2..0000000 Binary files a/src/assets/images/databi/time (5).png and /dev/null differ diff --git a/src/assets/images/databi/time.png b/src/assets/images/databi/time.png deleted file mode 100644 index c942773..0000000 Binary files a/src/assets/images/databi/time.png and /dev/null differ diff --git a/src/assets/images/databi/title-box-2.png b/src/assets/images/databi/title-box-2.png deleted file mode 100644 index 0c4b258..0000000 Binary files a/src/assets/images/databi/title-box-2.png and /dev/null differ diff --git a/src/assets/images/databi/title-box.png b/src/assets/images/databi/title-box.png deleted file mode 100644 index e2acb67..0000000 Binary files a/src/assets/images/databi/title-box.png and /dev/null differ diff --git a/src/assets/images/databi/wendu.png b/src/assets/images/databi/wendu.png deleted file mode 100644 index b6dbdbe..0000000 Binary files a/src/assets/images/databi/wendu.png and /dev/null differ diff --git a/src/assets/images/el-popper.png b/src/assets/images/el-popper.png new file mode 100644 index 0000000..5d8e7fb Binary files /dev/null and b/src/assets/images/el-popper.png differ diff --git a/src/assets/images/home_btns.png b/src/assets/images/home_btns.png new file mode 100644 index 0000000..18ec5ae Binary files /dev/null and b/src/assets/images/home_btns.png differ diff --git a/src/assets/images/home_btns_right.png b/src/assets/images/home_btns_right.png new file mode 100644 index 0000000..e101cab Binary files /dev/null and b/src/assets/images/home_btns_right.png differ diff --git a/src/assets/images/home_btns_right_active.png b/src/assets/images/home_btns_right_active.png new file mode 100644 index 0000000..fd459c9 Binary files /dev/null and b/src/assets/images/home_btns_right_active.png differ diff --git a/src/assets/images/icon_043.png b/src/assets/images/icon_043.png new file mode 100644 index 0000000..b38319b Binary files /dev/null and b/src/assets/images/icon_043.png differ diff --git a/src/assets/images/icon_044.png b/src/assets/images/icon_044.png new file mode 100644 index 0000000..7a240dd Binary files /dev/null and b/src/assets/images/icon_044.png differ diff --git a/src/assets/images/icon_045.png b/src/assets/images/icon_045.png new file mode 100644 index 0000000..d803883 Binary files /dev/null and b/src/assets/images/icon_045.png differ diff --git a/src/assets/images/icon_046.png b/src/assets/images/icon_046.png new file mode 100644 index 0000000..abe0b1f Binary files /dev/null and b/src/assets/images/icon_046.png differ diff --git a/src/assets/images/icon_047.png b/src/assets/images/icon_047.png new file mode 100644 index 0000000..e46bb09 Binary files /dev/null and b/src/assets/images/icon_047.png differ diff --git a/src/assets/images/icon_048.png b/src/assets/images/icon_048.png new file mode 100644 index 0000000..11b48d9 Binary files /dev/null and b/src/assets/images/icon_048.png differ diff --git a/src/assets/images/icon_049.png b/src/assets/images/icon_049.png new file mode 100644 index 0000000..26594c3 Binary files /dev/null and b/src/assets/images/icon_049.png differ diff --git a/src/assets/images/icon_050.png b/src/assets/images/icon_050.png new file mode 100644 index 0000000..55c4a77 Binary files /dev/null and b/src/assets/images/icon_050.png differ diff --git a/src/assets/images/icon_051.png b/src/assets/images/icon_051.png new file mode 100644 index 0000000..26594c3 Binary files /dev/null and b/src/assets/images/icon_051.png differ diff --git a/src/assets/images/icon_052.png b/src/assets/images/icon_052.png new file mode 100644 index 0000000..e4bb6ca Binary files /dev/null and b/src/assets/images/icon_052.png differ diff --git a/src/assets/images/icon_053.png b/src/assets/images/icon_053.png new file mode 100644 index 0000000..0b32bf9 Binary files /dev/null and b/src/assets/images/icon_053.png differ diff --git a/src/assets/images/icon_054.png b/src/assets/images/icon_054.png new file mode 100644 index 0000000..5bb1c0b Binary files /dev/null and b/src/assets/images/icon_054.png differ diff --git a/src/assets/images/icon_055.png b/src/assets/images/icon_055.png new file mode 100644 index 0000000..4a60404 Binary files /dev/null and b/src/assets/images/icon_055.png differ diff --git a/src/assets/images/icon_056.png b/src/assets/images/icon_056.png new file mode 100644 index 0000000..95bef6b Binary files /dev/null and b/src/assets/images/icon_056.png differ diff --git a/src/assets/images/icon_057.png b/src/assets/images/icon_057.png new file mode 100644 index 0000000..a960e91 Binary files /dev/null and b/src/assets/images/icon_057.png differ diff --git a/src/assets/images/icon_066.gif b/src/assets/images/icon_066.gif new file mode 100644 index 0000000..c5c87aa Binary files /dev/null and b/src/assets/images/icon_066.gif differ diff --git a/src/assets/images/databi/line.png b/src/assets/images/line.png similarity index 100% rename from src/assets/images/databi/line.png rename to src/assets/images/line.png diff --git a/src/assets/images/databi/right-1.png b/src/assets/images/right-1.png similarity index 100% rename from src/assets/images/databi/right-1.png rename to src/assets/images/right-1.png diff --git a/src/assets/images/databi/top-1.png b/src/assets/images/top-1.png similarity index 100% rename from src/assets/images/databi/top-1.png rename to src/assets/images/top-1.png diff --git a/src/assets/images/databi/top-2.png b/src/assets/images/top-2.png similarity index 100% rename from src/assets/images/databi/top-2.png rename to src/assets/images/top-2.png diff --git a/src/assets/images/databi/top-3.png b/src/assets/images/top-3.png similarity index 100% rename from src/assets/images/databi/top-3.png rename to src/assets/images/top-3.png diff --git a/src/assets/images/databi/top-4.png b/src/assets/images/top-4.png similarity index 100% rename from src/assets/images/databi/top-4.png rename to src/assets/images/top-4.png diff --git a/src/components/MyComponents/Empty/index.vue b/src/components/MyComponents/Empty/index.vue new file mode 100644 index 0000000..2b3454b --- /dev/null +++ b/src/components/MyComponents/Empty/index.vue @@ -0,0 +1,25 @@ + + + + + \ No newline at end of file diff --git a/src/components/MyComponents/index.js b/src/components/MyComponents/index.js index 1521f55..1931ced 100644 --- a/src/components/MyComponents/index.js +++ b/src/components/MyComponents/index.js @@ -18,6 +18,7 @@ import MarkdownEdit from "./MarkdownEdit/index.vue"; import FileUpload from "./FileUpload/index.vue"; import RichOnly from "./RichOnly/index.vue"; import Date from "./Date/index.vue"; +import Empty from "./Empty/index.vue"; export { AddressSelect, FrameWork, @@ -38,5 +39,6 @@ export { MarkdownEdit, FileUpload, RichOnly, - Date + Date, + Empty }; diff --git a/src/components/aboutTable/DarkTable.vue b/src/components/aboutTable/DarkTable.vue new file mode 100644 index 0000000..87cca7e --- /dev/null +++ b/src/components/aboutTable/DarkTable.vue @@ -0,0 +1,376 @@ + + + + + + \ No newline at end of file diff --git a/src/components/aboutTable/FormMessage.vue b/src/components/aboutTable/FormMessage.vue new file mode 100644 index 0000000..e59d082 --- /dev/null +++ b/src/components/aboutTable/FormMessage.vue @@ -0,0 +1,127 @@ + + + \ No newline at end of file diff --git a/src/components/aboutTable/FormMessage/index.vue b/src/components/aboutTable/FormMessage/index.vue deleted file mode 100644 index b83fb1d..0000000 --- a/src/components/aboutTable/FormMessage/index.vue +++ /dev/null @@ -1,141 +0,0 @@ - - diff --git a/src/main.js b/src/main.js index 012fac2..9d0e9b2 100644 --- a/src/main.js +++ b/src/main.js @@ -13,6 +13,7 @@ import "./assets/css/layout.scss"; import "./assets/css/pulic.scss"; import ELMessage from 'element-plus' import InfiniteScroll from './utils/lazyLoad' +import Directive from './utils/directive'; import DictTag from '@/components/DictTag/index' @@ -22,6 +23,7 @@ import DictTag from '@/components/DictTag/index' const app = createApp(App); //注册自定义指令 app.use(InfiniteScroll) +app.use(Directive) Object.keys(ElIcons).forEach((key) => { //全局注册 element 图标 app.component(key, ElIcons[key]); diff --git a/src/utils/directive.js b/src/utils/directive.js new file mode 100644 index 0000000..427782c --- /dev/null +++ b/src/utils/directive.js @@ -0,0 +1,5 @@ +import elTableInfiniteScroll from 'el-table-infinite-scroll'; + +export default function directive(app) { + app.directive('elTableInfiniteScroll', elTableInfiniteScroll); +} \ No newline at end of file diff --git a/src/utils/tools.js b/src/utils/tools.js index 8b48ab8..2796e1d 100644 --- a/src/utils/tools.js +++ b/src/utils/tools.js @@ -1,9 +1,5 @@ -import { - getAddress -} from "@/api/getAddress.js"; -import { - getUserArea -} from "@/api/base.js"; + + // 随机颜色 - 把16进制的颜色换成rgba格式 export function choseRbgb(color,opcity) { @@ -17,6 +13,20 @@ export function choseRbgb(color,opcity) { return `rgba(${r},${g},${b},${a})` } } +// 今天周几 +export function weekValidate() { + let week = new Date().getDay() + let weekenday = '' + switch (week) { + case 0: return weekenday = '星期日' + case 1: return weekenday = '星期一' + case 2: return weekenday = '星期二' + case 3: return weekenday = '星期三' + case 4: return weekenday = '星期四' + case 5: return weekenday = '星期五' + case 6: return weekenday = '星期六' + } +} // 毫秒转时长 export function formatDuring(mss) { @@ -150,19 +160,7 @@ export function dateFormat(type, time) { } return day } -//地址解析 -export function getAddressApi(coords, fun) { - let { - jd, - wd - } = coords - getAddress({ - jd, - wd - }).then(res => { - fun(res) - }) -} + //数字超长处理 export function handleNum(num) { var data = 0 @@ -206,20 +204,7 @@ export function IS_MP4(val) { return ['avi', 'wmv', 'mpeg', 'mp4', 'm4v', 'mov', 'asf', 'fiv', 'f4v', 'mvb', 'rm', '3gp', 'vob'].indexOf(val .toLowerCase()) !== -1 } -/** - * 获取用户所属区域数据 - * @param {*} fun 回调方法 - */ -export function getUserAreaData(fun) { - getUserArea().then(res => { - if (res && res.jd && res.wd) { - let centerCoord = [res.jd, res.wd] - let leavel = res.level.slice(0, 1) - let coorList = [...handelArr(res.dtm), ...handelArr(res.dtm1), ...handelArr(res.dtm2)] - fun(coorList, centerCoord, leavel) - } - }) -} + function handelArr(arr) { let brr = [] diff --git a/src/views/backOfficeSystem/IntelligentControl/warningControl/components/bkjbtj.vue b/src/views/backOfficeSystem/IntelligentControl/warningControl/components/bkjbtj.vue index 8b4d516..fda17ab 100644 --- a/src/views/backOfficeSystem/IntelligentControl/warningControl/components/bkjbtj.vue +++ b/src/views/backOfficeSystem/IntelligentControl/warningControl/components/bkjbtj.vue @@ -1,11 +1,96 @@ \ No newline at end of file diff --git a/src/views/backOfficeSystem/IntelligentControl/warningControl/components/gjtj.vue b/src/views/backOfficeSystem/IntelligentControl/warningControl/components/gjtj.vue index 93691da..381a197 100644 --- a/src/views/backOfficeSystem/IntelligentControl/warningControl/components/gjtj.vue +++ b/src/views/backOfficeSystem/IntelligentControl/warningControl/components/gjtj.vue @@ -6,9 +6,6 @@ import * as echarts from "echarts"; import { ref, onMounted, watch, defineProps } from "vue"; -onMounted(() => { - lineChartFn(); -}); function lineChartFn() { var chartDom = document.getElementById("circlecz"); var myChart = echarts.init(chartDom); @@ -98,7 +95,7 @@ function lineChartFn() { }, markPoint: { symbol: 'path://M62 62h900v900h-900v-900z', // 使用 SVG path 绘制扁圆形状 - symbolSize: [10, 4], // 设置扁圆的宽和高 + symbolSize: [11, 4], // 设置扁圆的宽和高 itemStyle: { color: '#087df9' // 圆盘颜色 }, @@ -132,7 +129,7 @@ function lineChartFn() { }, markPoint: { symbol: 'path://M62 62h900v900h-900v-900z', // 使用 SVG path 绘制扁圆形状 - symbolSize: [10, 4], // 设置扁圆的宽和高 + symbolSize: [11, 4], // 设置扁圆的宽和高 itemStyle: { color: '#00FFFF' // 圆盘颜色 }, diff --git a/src/views/backOfficeSystem/IntelligentControl/warningControl/index.vue b/src/views/backOfficeSystem/IntelligentControl/warningControl/index.vue index 53ead92..acec56d 100644 --- a/src/views/backOfficeSystem/IntelligentControl/warningControl/index.vue +++ b/src/views/backOfficeSystem/IntelligentControl/warningControl/index.vue @@ -1,5 +1,17 @@ - - \ No newline at end of file diff --git a/src/views/home/components/line.vue b/src/views/home/components/line.vue deleted file mode 100644 index 1e31bac..0000000 --- a/src/views/home/components/line.vue +++ /dev/null @@ -1,57 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/views/home/components/pei.vue b/src/views/home/components/pei.vue deleted file mode 100644 index 1f88d19..0000000 --- a/src/views/home/components/pei.vue +++ /dev/null @@ -1,73 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/views/home/components/top-icon.vue b/src/views/home/components/top-icon.vue deleted file mode 100644 index 91c9b4d..0000000 --- a/src/views/home/components/top-icon.vue +++ /dev/null @@ -1,49 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/views/home/components/yjItem.vue b/src/views/home/components/yjItem.vue new file mode 100644 index 0000000..48cf63c --- /dev/null +++ b/src/views/home/components/yjItem.vue @@ -0,0 +1,103 @@ + + + + + \ No newline at end of file diff --git a/src/views/home/echarts/barEcharts.vue b/src/views/home/echarts/barEcharts.vue new file mode 100644 index 0000000..dbb6b8a --- /dev/null +++ b/src/views/home/echarts/barEcharts.vue @@ -0,0 +1,106 @@ + + + + \ No newline at end of file diff --git a/src/views/home/echarts/lineEcharts.vue b/src/views/home/echarts/lineEcharts.vue new file mode 100644 index 0000000..da9ba00 --- /dev/null +++ b/src/views/home/echarts/lineEcharts.vue @@ -0,0 +1,119 @@ + + + + \ No newline at end of file diff --git a/src/views/home/echarts/moreBarEcharts.vue b/src/views/home/echarts/moreBarEcharts.vue new file mode 100644 index 0000000..b6dd88c --- /dev/null +++ b/src/views/home/echarts/moreBarEcharts.vue @@ -0,0 +1,113 @@ + + + + \ No newline at end of file diff --git a/src/views/home/echarts/moreLineEcharts.vue b/src/views/home/echarts/moreLineEcharts.vue new file mode 100644 index 0000000..11b1ca5 --- /dev/null +++ b/src/views/home/echarts/moreLineEcharts.vue @@ -0,0 +1,124 @@ + + + + \ No newline at end of file diff --git a/src/views/home/index.vue b/src/views/home/index.vue index fba330c..db52c93 100644 --- a/src/views/home/index.vue +++ b/src/views/home/index.vue @@ -1,608 +1,53 @@ - \ No newline at end of file diff --git a/src/views/home/layout/head.vue b/src/views/home/layout/head.vue index b965314..4b78833 100644 --- a/src/views/home/layout/head.vue +++ b/src/views/home/layout/head.vue @@ -1,31 +1,244 @@ + \ No newline at end of file + + diff --git a/src/views/home/model/bkcz.vue b/src/views/home/model/bkcz.vue new file mode 100644 index 0000000..b770626 --- /dev/null +++ b/src/views/home/model/bkcz.vue @@ -0,0 +1,138 @@ + + + + + + + \ No newline at end of file diff --git a/src/views/home/model/dbCount.vue b/src/views/home/model/dbCount.vue new file mode 100644 index 0000000..a7548d7 --- /dev/null +++ b/src/views/home/model/dbCount.vue @@ -0,0 +1,40 @@ + + + + + + \ No newline at end of file diff --git a/src/views/home/model/fjqk.vue b/src/views/home/model/fjqk.vue new file mode 100644 index 0000000..2337672 --- /dev/null +++ b/src/views/home/model/fjqk.vue @@ -0,0 +1,139 @@ + + + + + + + \ No newline at end of file diff --git a/src/views/home/model/qbfkCount.vue b/src/views/home/model/qbfkCount.vue new file mode 100644 index 0000000..1bd412f --- /dev/null +++ b/src/views/home/model/qbfkCount.vue @@ -0,0 +1,174 @@ + + + + + \ No newline at end of file diff --git a/src/views/home/model/qblyType.vue b/src/views/home/model/qblyType.vue new file mode 100644 index 0000000..fe4cccc --- /dev/null +++ b/src/views/home/model/qblyType.vue @@ -0,0 +1,171 @@ + + + + + + \ No newline at end of file diff --git a/src/views/home/model/qbsbCount.vue b/src/views/home/model/qbsbCount.vue new file mode 100644 index 0000000..fd78447 --- /dev/null +++ b/src/views/home/model/qbsbCount.vue @@ -0,0 +1,29 @@ + + + + + + \ No newline at end of file diff --git a/src/views/home/model/yszs.vue b/src/views/home/model/yszs.vue new file mode 100644 index 0000000..6ab93c8 --- /dev/null +++ b/src/views/home/model/yszs.vue @@ -0,0 +1,29 @@ + + + + + \ No newline at end of file diff --git a/src/views/home/model/zdgk.vue b/src/views/home/model/zdgk.vue new file mode 100644 index 0000000..b766149 --- /dev/null +++ b/src/views/home/model/zdgk.vue @@ -0,0 +1,148 @@ + + + + + + + \ No newline at end of file diff --git a/src/views/home/model/zdryWarning.vue b/src/views/home/model/zdryWarning.vue new file mode 100644 index 0000000..bbd1be0 --- /dev/null +++ b/src/views/home/model/zdryWarning.vue @@ -0,0 +1,153 @@ + + + + + + \ No newline at end of file