system-clients 3.1.96 → 3.1.97-aode
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +16 -16
- package/.gradle/5.2.1/executionHistory/executionHistory.bin +0 -0
- package/.gradle/5.2.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/5.2.1/fileChanges/last-build.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/{5.2.1 → 7.1/dependencies-accessors}/gc.properties +0 -0
- package/.gradle/7.1/executionHistory/executionHistory.bin +0 -0
- package/.gradle/7.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.1/fileChanges/last-build.bin +0 -0
- package/.gradle/7.1/fileHashes/fileHashes.bin +0 -0
- package/.gradle/7.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/{buildOutputCleanup/built.bin → 7.1/gc.properties} +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/checksums/checksums.lock +0 -0
- package/build/webpack.base.conf.js +78 -85
- package/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/gradlew +185 -0
- package/gradlew.bat +89 -0
- package/package.json +4 -4
- package/src/components/Main.vue +512 -622
- package/src/components/equipment/EquipmentManage.vue +65 -65
- package/src/components/equipment/PcAdd.vue +5 -5
- package/src/components/equipment/PcList.vue +5 -5
- package/src/components/equipment/PhoneAdd.vue +4 -4
- package/src/components/equipment/PhoneList.vue +4 -4
- package/src/components/equipment/PosAdd.vue +137 -323
- package/src/components/equipment/PosList.vue +164 -294
- package/src/components/equipment/PosManage.vue +67 -138
- package/src/components/parammanage/ParamManage.vue +2 -2
- package/src/components/parammanage/ParamPage.vue +7 -7
- package/src/components/parammanage/SinglePage.vue +4 -4
- package/src/components/server/Login.vue +47 -70
- package/src/components/server/ResSelect.vue +0 -5
- package/src/components/server/ResSelectGroup.vue +118 -155
- package/src/components/server/RightTree.vue +257 -262
- package/src/components/server/RoleSelector.vue +90 -89
- package/src/plugins/GetLoginInfoService.js +7 -7
- package/src/styles/less/aofeng/standard.less +60 -446
- package/src/styles/less/aofeng/themeOne/BinaryTemplate.less +13 -13
- package/src/styles/less/aofeng/themeOne/systemStyle.less +2650 -2650
- package/src/styles/less/fonts-list.less +4 -4
- package/src/styles/less/stand.less +1 -1
- package/src/styles/less/tables.less +0 -50
- package/src/styles/less/type.less +3 -16
- package/src/styles/less/variables.less +3 -6
- package/src/system.js +83 -93
- package/static/aodelogo.png +0 -0
- package/static/aodenewlogo.png +0 -0
- package/static/{logo.png → ewmlogo.png} +0 -0
- package/.gradle/buildOutputCleanup/cache.properties.lock +0 -1
- package/src/components/TabButton.vue +0 -201
- package/src/components/Tabs.vue +0 -67
- package/src/components/equipment/PosManageBoth.vue +0 -125
- package/src/components/equipment/PosParamAdd.vue +0 -236
- package/src/components/equipment/PosParamList.vue +0 -121
- package/src/components/equipment/PosParamManage.vue +0 -51
- package/src/components/server/ImageVieweTest.vue +0 -56
- package/src/components/server/ImageViewer.vue +0 -350
- package/src/components/server/PcdBuildingSelect.vue +0 -241
- package/src/styles/less/manageStyle/manageStyle/manageChile.less +0 -180
- package/src/styles/less/manageStyle/manageStyle/manageStyle.less +0 -1102
- package/src/styles/less/manageStyle/manageStyle/safeStyle.less +0 -498
- package/static/newStyle/about-us.png +0 -0
- package/yarn-error.log +0 -6896
@@ -1,138 +1,67 @@
|
|
1
|
-
<template>
|
2
|
-
<div class="flex-row">
|
3
|
-
<div :class="{'basic-main':!isChange,'binary-left':isChange}">
|
4
|
-
<pos-list :row="row" @
|
5
|
-
</div>
|
6
|
-
<div class="binary-right" style="margin-left: 10px; width:
|
7
|
-
<pos-add :data="row" :
|
8
|
-
</div>
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
// for (const tmp of selPos) {
|
69
|
-
// if (tmp.f_state==='停用') arrs.push(tmp)
|
70
|
-
// }
|
71
|
-
// } else if(val==='2'){
|
72
|
-
// alertMessage='升级'
|
73
|
-
// for (const tmp of selPos) {
|
74
|
-
// if (tmp.f_state==='正常') arrs.push(tmp)
|
75
|
-
// }
|
76
|
-
// } else {
|
77
|
-
// this.showAlert('出现异常,请重新进操作')
|
78
|
-
// return
|
79
|
-
// }
|
80
|
-
//
|
81
|
-
// await this.$resetpost('rs/logic/batchPos',{data: {tasks: arrs, taskState: val}}, {rejectMsg: null, resolveMsg: null})
|
82
|
-
//
|
83
|
-
// // 需要提示
|
84
|
-
// this.$showAlert(`已经开始批量${alertMessage},选择${selPos.length},其中${arrs.length}台可以正常${alertMessage},具体请留意设备情况,并刷新列表查看执行结果!`)
|
85
|
-
// this.isChange = false
|
86
|
-
// this.close()
|
87
|
-
// },
|
88
|
-
close(){
|
89
|
-
this.batchPos = false
|
90
|
-
},
|
91
|
-
selected(obj, idx) {
|
92
|
-
console.log(obj)
|
93
|
-
if (!(obj instanceof MouseEvent)) {
|
94
|
-
this.isChange = true
|
95
|
-
this.infoadd = true
|
96
|
-
this.row = obj
|
97
|
-
} else {
|
98
|
-
this.$showAlert('如需新增,请点击增加按钮!', 'info', 1000)
|
99
|
-
}
|
100
|
-
}
|
101
|
-
},
|
102
|
-
events: {
|
103
|
-
'search' () {
|
104
|
-
this.infoadd=true
|
105
|
-
this.isChange = false
|
106
|
-
this.row = null
|
107
|
-
this.$refs.list.$refs.paged.$refs.cri.search()
|
108
|
-
},
|
109
|
-
'research' () {
|
110
|
-
console.log('重新查询')
|
111
|
-
this.isChange = false
|
112
|
-
this.row = null
|
113
|
-
},
|
114
|
-
'refresh' () {
|
115
|
-
this.isChange = false
|
116
|
-
this.row = null
|
117
|
-
this.$refs.list.search()
|
118
|
-
},
|
119
|
-
'error' (name, row, res) {
|
120
|
-
this.isChange = false
|
121
|
-
this.row = null
|
122
|
-
},
|
123
|
-
'close' () {
|
124
|
-
this.isChange = false
|
125
|
-
this.row = null
|
126
|
-
|
127
|
-
// this.$refs.list.search()
|
128
|
-
},
|
129
|
-
'add' (val) {
|
130
|
-
this.f_filialeids = val
|
131
|
-
this.infoadd=false
|
132
|
-
this.row = null
|
133
|
-
this.isChange = true
|
134
|
-
this.$refs.list.$refs.paged.$refs.grid.selectStore.selected = null
|
135
|
-
}
|
136
|
-
}
|
137
|
-
}
|
138
|
-
</script>
|
1
|
+
<template>
|
2
|
+
<div class="flex-row">
|
3
|
+
<div :class="{'basic-main':!isChange,'binary-left':isChange}">
|
4
|
+
<pos-list :row="row" @select-changed="selected" style="width:auto;" :f_filialeid.sync="f_filialeids" v-ref:list ></pos-list>
|
5
|
+
</div>
|
6
|
+
<div class="binary-right" style="margin-left: 10px; width: 50%;" v-if="isChange">
|
7
|
+
<pos-add :data="row" :f_filialeids.sync="f_filialeids" v-ref:addbox></pos-add>
|
8
|
+
</div>
|
9
|
+
</div>
|
10
|
+
</template>
|
11
|
+
<script>
|
12
|
+
|
13
|
+
import PosList from './PosList'
|
14
|
+
import PosAdd from './PosAdd'
|
15
|
+
|
16
|
+
export default {
|
17
|
+
title: 'POS终端管理',
|
18
|
+
components: {
|
19
|
+
PosList, PosAdd
|
20
|
+
},
|
21
|
+
data () {
|
22
|
+
return {
|
23
|
+
isChange: false,
|
24
|
+
row: null,
|
25
|
+
|
26
|
+
f_filialeids: ''
|
27
|
+
}
|
28
|
+
},
|
29
|
+
methods: {
|
30
|
+
selected (obj) {
|
31
|
+
this.isChange = true
|
32
|
+
this.row = obj.val
|
33
|
+
}
|
34
|
+
},
|
35
|
+
events: {
|
36
|
+
'search' () {
|
37
|
+
this.isChange = false
|
38
|
+
this.row = null
|
39
|
+
this.$refs.list.$refs.paged.$refs.cri.search()
|
40
|
+
},
|
41
|
+
'research' () {
|
42
|
+
console.log('重新查询')
|
43
|
+
this.isChange = false
|
44
|
+
this.row = null
|
45
|
+
},
|
46
|
+
'refresh' () {
|
47
|
+
this.isChange = false
|
48
|
+
this.row = null
|
49
|
+
this.$refs.list.search()
|
50
|
+
},
|
51
|
+
'error' (name, row, res) {
|
52
|
+
this.isChange = false
|
53
|
+
this.row = null
|
54
|
+
},
|
55
|
+
'close' () {
|
56
|
+
this.isChange = false
|
57
|
+
this.row = null
|
58
|
+
this.$refs.list.search()
|
59
|
+
},
|
60
|
+
'add' () {
|
61
|
+
this.row = null
|
62
|
+
this.isChange = true
|
63
|
+
this.$refs.list.$refs.paged.$refs.grid.selectStore.selected = null
|
64
|
+
}
|
65
|
+
}
|
66
|
+
}
|
67
|
+
</script>
|
@@ -1,9 +1,9 @@
|
|
1
1
|
<template>
|
2
|
-
<div id="unit" class="flex-row"
|
2
|
+
<div id="unit" class="flex-row">
|
3
3
|
<div class="binary-left">
|
4
4
|
<param-page></param-page>
|
5
5
|
</div>
|
6
|
-
<div class="binary-right"
|
6
|
+
<div class="binary-right">
|
7
7
|
<single-page></single-page>
|
8
8
|
</div>
|
9
9
|
</div>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<template>
|
2
2
|
<div class="flex">
|
3
3
|
<p class="bg-info text-center" style="padding: 8px;">参数管理
|
4
|
-
<
|
4
|
+
<span class="btn btn-link add-postition" @click="add('t_parameter')">新增</span>
|
5
5
|
</p>
|
6
6
|
<div class="auto">
|
7
7
|
<form class="form-horizontal" style="margin-bottom: 5px;">
|
@@ -25,7 +25,7 @@
|
|
25
25
|
</form>
|
26
26
|
</div>
|
27
27
|
<div class="span">
|
28
|
-
<data-grid :model="model" v-ref:params @select-changed="selected">
|
28
|
+
<data-grid :model="model" v-ref:params @select-changed="selected" class="list_area table_sy">
|
29
29
|
<template partial='head'>
|
30
30
|
<tr>
|
31
31
|
<th>序号</th>
|
@@ -39,9 +39,9 @@
|
|
39
39
|
<td style="text-align:center">{{row.name}}</td>
|
40
40
|
<td style="text-align:center">{{row.orgname ? row.orgname + '专用' : '全局'}}</td>
|
41
41
|
<td class="flex-around">
|
42
|
-
<button type="button" name="button" class="
|
42
|
+
<button type="button" name="button" class="btn btn-link"
|
43
43
|
@click.stop="$parent.$parent.modifyParam(row, 't_parameter')">修改</button>
|
44
|
-
<button type="button" name="button" class="btn btn-
|
44
|
+
<button type="button" name="button" class="btn btn-link"
|
45
45
|
@click.stop="$parent.$parent.deleteParam(row, 't_parameter')">删除</button>
|
46
46
|
</td>
|
47
47
|
</template>
|
@@ -50,7 +50,7 @@
|
|
50
50
|
|
51
51
|
<p v-if="selectItem" class="bg-info text-center" style="padding: 8px;margin: 8px 0px;">
|
52
52
|
{{selectItem.name}}
|
53
|
-
<
|
53
|
+
<span class="btn btn-link add-postition" @click="add('t_paramvalue')">新增</span>
|
54
54
|
</p>
|
55
55
|
<div v-if="selectItem" class="span">
|
56
56
|
<data-grid :model="params" v-ref:selects >
|
@@ -65,8 +65,8 @@
|
|
65
65
|
<td style="text-align:center">{{$index+1}}</td>
|
66
66
|
<td style="text-align:center">{{row.name}}</td>
|
67
67
|
<td class="flex-around">
|
68
|
-
<button type="button" name="button" class="
|
69
|
-
<button type="button" name="button" class="btn btn-
|
68
|
+
<button type="button" name="button" class="btn btn-link" @click.stop="$parent.$parent.modifyParam(row, 't_paramvalue')">修改</button>
|
69
|
+
<button type="button" name="button" class="btn btn-link" @click.stop="$parent.$parent.deleteParam(row, 't_paramvalue')">删除</button>
|
70
70
|
</td>
|
71
71
|
</template>
|
72
72
|
</data-grid>
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<div class="flex">
|
3
3
|
<p class="bg-info text-center" style="padding: 8px;">
|
4
4
|
单值管理
|
5
|
-
<
|
5
|
+
<span class="btn btn-link add-postition" @click="add()">新增</span>
|
6
6
|
</p>
|
7
7
|
<div class="auto">
|
8
8
|
<form class="form-horizontal" style="margin-bottom: 5px;">
|
@@ -27,7 +27,7 @@
|
|
27
27
|
</div>
|
28
28
|
<div class="span">
|
29
29
|
<partial-view v-ref:single-load>
|
30
|
-
<data-grid :model="model" v-ref:grid >
|
30
|
+
<data-grid :model="model" v-ref:grid class="list_area table_sy">
|
31
31
|
<template partial='head'>
|
32
32
|
<tr>
|
33
33
|
<th>序号</th>
|
@@ -43,9 +43,9 @@
|
|
43
43
|
<td style="text-align:center">{{row.value}}</td>
|
44
44
|
<td style="text-align:center">{{row.orgname ? row.orgname + '专用' : '全局'}}</td>
|
45
45
|
<td class="flex-around">
|
46
|
-
<button type="button" name="button" class="
|
46
|
+
<button type="button" name="button" class="btn btn-link"
|
47
47
|
@click.stop="$parent.$parent.$parent.modifyParam(row)">修改</button>
|
48
|
-
<button type="button" name="button" class="btn btn-
|
48
|
+
<button type="button" name="button" class="btn btn-link"
|
49
49
|
@click.stop="$parent.$parent.$parent.deleteItem(row)">删除</button>
|
50
50
|
</td>
|
51
51
|
</template>
|
@@ -1,26 +1,16 @@
|
|
1
1
|
<template>
|
2
2
|
<div class="syslogin">
|
3
3
|
<div class="login-title" >
|
4
|
-
<div class="
|
5
|
-
<
|
6
|
-
<
|
7
|
-
|
8
|
-
|
9
|
-
<!-- <img src="../../../static/newStyle/login-con.png"/>-->
|
10
|
-
<!-- <span>联系我们</span>-->
|
11
|
-
</div>
|
4
|
+
<div class="login-title-chi" style="white-space: nowrap">
|
5
|
+
<img src="../../../static/newStyle/login-info.png"/>
|
6
|
+
<span>关于我们</span>
|
7
|
+
<img src="../../../static/newStyle/login-con.png"/>
|
8
|
+
<span>联系我们</span>
|
12
9
|
</div>
|
13
10
|
</div>
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
<img style="height:100%;width:100%" src="../../../static/newStyle/about-us.png"/>
|
18
|
-
</article>
|
19
|
-
<footer slot="modal-footer" class="modal-footer">
|
20
|
-
</footer>
|
21
|
-
</modal>
|
22
|
-
|
23
|
-
|
11
|
+
<div class="logopic" >
|
12
|
+
<div class="aodelogo"></div>
|
13
|
+
</div>
|
24
14
|
<div class="logoew" v-if="logoandroid" >
|
25
15
|
<div v-if="logoandroid" class="imglogo"></div>
|
26
16
|
<p class="logocontent">燃气客服系统Android版</p>
|
@@ -32,9 +22,9 @@
|
|
32
22
|
<div class="loginmain-left">
|
33
23
|
<img class="loginmain-left-img" src="../../../static/newStyle/login-left.png">
|
34
24
|
</div>
|
35
|
-
<div class="loginmain-right">
|
25
|
+
<div class="loginmain-right" style="width:45%">
|
36
26
|
|
37
|
-
<p @click="theme()" style="white-space: nowrap"
|
27
|
+
<p @click="theme()" style="white-space: nowrap">燃气客服系统</p>
|
38
28
|
|
39
29
|
<form v-show="!login">
|
40
30
|
<!-- <input type="text" placeholder="用户名" v-model="model.ename" class="usericon">-->
|
@@ -91,6 +81,12 @@
|
|
91
81
|
<p class="form-control-static">{{$login.f.name}}</p>
|
92
82
|
</div>
|
93
83
|
</div>
|
84
|
+
<div class="col-sm-12 form-group">
|
85
|
+
<label class="col-sm-5 control-label">组 织 编 码</label>
|
86
|
+
<div class="col-sm-7">
|
87
|
+
<p class="form-control-static">{{$login.f.number}}</p>
|
88
|
+
</div>
|
89
|
+
</div>
|
94
90
|
<div class="col-sm-12 form-group">
|
95
91
|
<label class="col-sm-5 control-label">所在销售点</label>
|
96
92
|
<div class="col-sm-7">
|
@@ -116,9 +112,6 @@
|
|
116
112
|
import co from 'co'
|
117
113
|
import $ from 'jquery'
|
118
114
|
import Vue from 'vue'
|
119
|
-
import {HttpResetClass} from 'vue-client'
|
120
|
-
|
121
|
-
|
122
115
|
|
123
116
|
let saveGen = function *(self) {
|
124
117
|
try {
|
@@ -206,21 +199,12 @@
|
|
206
199
|
}
|
207
200
|
export default {
|
208
201
|
title: '登录',
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
condition: ` f_type ='变更通知' `
|
216
|
-
}
|
217
|
-
}, {resolveMsg: null, rejectMsg: null})
|
218
|
-
if(res.data.length>0){
|
219
|
-
console.log("---------------获取通知",res.data[0].f_change_message)
|
220
|
-
this.notice=res.data[0].f_change_message
|
221
|
-
}
|
222
|
-
}catch(e){}
|
223
|
-
this.loginother();
|
202
|
+
ready () {
|
203
|
+
if (this.$login && this.$login.getUrlCompileParames('name') && this.$login.getUrlCompileParames('password')) {
|
204
|
+
this.model.ename = this.$login.getUrlCompileParames('name')
|
205
|
+
this.model.password = this.$login.getUrlCompileParames('password')
|
206
|
+
this.confirm()
|
207
|
+
}
|
224
208
|
$('#login-button').click(function (event) {
|
225
209
|
event.preventDefault()
|
226
210
|
$('form').fadeOut(500)
|
@@ -241,9 +225,7 @@
|
|
241
225
|
config: {
|
242
226
|
isMac: false,
|
243
227
|
depPrompt: false,
|
244
|
-
weakPassword:
|
245
|
-
title: '燃气客服系统',
|
246
|
-
distanceLogin: false
|
228
|
+
weakPassword: true
|
247
229
|
},
|
248
230
|
login: false,
|
249
231
|
depPromptShow: false,
|
@@ -254,29 +236,10 @@
|
|
254
236
|
picLyanzhengma: '',
|
255
237
|
// 修改密码弹框展示
|
256
238
|
modifyPwShow: false,
|
257
|
-
logoandroid:
|
258
|
-
showus:false,
|
259
|
-
notice:'',
|
260
|
-
loginotherflag :true
|
239
|
+
logoandroid:true
|
261
240
|
}
|
262
241
|
},
|
263
242
|
methods: {
|
264
|
-
async loginother(){
|
265
|
-
if (this.config.distanceLogin) {
|
266
|
-
if (this.$login && this.$login.getUrlParames('name') ) {
|
267
|
-
let ename = this.$login.getUrlParames('name');
|
268
|
-
let logininfo = await this.$resetpost('rs/logic/getLoginData',{data:{ename:ename}},{resolveMsg: null, rejectMsg: null});
|
269
|
-
if(logininfo.data){
|
270
|
-
if(logininfo.data.ename && logininfo.data.password){
|
271
|
-
this.model.ename = logininfo.data.ename
|
272
|
-
this.model.password =logininfo.data.password
|
273
|
-
let gen = saveGen(this)
|
274
|
-
return co(gen)
|
275
|
-
}
|
276
|
-
}
|
277
|
-
}
|
278
|
-
}
|
279
|
-
},
|
280
243
|
theme(){
|
281
244
|
// var elementList = document.querySelectorAll('body');
|
282
245
|
// console.log(elementList)
|
@@ -368,21 +331,20 @@
|
|
368
331
|
box-sizing: border-box;
|
369
332
|
margin: 0;
|
370
333
|
padding: 0;
|
371
|
-
font-weight:
|
372
|
-
outline: none;
|
334
|
+
font-weight: 300;
|
373
335
|
}
|
374
336
|
|
375
337
|
body {
|
376
338
|
font-family: 'Source Sans Pro', sans-serif;
|
377
339
|
color: white;
|
378
|
-
font-weight:
|
340
|
+
font-weight: 300;
|
379
341
|
}
|
380
342
|
|
381
343
|
body ::-webkit-input-placeholder {
|
382
344
|
/* WebKit browsers */
|
383
345
|
font-family: 'Source Sans Pro', sans-serif;
|
384
346
|
color: white;
|
385
|
-
font-weight:
|
347
|
+
font-weight: 300;
|
386
348
|
}
|
387
349
|
|
388
350
|
body :-moz-placeholder {
|
@@ -390,7 +352,7 @@
|
|
390
352
|
font-family: 'Source Sans Pro', sans-serif;
|
391
353
|
color: white;
|
392
354
|
opacity: 1;
|
393
|
-
font-weight:
|
355
|
+
font-weight: 300;
|
394
356
|
}
|
395
357
|
|
396
358
|
body ::-moz-placeholder {
|
@@ -398,14 +360,14 @@
|
|
398
360
|
font-family: 'Source Sans Pro', sans-serif;
|
399
361
|
color: white;
|
400
362
|
opacity: 1;
|
401
|
-
font-weight:
|
363
|
+
font-weight: 300;
|
402
364
|
}
|
403
365
|
|
404
366
|
body :-ms-input-placeholder {
|
405
367
|
/* Internet Explorer 10+ */
|
406
368
|
font-family: 'Source Sans Pro', sans-serif;
|
407
369
|
color: white;
|
408
|
-
font-weight:
|
370
|
+
font-weight: 300;
|
409
371
|
}
|
410
372
|
|
411
373
|
.wrapper {
|
@@ -474,7 +436,7 @@
|
|
474
436
|
color: white;
|
475
437
|
-webkit-transition-duration: 0.25s;
|
476
438
|
transition-duration: 0.25s;
|
477
|
-
font-weight:
|
439
|
+
font-weight: 300;
|
478
440
|
}
|
479
441
|
|
480
442
|
.form input:hover {
|
@@ -698,10 +660,17 @@
|
|
698
660
|
width:150px;
|
699
661
|
margin: 3px -15px;
|
700
662
|
}
|
663
|
+
.aodelogo {
|
664
|
+
background:url(../../../static/aodelogo.png);
|
665
|
+
background-size:100%;
|
666
|
+
background-repeat: no-repeat;
|
667
|
+
}
|
701
668
|
.imglogo {
|
702
|
-
background:url(../../../static/
|
669
|
+
background:url(../../../static/ewmlogo.png);
|
703
670
|
background-size:100%;
|
671
|
+
background-repeat: no-repeat;
|
704
672
|
}
|
673
|
+
|
705
674
|
.logoew {
|
706
675
|
width:120px;
|
707
676
|
height:120px;
|
@@ -710,6 +679,14 @@
|
|
710
679
|
margin-top:10px;
|
711
680
|
}
|
712
681
|
|
682
|
+
.logopic{
|
683
|
+
width: 23%;
|
684
|
+
height: 100px;
|
685
|
+
float:left;
|
686
|
+
margin-left:3.5%;
|
687
|
+
margin-top:10px;
|
688
|
+
}
|
689
|
+
|
713
690
|
@-webkit-keyframes square {
|
714
691
|
0% {
|
715
692
|
-webkit-transform: translateY(0);
|
@@ -3,7 +3,6 @@
|
|
3
3
|
:value.sync="selectres"
|
4
4
|
:multiple="isMul"
|
5
5
|
search="true"
|
6
|
-
:disabled="mustselect"
|
7
6
|
:close-on-select="!isMul"
|
8
7
|
@change="resChange"
|
9
8
|
>
|
@@ -34,10 +33,6 @@
|
|
34
33
|
type: Array,
|
35
34
|
default() { return [] },
|
36
35
|
},
|
37
|
-
mustselect: {
|
38
|
-
type: Boolean,
|
39
|
-
default: false
|
40
|
-
},
|
41
36
|
},
|
42
37
|
data () {
|
43
38
|
return {
|