safecheck-client 3.0.35-25 → 3.0.35-28
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/components/report/CheckPlanAreaList.vue +1 -1
- package/src/filiale/bayan/pc/SelectCheckPlan.vue +396 -396
- package/src/filiale/huaran/pc/PlanManage.vue +934 -887
- package/src/filiale/huaran/pc/checkUserList.vue +900 -867
- package/src/filiale/huaran/pc.js +28 -27
- package/src/main.js +33 -33
package/src/filiale/huaran/pc.js
CHANGED
@@ -1,27 +1,28 @@
|
|
1
|
-
// 分公司特殊组件页面注册
|
2
|
-
import Vue from "vue";
|
3
|
-
|
4
|
-
//手机特殊目录注册到该文件中
|
5
|
-
let specialComp = {
|
6
|
-
|
7
|
-
'plan-manage': (resolve) => { require(['./pc/PlanManage'], resolve) },
|
8
|
-
'paper-main': (resolve) => { require(['./pc/PaperList.vue'], resolve) },
|
9
|
-
'check-book-search-area': (resolve) => { require(['./pc/CheckBookSearchArea.vue'], resolve) },
|
10
|
-
'check-book-search-unit': (resolve) => { require(['./pc/CheckBookSearchUnit.vue'], resolve) },
|
11
|
-
'check-book-search-user': (resolve) => { require(['./pc/CheckBookSearchUser.vue'], resolve) },
|
12
|
-
'check-book-details': (resolve) => { require(['./pc/CheckBookDetails.vue'], resolve) },
|
13
|
-
'check-book-company': (resolve) => { require(['./pc/CheckBookCompany.vue'], resolve) },
|
14
|
-
'check-book-area': (resolve) => { require(['./pc/CheckBookArea.vue'], resolve) },
|
15
|
-
'check-book-user': (resolve) => { require(['./pc/CheckBookUser.vue'], resolve) },
|
16
|
-
'check-book-list': (resolve) => { require(['./pc/CheckBookList.vue'], resolve) },
|
17
|
-
'check-book-all': (resolve) => { require(['./pc/CheckBookAll.vue'], resolve) },
|
18
|
-
'check-book': (resolve) => { require(['./pc/CheckBook.vue'], resolve) },
|
19
|
-
'check-
|
20
|
-
'check-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
1
|
+
// 分公司特殊组件页面注册
|
2
|
+
import Vue from "vue";
|
3
|
+
|
4
|
+
//手机特殊目录注册到该文件中
|
5
|
+
let specialComp = {
|
6
|
+
|
7
|
+
'plan-manage': (resolve) => { require(['./pc/PlanManage'], resolve) },
|
8
|
+
'paper-main': (resolve) => { require(['./pc/PaperList.vue'], resolve) },
|
9
|
+
'check-book-search-area': (resolve) => { require(['./pc/CheckBookSearchArea.vue'], resolve) },
|
10
|
+
'check-book-search-unit': (resolve) => { require(['./pc/CheckBookSearchUnit.vue'], resolve) },
|
11
|
+
'check-book-search-user': (resolve) => { require(['./pc/CheckBookSearchUser.vue'], resolve) },
|
12
|
+
'check-book-details': (resolve) => { require(['./pc/CheckBookDetails.vue'], resolve) },
|
13
|
+
'check-book-company': (resolve) => { require(['./pc/CheckBookCompany.vue'], resolve) },
|
14
|
+
'check-book-area': (resolve) => { require(['./pc/CheckBookArea.vue'], resolve) },
|
15
|
+
'check-book-user': (resolve) => { require(['./pc/CheckBookUser.vue'], resolve) },
|
16
|
+
'check-book-list': (resolve) => { require(['./pc/CheckBookList.vue'], resolve) },
|
17
|
+
'check-book-all': (resolve) => { require(['./pc/CheckBookAll.vue'], resolve) },
|
18
|
+
'check-book': (resolve) => { require(['./pc/CheckBook.vue'], resolve) },
|
19
|
+
'check-book-entry': (resolve) => { require(['./pc/CheckBookEntry.vue'], resolve) },
|
20
|
+
'check-plan-list': (resolve) => { require(['./pc/checkPlanList'], resolve) },
|
21
|
+
'check-user-list': (resolve) => { require(['./pc/checkUserList'], resolve) },
|
22
|
+
|
23
|
+
}
|
24
|
+
exports.specialComp = specialComp
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
|
package/src/main.js
CHANGED
@@ -1,33 +1,33 @@
|
|
1
|
-
import Vue from 'vue'
|
2
|
-
import App from './App'
|
3
|
-
import { all } from 'vue-client'
|
4
|
-
import { system } from 'system-clients'
|
5
|
-
import safecheck from './safecheck'
|
6
|
-
import echarts from 'echarts'
|
7
|
-
// import safecheck from './rongcheng'
|
8
|
-
|
9
|
-
all()
|
10
|
-
// 验证码开关赋值
|
11
|
-
var Verificationfalg = false
|
12
|
-
system(Verificationfalg)
|
13
|
-
// system()
|
14
|
-
safecheck('
|
15
|
-
// safecheck('rizhao')
|
16
|
-
require('./bootstrap/less/bootstrap.less')
|
17
|
-
require('./expandcss.less')
|
18
|
-
|
19
|
-
Vue.prototype.$echarts = echarts
|
20
|
-
Vue.android = false
|
21
|
-
|
22
|
-
Vue.url = '/SafeCheck/rs/'
|
23
|
-
if(Vue.android)
|
24
|
-
Vue.url = Vue.staticUrl
|
25
|
-
Vue.interval = 1*60*1000
|
26
|
-
Vue.nopic = 'file:///android_asset/nopic.png'
|
27
|
-
Vue.mapSetup = false
|
28
|
-
|
29
|
-
/* eslint-disable no-new */
|
30
|
-
new Vue({
|
31
|
-
el: 'body',
|
32
|
-
components: { App }
|
33
|
-
})
|
1
|
+
import Vue from 'vue'
|
2
|
+
import App from './App'
|
3
|
+
import { all } from 'vue-client'
|
4
|
+
import { system } from 'system-clients'
|
5
|
+
import safecheck from './safecheck'
|
6
|
+
import echarts from 'echarts'
|
7
|
+
// import safecheck from './rongcheng'
|
8
|
+
|
9
|
+
all()
|
10
|
+
// 验证码开关赋值
|
11
|
+
var Verificationfalg = false
|
12
|
+
system(Verificationfalg)
|
13
|
+
// system()
|
14
|
+
safecheck('huaran')
|
15
|
+
// safecheck('rizhao')
|
16
|
+
require('./bootstrap/less/bootstrap.less')
|
17
|
+
require('./expandcss.less')
|
18
|
+
|
19
|
+
Vue.prototype.$echarts = echarts
|
20
|
+
Vue.android = false
|
21
|
+
|
22
|
+
Vue.url = '/SafeCheck/rs/'
|
23
|
+
if(Vue.android)
|
24
|
+
Vue.url = Vue.staticUrl
|
25
|
+
Vue.interval = 1*60*1000
|
26
|
+
Vue.nopic = 'file:///android_asset/nopic.png'
|
27
|
+
Vue.mapSetup = false
|
28
|
+
|
29
|
+
/* eslint-disable no-new */
|
30
|
+
new Vue({
|
31
|
+
el: 'body',
|
32
|
+
components: { App }
|
33
|
+
})
|