init
26
src/App.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<template>
|
||||
<div id="app">
|
||||
<v-toast v-show="showToast"></v-toast>
|
||||
<v-dialog v-show="showAlert"></v-dialog>
|
||||
<router-view/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import toast from '@/components/toast'
|
||||
import dialog from '@/components/dialog'
|
||||
import { mapGetters } from 'vuex'
|
||||
export default {
|
||||
name: 'App',
|
||||
components: {
|
||||
'v-toast': toast,
|
||||
'v-dialog': dialog
|
||||
},
|
||||
data () {
|
||||
return {}
|
||||
},
|
||||
computed: {
|
||||
...mapGetters(['showToast', 'showAlert'])
|
||||
}
|
||||
}
|
||||
</script>
|
||||
18
src/assets/css/iconfont.styl
Normal file
@@ -0,0 +1,18 @@
|
||||
@font-face {
|
||||
font-family: "iconfont"; /* Project id 1255596 */
|
||||
src: url('iconfont/iconfont.woff2?t=1620977303191') format('woff2'),
|
||||
url('iconfont/iconfont.woff?t=1620977303191') format('woff'),
|
||||
url('iconfont/iconfont.ttf?t=1620977303191') format('truetype');
|
||||
}
|
||||
|
||||
.iconfont {
|
||||
font-family: "iconfont" !important;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.icon-guanbi:before {
|
||||
content: "\e60f";
|
||||
}
|
||||
37
src/assets/css/iconfont/iconfont.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"id": "1255596",
|
||||
"name": "nl-hht-hl",
|
||||
"font_family": "iconfont",
|
||||
"css_prefix_text": "icon-",
|
||||
"description": "",
|
||||
"glyphs": [
|
||||
{
|
||||
"icon_id": "2229060",
|
||||
"name": "无信号",
|
||||
"font_class": "no-signal",
|
||||
"unicode": "e76b",
|
||||
"unicode_decimal": 59243
|
||||
},
|
||||
{
|
||||
"icon_id": "400034",
|
||||
"name": "下拉",
|
||||
"font_class": "htmal5icon03",
|
||||
"unicode": "e626",
|
||||
"unicode_decimal": 58918
|
||||
},
|
||||
{
|
||||
"icon_id": "731140",
|
||||
"name": "选择",
|
||||
"font_class": "guanbi1",
|
||||
"unicode": "e608",
|
||||
"unicode_decimal": 58888
|
||||
},
|
||||
{
|
||||
"icon_id": "4736203",
|
||||
"name": "关闭",
|
||||
"font_class": "guanbi",
|
||||
"unicode": "e60f",
|
||||
"unicode_decimal": 58895
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
src/assets/css/iconfont/iconfont.ttf
Normal file
BIN
src/assets/css/iconfont/iconfont.woff
Normal file
BIN
src/assets/css/iconfont/iconfont.woff2
Normal file
47
src/assets/css/mixin.styl
Normal file
@@ -0,0 +1,47 @@
|
||||
$green = #30EBC9
|
||||
$yellow = #E2BB0E
|
||||
$gray = #516282
|
||||
$orange = #F96700
|
||||
$green2 = #65d837
|
||||
|
||||
.green
|
||||
background-color $green
|
||||
.yellow
|
||||
background-color $yellow
|
||||
.gray
|
||||
background-color $gray
|
||||
.orange
|
||||
background-color $orange
|
||||
.green2
|
||||
background-color $green2
|
||||
|
||||
//宽高
|
||||
_wh(w, h)
|
||||
width: w
|
||||
height: h
|
||||
|
||||
//字体大小、行高、颜色
|
||||
_font(size,height,color=#ffffff,weight=normal,align=center)
|
||||
font-size: size
|
||||
line-height: height
|
||||
color: color
|
||||
font-weight: weight
|
||||
text-align: align
|
||||
|
||||
// 背景图片地址和大小
|
||||
_bis(url,w=100%,h=100%,x=center,y=center,r=no-repeat)
|
||||
background-position: x y
|
||||
background-size: w h
|
||||
background-image: url(url)
|
||||
background-repeat: r
|
||||
|
||||
// 背景图片改变颜色
|
||||
_shadow(w,c)
|
||||
filter drop-shadow(w 0 0 c)
|
||||
|
||||
//flex 布局和 子元素 对其方式
|
||||
_fj(c=column, x=space-between,y=center)
|
||||
display: flex
|
||||
flex-direction: c
|
||||
justify-content: x
|
||||
align-items: y
|
||||
154
src/assets/css/reset.css
Normal file
@@ -0,0 +1,154 @@
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
b, u, i, center,
|
||||
dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||
article, aside, canvas, details, embed,
|
||||
figure, figcaption, footer, header,
|
||||
menu, nav, output, ruby, section, summary,
|
||||
time, mark, audio, video, input {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font-size: 0.16rem;
|
||||
line-height: inherit;
|
||||
color: #ffffff;
|
||||
font-weight: normal;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
/* HTML5 display-role reset for older browsers */
|
||||
article, aside, details, figcaption, figure,
|
||||
footer, header, menu, nav, section {
|
||||
display: block;
|
||||
}
|
||||
|
||||
body {
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
blockquote, q {
|
||||
quotes: none;
|
||||
}
|
||||
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after {
|
||||
content: none;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
/* custom */
|
||||
a,a:link,a:visited,a:active {
|
||||
color: #7e8c8d;
|
||||
text-decoration: none;
|
||||
-webkit-backface-visibility: hidden;
|
||||
}
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 5px;
|
||||
height: 5px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track-piece {
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
-webkit-border-radius: 6px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:vertical {
|
||||
height: 5px;
|
||||
background-color: rgba(125, 125, 125, 0.7);
|
||||
-webkit-border-radius: 6px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:horizontal {
|
||||
width: 5px;
|
||||
background-color: rgba(125, 125, 125, 0.7);
|
||||
-webkit-border-radius: 6px;
|
||||
}
|
||||
|
||||
html, body {
|
||||
width: 100%;
|
||||
max-width: 1920px;
|
||||
min-width: 1550px;
|
||||
height: 1040px;
|
||||
/* width: 1920px;
|
||||
height: 1040px; */
|
||||
}
|
||||
|
||||
body {
|
||||
-webkit-text-size-adjust: none;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
-moz-user-select:none;/*火狐*/
|
||||
-webkit-user-select:none;/*webkit浏览器*/
|
||||
-ms-user-select:none;/*IE10*/
|
||||
-khtml-user-select:none;/*早期浏览器*/
|
||||
user-select:none;
|
||||
background: #05032a center center / 100% 100% url(../../assets/images/bg.png) no-repeat;
|
||||
}
|
||||
|
||||
div, p {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.clearfix {
|
||||
zoom: 1;
|
||||
}
|
||||
|
||||
.clearfix:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.ellipsis {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.fl {
|
||||
float: left !important;
|
||||
}
|
||||
|
||||
.fr {
|
||||
float: right !important;
|
||||
}
|
||||
|
||||
.hide {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.fontselect {
|
||||
-moz-user-select:none;/*火狐*/
|
||||
-webkit-user-select:none;/*webkit浏览器*/
|
||||
-ms-user-select:none;/*IE10*/
|
||||
-khtml-user-select:none;/*早期浏览器*/
|
||||
user-select:none;
|
||||
}
|
||||
|
||||
.flexcenter {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.pl10 {padding-left: 10px;}
|
||||
.pl20 {padding-left: 20px;}
|
||||
.mgb3 {margin-bottom: .03rem;}
|
||||
.mgb14 {margin-bottom: .14rem;}
|
||||
.mgb08 {margin-bottom: .08rem;}
|
||||
.mgt3 { margin-top: .03rem;}
|
||||
.mgt80 { margin-top: .8rem;}
|
||||
BIN
src/assets/images/bg.png
Normal file
|
After Width: | Height: | Size: 1.3 MiB |
BIN
src/assets/images/bg_item.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
src/assets/images/devmoni/1hy.jpg
Normal file
|
After Width: | Height: | Size: 133 KiB |
BIN
src/assets/images/devmoni/1hyw.jpg
Normal file
|
After Width: | Height: | Size: 211 KiB |
BIN
src/assets/images/devmoni/2hy.jpg
Normal file
|
After Width: | Height: | Size: 133 KiB |
BIN
src/assets/images/devmoni/2hyw.jpg
Normal file
|
After Width: | Height: | Size: 211 KiB |
BIN
src/assets/images/devmoni/CDJQR.jpg
Normal file
|
After Width: | Height: | Size: 158 KiB |
BIN
src/assets/images/devmoni/MDJQR.jpg
Normal file
|
After Width: | Height: | Size: 199 KiB |
BIN
src/assets/images/devmoni/agv1.jpg
Normal file
|
After Width: | Height: | Size: 140 KiB |
BIN
src/assets/images/devmoni/agv2.jpg
Normal file
|
After Width: | Height: | Size: 180 KiB |
BIN
src/assets/images/devmoni/dtj.jpg
Normal file
|
After Width: | Height: | Size: 214 KiB |
BIN
src/assets/images/devmoni/hj.jpg
Normal file
|
After Width: | Height: | Size: 152 KiB |
BIN
src/assets/images/devmoni/hlj.jpg
Normal file
|
After Width: | Height: | Size: 173 KiB |
BIN
src/assets/images/devmoni/jxs.jpg
Normal file
|
After Width: | Height: | Size: 181 KiB |
BIN
src/assets/images/devmoni/kcd.jpg
Normal file
|
After Width: | Height: | Size: 198 KiB |
BIN
src/assets/images/devmoni/rgv.jpg
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
src/assets/images/devmoni/yzj.jpg
Normal file
|
After Width: | Height: | Size: 153 KiB |
BIN
src/assets/images/devmoni/zbcd.jpg
Normal file
|
After Width: | Height: | Size: 198 KiB |
BIN
src/assets/images/dot.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
src/assets/images/dot_line.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
src/assets/images/homepg/1.png
Normal file
|
After Width: | Height: | Size: 120 KiB |
BIN
src/assets/images/homepg/1_back.png
Normal file
|
After Width: | Height: | Size: 139 KiB |
BIN
src/assets/images/homepg/3.png
Normal file
|
After Width: | Height: | Size: 416 B |
BIN
src/assets/images/homepg/4.png
Normal file
|
After Width: | Height: | Size: 561 B |
BIN
src/assets/images/homepg/5.png
Normal file
|
After Width: | Height: | Size: 753 B |
BIN
src/assets/images/homepg/6.png
Normal file
|
After Width: | Height: | Size: 521 B |
BIN
src/assets/images/homepg/a1_1.png
Normal file
|
After Width: | Height: | Size: 829 B |
BIN
src/assets/images/homepg/a1_2.png
Normal file
|
After Width: | Height: | Size: 801 B |
BIN
src/assets/images/homepg/a1_3.png
Normal file
|
After Width: | Height: | Size: 764 B |
BIN
src/assets/images/homepg/a1_4.png
Normal file
|
After Width: | Height: | Size: 815 B |
BIN
src/assets/images/homepg/a1_5.png
Normal file
|
After Width: | Height: | Size: 739 B |
BIN
src/assets/images/homepg/aaa.png
Normal file
|
After Width: | Height: | Size: 123 KiB |
BIN
src/assets/images/homepg/agv_b.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
src/assets/images/homepg/agv_l.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
src/assets/images/homepg/agv_r.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
src/assets/images/homepg/agv_z.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
src/assets/images/homepg/bdc1_1.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
src/assets/images/homepg/bdc1_2.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
src/assets/images/homepg/bdc1_3.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
src/assets/images/homepg/bdc1_4.png
Normal file
|
After Width: | Height: | Size: 944 B |
BIN
src/assets/images/homepg/dtj1_1.png
Normal file
|
After Width: | Height: | Size: 955 B |
BIN
src/assets/images/homepg/dtj1_2.png
Normal file
|
After Width: | Height: | Size: 978 B |
BIN
src/assets/images/homepg/dtj1_3.png
Normal file
|
After Width: | Height: | Size: 1000 B |
BIN
src/assets/images/homepg/dtj1_4.png
Normal file
|
After Width: | Height: | Size: 928 B |
BIN
src/assets/images/homepg/dz1_1.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
src/assets/images/homepg/dz1_2.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
src/assets/images/homepg/dz1_3.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
src/assets/images/homepg/dz1_4.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
src/assets/images/homepg/jxs1_1.png
Normal file
|
After Width: | Height: | Size: 751 B |
BIN
src/assets/images/homepg/jxs1_2.png
Normal file
|
After Width: | Height: | Size: 749 B |
BIN
src/assets/images/homepg/jxs1_3.png
Normal file
|
After Width: | Height: | Size: 778 B |
BIN
src/assets/images/homepg/jxs1_4.png
Normal file
|
After Width: | Height: | Size: 708 B |
BIN
src/assets/images/homepg/jxs2_1.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
src/assets/images/homepg/jxs2_2.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
src/assets/images/homepg/jxs2_3.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
src/assets/images/homepg/jxs2_4.png
Normal file
|
After Width: | Height: | Size: 972 B |
BIN
src/assets/images/homepg/jz.png
Normal file
|
After Width: | Height: | Size: 771 B |
BIN
src/assets/images/homepg/ktp.png
Normal file
|
After Width: | Height: | Size: 416 B |
BIN
src/assets/images/homepg/kyc.png
Normal file
|
After Width: | Height: | Size: 561 B |
BIN
src/assets/images/homepg/mtp.png
Normal file
|
After Width: | Height: | Size: 753 B |
BIN
src/assets/images/homepg/nj1_1.png
Normal file
|
After Width: | Height: | Size: 937 B |
BIN
src/assets/images/homepg/nj1_2.png
Normal file
|
After Width: | Height: | Size: 952 B |
BIN
src/assets/images/homepg/nj1_3.png
Normal file
|
After Width: | Height: | Size: 936 B |
BIN
src/assets/images/homepg/nj1_4.png
Normal file
|
After Width: | Height: | Size: 901 B |
BIN
src/assets/images/homepg/ya1_1.png
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
src/assets/images/homepg/yai1_1.png
Normal file
|
After Width: | Height: | Size: 845 B |
BIN
src/assets/images/homepg/yai1_2.png
Normal file
|
After Width: | Height: | Size: 867 B |
BIN
src/assets/images/homepg/yai1_3.png
Normal file
|
After Width: | Height: | Size: 849 B |
BIN
src/assets/images/homepg/yai1_4.png
Normal file
|
After Width: | Height: | Size: 824 B |
BIN
src/assets/images/homepg/yal1_1.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
src/assets/images/homepg/yal1_2.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
src/assets/images/homepg/yal1_3.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
src/assets/images/homepg/yal1_4.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
src/assets/images/homepg/yao1_1.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
src/assets/images/homepg/yao1_2.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
src/assets/images/homepg/yao1_3.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
src/assets/images/homepg/yao1_4.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
src/assets/images/homepg/yar1_1.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
src/assets/images/homepg/yar1_2.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
src/assets/images/homepg/yar1_3.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
src/assets/images/homepg/yar1_4.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
src/assets/images/logitech/arrow01.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
src/assets/images/logitech/arrow02.png
Normal file
|
After Width: | Height: | Size: 945 B |
BIN
src/assets/images/logitech/arrow03.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
src/assets/images/logitech/arrow04.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
src/assets/images/logitech/arrow05.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
src/assets/images/logitech/arrow06.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
src/assets/images/logitech/machine01.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
src/assets/images/logitech/machine02.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
src/assets/images/logitech/machine03.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
src/assets/images/logitech/machine04.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
src/assets/images/logitech/machine_none.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |