telephone-clients 4.0.0-1-33 → 4.0.0-1-34
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/package.json +1 -1
- package/src/components/pc/RepairsWork.vue +982 -982
- package/src/components/workorder/RepairFirstV.vue +734 -734
- package/src/components/workorder/ServiceOnlineQuery.vue +462 -462
- package/src/filiale/meihekou/android/AddMyTask.vue +378 -378
- package/src/filiale/meihekou/android/FaultAll.vue +2 -2
- package/src/filiale/meihekou/android/PhoneStandWork.vue +477 -477
- package/src/filiale/meihekou/android/RepairOrderV.vue +2 -2
- package/src/main.js +24 -24
|
@@ -572,8 +572,8 @@ export default {
|
|
|
572
572
|
let response = await http.load('POST', `${this.$androidUtil.getProxyUrl()}/af-telephone/rs/sql/tel_singleTable_OrderBy`, {
|
|
573
573
|
data: {
|
|
574
574
|
items: 'count(0) as num',
|
|
575
|
-
tablename: 't_userfiles',
|
|
576
|
-
condition: `f_userinfo_id = '${this.row.f_userinfo_id}' and f_meter_classify != '物联网表'`,
|
|
575
|
+
tablename: 't_userfiles a left join t_userinfo b on a.f_userinfo_id = b.f_userinfo_id',
|
|
576
|
+
condition: `a.f_userinfo_id = '${this.row.f_userinfo_id}' and a.f_meter_classify != '物联网表' and a.f_table_state = '正常' and b.f_user_state='正常'`,
|
|
577
577
|
orderitem: '1'
|
|
578
578
|
}
|
|
579
579
|
}, {resolveMsg: null, rejectMsg: null})
|
package/src/main.js
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import Vue from 'vue'
|
|
2
|
-
import App from './App'
|
|
3
|
-
import all from 'vue-client/src/all'
|
|
4
|
-
import system from 'system-clients/src/system'
|
|
5
|
-
import telephone from './telephone'
|
|
6
|
-
// import safecheck from 'safecheck-client/src/safecheck'
|
|
7
|
-
import echarts from 'echarts'
|
|
8
|
-
Vue.prototype.$echarts = echarts
|
|
9
|
-
|
|
10
|
-
/** **************************通用组件******************************/
|
|
11
|
-
all()
|
|
12
|
-
system(false)
|
|
13
|
-
telephone()
|
|
14
|
-
// safecheck('bayan')
|
|
15
|
-
require('./expandcss.less')
|
|
16
|
-
require('system-clients/src/styles/less/bootstrap.less')
|
|
17
|
-
require('./telephoneanaly.less')
|
|
18
|
-
// 测试
|
|
19
|
-
|
|
20
|
-
Vue.component('test', (resolve) => { require(['./components/Test'], resolve) })
|
|
21
|
-
new Vue({
|
|
22
|
-
el: 'body',
|
|
23
|
-
components: { App }
|
|
24
|
-
})
|
|
1
|
+
import Vue from 'vue'
|
|
2
|
+
import App from './App'
|
|
3
|
+
import all from 'vue-client/src/all'
|
|
4
|
+
import system from 'system-clients/src/system'
|
|
5
|
+
import telephone from './telephone'
|
|
6
|
+
// import safecheck from 'safecheck-client/src/safecheck'
|
|
7
|
+
import echarts from 'echarts'
|
|
8
|
+
Vue.prototype.$echarts = echarts
|
|
9
|
+
|
|
10
|
+
/** **************************通用组件******************************/
|
|
11
|
+
all()
|
|
12
|
+
system(false)
|
|
13
|
+
telephone('xinkang')
|
|
14
|
+
// safecheck('bayan')
|
|
15
|
+
require('./expandcss.less')
|
|
16
|
+
require('system-clients/src/styles/less/bootstrap.less')
|
|
17
|
+
require('./telephoneanaly.less')
|
|
18
|
+
// 测试
|
|
19
|
+
|
|
20
|
+
Vue.component('test', (resolve) => { require(['./components/Test'], resolve) })
|
|
21
|
+
new Vue({
|
|
22
|
+
el: 'body',
|
|
23
|
+
components: { App }
|
|
24
|
+
})
|