system-clients 3.0.47 → 3.0.48-fanxian
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/CHANGELOG.md +51 -51
- package/build/webpack.base.conf.js +1 -1
- package/build.gradle +6 -6
- package/package.json +102 -102
- package/src/components/Main.vue +102 -3
- package/src/components/equipment/EquipmentManage.vue +2 -2
- package/src/components/parammanage/AlarmInformation.vue +124 -0
- package/src/components/parammanage/ParamPage.vue +8 -8
- package/src/components/parammanage/ParamPages.vue +4 -12
- package/src/components/parammanage/SinglePage.vue +15 -13
- package/src/components/parammanage/SinglePages.vue +9 -15
- package/src/components/server/Login.vue +6 -5
- package/src/components/server/ModifyPw.vue +23 -4
- package/src/components/server/ResSelectGroup.vue +140 -140
- package/src/components/server/TestResSelect.vue +58 -58
- package/src/plugins/GetLoginInfoService.js +14 -18
- package/src/system.js +2 -0
- package/static/newStyle/alarm.mp3 +0 -0
- package/test/unit/karma.conf.js +49 -49
- package/test/unit/specs/components/parammanage/ParamPage.spec.js +20 -20
- package/test/unit/specs/components/server/LeftTree/LeftTree.spec.js +22 -22
- package/.gradle/3.5.1/file-changes/last-build.bin +0 -0
- package/.gradle/3.5.1/taskHistory/taskHistory.lock +0 -0
@@ -9,17 +9,28 @@ let loginGen = async function (name, password) {
|
|
9
9
|
encrypt.setPublicKey('MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqPvovSfXcwBbW8cKMCgwqNpsYuzF8RPAPFb7LGsnVo44JhM/xxzDyzoYtdfNmtbIuKVi9PzIsyp6rg+09gbuI6UGwBZ5DWBDBMqv5MPdOF5dCQkB2Bbr5yPfURPENypUz+pBFBg41d+BC+rwRiXELwKy7Y9caD/MtJyHydj8OUwIDAQAB');
|
10
10
|
console.log(data)
|
11
11
|
|
12
|
-
|
12
|
+
const getLogin = await Vue.resetpost('/rs/logic/getLogin', data, {resolveMsg: null, rejectMsg: null}, 'RSA')
|
13
13
|
if (getLogin.data.states === '登录成功') {
|
14
14
|
// 调用远程登录服务,获取所有有权访问的功能
|
15
15
|
data = {username: name, password: password}
|
16
16
|
data = encrypt.encrypt(JSON.stringify(data))
|
17
|
-
|
17
|
+
const resource = await Vue.resetpost(`/rs/user/userLogin/客服系统`, data, {
|
18
18
|
resolveMsg: null,
|
19
19
|
rejectMsg: null
|
20
20
|
})
|
21
|
+
// 兼容旧版ldao
|
22
|
+
if ((JSON.stringify(resource.data).startsWith("{") || JSON.stringify(resource.data).startsWith("[")) && resource.data.code && resource.data.msg && resource.data.code !== 200) {
|
23
|
+
throw {status: 555, data: resource.data.msg}
|
24
|
+
}
|
25
|
+
|
21
26
|
console.log('登陆获取Util', JSON.stringify(resource.data))
|
22
|
-
|
27
|
+
// 兼容旧版ldao,旧版不返回code
|
28
|
+
if ((JSON.stringify(resource.data).startsWith("{") || JSON.stringify(resource.data).startsWith("[")) && resource.data.code && resource.data.msg) {
|
29
|
+
Vue.$login.f = resource.data.data
|
30
|
+
} else {
|
31
|
+
Vue.$login.f = resource.data
|
32
|
+
}
|
33
|
+
|
23
34
|
//获取jwt
|
24
35
|
Vue.$login.jwt = getLogin.data.jwt
|
25
36
|
// 把登录用户添加到cookie里
|
@@ -111,21 +122,6 @@ let loginGen = async function (name, password) {
|
|
111
122
|
}catch (error) {
|
112
123
|
Vue.$login.f.f_changemeterman = []
|
113
124
|
console.log('换表员模块',error)
|
114
|
-
}
|
115
|
-
// 获取资源服务权限
|
116
|
-
try {
|
117
|
-
let getLic = await Vue.resetpost('/rs/search', {data: {
|
118
|
-
source: 'this.getRights().where(row.getType()==$function$ && row.getPath($name$).indexOf($资源操作$) != -1)',
|
119
|
-
userid: Vue.$login.f.id
|
120
|
-
}}, {resolveMsg: null, rejectMsg: null})
|
121
|
-
let arry=[]
|
122
|
-
getLic.data.forEach((item) => {
|
123
|
-
arry.push(item.name)
|
124
|
-
})
|
125
|
-
Vue.$login.f.lics=arry
|
126
|
-
}catch (error) {
|
127
|
-
Vue.$login.f.f_gasman = []
|
128
|
-
console.log('资源服务权限',error)
|
129
125
|
}
|
130
126
|
// 票据使用人
|
131
127
|
try {
|
package/src/system.js
CHANGED
@@ -59,6 +59,8 @@ export default function (val) {
|
|
59
59
|
Vue.component('param-pages', (resolve) => { require(['./components/parammanage/ParamPages'], resolve) })
|
60
60
|
// 参数管理
|
61
61
|
Vue.component('single-pages', (resolve) => { require(['./components/parammanage/SinglePages'], resolve) })
|
62
|
+
// 异常报警信息
|
63
|
+
Vue.component('alarm-information', (resolve) => { require(['./components/parammanage/AlarmInformation'], resolve) })
|
62
64
|
|
63
65
|
// 终端管理
|
64
66
|
Vue.component('equipment-manage', (resolve) => { require(['./components/equipment/EquipmentManage'], resolve) })
|
Binary file
|
package/test/unit/karma.conf.js
CHANGED
@@ -1,49 +1,49 @@
|
|
1
|
-
// This is a karma config file. For more details see
|
2
|
-
// http://karma-runner.github.io/0.13/config/configuration-file.html
|
3
|
-
// we are also using it with karma-webpack
|
4
|
-
// https://github.com/webpack/karma-webpack
|
5
|
-
|
6
|
-
var webpackConfig = require('../../build/webpack.test.conf')
|
7
|
-
|
8
|
-
module.exports = function (config) {
|
9
|
-
config.set({
|
10
|
-
customContextFile: './test.html',
|
11
|
-
// to run in additional browsers:
|
12
|
-
// 1. install corresponding karma launcher
|
13
|
-
// http://karma-runner.github.io/0.13/config/browsers.html
|
14
|
-
// 2. add it to the `browsers` array below.
|
15
|
-
browsers: ['Chrome_without_security'],
|
16
|
-
customLaunchers: {
|
17
|
-
Chrome_without_security: {
|
18
|
-
base: 'Chrome',
|
19
|
-
flags: ['--disable-web-security']
|
20
|
-
}
|
21
|
-
},
|
22
|
-
proxies: {
|
23
|
-
//'/rs': 'http://202.108.65.218:9001/rs',
|
24
|
-
// '/rs': 'http://127.0.0.1:8080/rs',
|
25
|
-
'/rs': 'http://192.168.50.222:8300/rs',
|
26
|
-
//'/rs/report': 'http://127.0.0.1:8080/rs/report',
|
27
|
-
//'/rs/logic/getLogin': 'http://127.0.0.1:8080/rs/logic/getLogin'
|
28
|
-
// '/rs/logic': 'http://127.0.0.1:8888/product/rs/logic',
|
29
|
-
},
|
30
|
-
autoWatch: true,
|
31
|
-
frameworks: ['mocha', 'sinon-chai'],
|
32
|
-
reporters: ['spec', 'coverage'],
|
33
|
-
files: ['./index.js'],
|
34
|
-
preprocessors: {
|
35
|
-
'./index.js': ['webpack', 'sourcemap']
|
36
|
-
},
|
37
|
-
webpack: webpackConfig,
|
38
|
-
webpackMiddleware: {
|
39
|
-
noInfo: true
|
40
|
-
},
|
41
|
-
coverageReporter: {
|
42
|
-
dir: './coverage',
|
43
|
-
reporters: [
|
44
|
-
{ type: 'lcov', subdir: '.' },
|
45
|
-
{ type: 'text-summary' }
|
46
|
-
]
|
47
|
-
}
|
48
|
-
})
|
49
|
-
}
|
1
|
+
// This is a karma config file. For more details see
|
2
|
+
// http://karma-runner.github.io/0.13/config/configuration-file.html
|
3
|
+
// we are also using it with karma-webpack
|
4
|
+
// https://github.com/webpack/karma-webpack
|
5
|
+
|
6
|
+
var webpackConfig = require('../../build/webpack.test.conf')
|
7
|
+
|
8
|
+
module.exports = function (config) {
|
9
|
+
config.set({
|
10
|
+
customContextFile: './test.html',
|
11
|
+
// to run in additional browsers:
|
12
|
+
// 1. install corresponding karma launcher
|
13
|
+
// http://karma-runner.github.io/0.13/config/browsers.html
|
14
|
+
// 2. add it to the `browsers` array below.
|
15
|
+
browsers: ['Chrome_without_security'],
|
16
|
+
customLaunchers: {
|
17
|
+
Chrome_without_security: {
|
18
|
+
base: 'Chrome',
|
19
|
+
flags: ['--disable-web-security']
|
20
|
+
}
|
21
|
+
},
|
22
|
+
proxies: {
|
23
|
+
//'/rs': 'http://202.108.65.218:9001/rs',
|
24
|
+
// '/rs': 'http://127.0.0.1:8080/rs',
|
25
|
+
'/rs': 'http://192.168.50.222:8300/rs',
|
26
|
+
//'/rs/report': 'http://127.0.0.1:8080/rs/report',
|
27
|
+
//'/rs/logic/getLogin': 'http://127.0.0.1:8080/rs/logic/getLogin'
|
28
|
+
// '/rs/logic': 'http://127.0.0.1:8888/product/rs/logic',
|
29
|
+
},
|
30
|
+
autoWatch: true,
|
31
|
+
frameworks: ['mocha', 'sinon-chai'],
|
32
|
+
reporters: ['spec', 'coverage'],
|
33
|
+
files: ['./index.js'],
|
34
|
+
preprocessors: {
|
35
|
+
'./index.js': ['webpack', 'sourcemap']
|
36
|
+
},
|
37
|
+
webpack: webpackConfig,
|
38
|
+
webpackMiddleware: {
|
39
|
+
noInfo: true
|
40
|
+
},
|
41
|
+
coverageReporter: {
|
42
|
+
dir: './coverage',
|
43
|
+
reporters: [
|
44
|
+
{ type: 'lcov', subdir: '.' },
|
45
|
+
{ type: 'text-summary' }
|
46
|
+
]
|
47
|
+
}
|
48
|
+
})
|
49
|
+
}
|
@@ -1,20 +1,20 @@
|
|
1
|
-
import Vue from 'vue'
|
2
|
-
import init from 'test/unit/init'
|
3
|
-
import { TestUtil } from 'vue-client'
|
4
|
-
|
5
|
-
import ParamPage from 'src/components/parammanage/ParamPage'
|
6
|
-
|
7
|
-
describe('ParamPage: 参数管理', () => {
|
8
|
-
let vm = null
|
9
|
-
before(async function () {
|
10
|
-
init()
|
11
|
-
await Vue.$login.login('cdy', '1')
|
12
|
-
})
|
13
|
-
|
14
|
-
it.only('正确显示', async function() {
|
15
|
-
vm = await TestUtil.createAsyncTest(ParamPage, {
|
16
|
-
})
|
17
|
-
})
|
18
|
-
|
19
|
-
})
|
20
|
-
|
1
|
+
import Vue from 'vue'
|
2
|
+
import init from 'test/unit/init'
|
3
|
+
import { TestUtil } from 'vue-client'
|
4
|
+
|
5
|
+
import ParamPage from 'src/components/parammanage/ParamPage'
|
6
|
+
|
7
|
+
describe('ParamPage: 参数管理', () => {
|
8
|
+
let vm = null
|
9
|
+
before(async function () {
|
10
|
+
init()
|
11
|
+
await Vue.$login.login('cdy', '1')
|
12
|
+
})
|
13
|
+
|
14
|
+
it.only('正确显示', async function() {
|
15
|
+
vm = await TestUtil.createAsyncTest(ParamPage, {
|
16
|
+
})
|
17
|
+
})
|
18
|
+
|
19
|
+
})
|
20
|
+
|
@@ -1,22 +1,22 @@
|
|
1
|
-
import Vue from 'vue'
|
2
|
-
import init from 'test/unit/init'
|
3
|
-
import { TestUtil } from 'vue-client'
|
4
|
-
import App from './App'
|
5
|
-
|
6
|
-
describe('LeftTree: 功能树', () => {
|
7
|
-
let vm = null
|
8
|
-
|
9
|
-
before(async function() {
|
10
|
-
init()
|
11
|
-
await Vue.$login.login('hns', '1')
|
12
|
-
})
|
13
|
-
|
14
|
-
it('正确显示', function() {
|
15
|
-
vm = TestUtil.createTest(App, {})
|
16
|
-
let row = {data: {navigate: 'http://127.0.0.1:8084', name: '百度'}}
|
17
|
-
vm.$refs.tree.open(row)
|
18
|
-
})
|
19
|
-
})
|
20
|
-
|
21
|
-
// also see example testing a component with mocks at
|
22
|
-
// https://github.com/vuejs/vue-loader-example/blob/master/test/unit/a.spec.js#L24-L49
|
1
|
+
import Vue from 'vue'
|
2
|
+
import init from 'test/unit/init'
|
3
|
+
import { TestUtil } from 'vue-client'
|
4
|
+
import App from './App'
|
5
|
+
|
6
|
+
describe('LeftTree: 功能树', () => {
|
7
|
+
let vm = null
|
8
|
+
|
9
|
+
before(async function() {
|
10
|
+
init()
|
11
|
+
await Vue.$login.login('hns', '1')
|
12
|
+
})
|
13
|
+
|
14
|
+
it('正确显示', function() {
|
15
|
+
vm = TestUtil.createTest(App, {})
|
16
|
+
let row = {data: {navigate: 'http://127.0.0.1:8084', name: '百度'}}
|
17
|
+
vm.$refs.tree.open(row)
|
18
|
+
})
|
19
|
+
})
|
20
|
+
|
21
|
+
// also see example testing a component with mocks at
|
22
|
+
// https://github.com/vuejs/vue-loader-example/blob/master/test/unit/a.spec.js#L24-L49
|
Binary file
|
Binary file
|