telephone-clients 3.0.72-2 → 3.0.72-3
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/Auxfunc.vue +76 -76
- package/src/components/pc/dataManager/StopGasManager.vue +320 -320
- package/src/components/weinan/SiteSendWeixiu.vue +277 -277
- package/src/components/workorder/AppInstallationMaterial.vue +610 -610
- package/src/filiale/furuike/android/RepairOrderVnew.vue +881 -881
- package/src/filiale/furuike/pc/RecordListLeft.vue +196 -196
- package/src/filiale/furuike/pc/WorkHistory.vue +576 -576
- package/src/filiale/hanzhong/telephone.js +38 -38
- package/src/filiale/qianneng/android/Examine.vue +513 -513
- package/src/filiale/qianneng/android/RepairFirstV.vue +503 -503
- package/src/filiale/qianneng/android/RepairOrderV.vue +869 -869
- package/src/filiale/qianneng/android/TemporarySingle.vue +483 -483
- package/src/filiale/qianneng/pc/DistributeWork.vue +182 -182
- package/src/filiale/qianneng/pc/Indoorinstallation.vue +832 -832
- package/src/filiale/qianneng/pc/MaterialDetailed.vue +222 -222
- package/src/filiale/qianneng/pc/Outdoorinstallation.vue +736 -736
- package/src/filiale/qianneng/pc/WorkHistory.vue +588 -588
- package/src/filiale/qianneng/telephone.js +20 -20
- package/src/filiale/qianneng/telephoneAndroid.js +19 -19
- package/src/filiale/wuhai/pc/Seekwork.vue +361 -361
- package/src/filiale/wuhai/pc/TelFindUser.vue +256 -229
- package/src/filiale/zhoukou/android/Othercharge.vue +591 -591
- package/src/main.js +22 -22
- package/src/telephone.js +717 -717
package/package.json
CHANGED
|
@@ -1,76 +1,76 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="flex">
|
|
3
|
-
<div class="auto">
|
|
4
|
-
<div class="row form-horizontal">
|
|
5
|
-
<div class="col-sm-5 form-group " style="position: relative;">
|
|
6
|
-
<input type="text" class="form-control" aria-describedby="标题信息"
|
|
7
|
-
style="padding-left: 40px;" placeholder="" v-model="keywords" >
|
|
8
|
-
<span class="glyphicon glyphicon-search form-control-feedback" aria-hidden="true" style="left: 0;"></span>
|
|
9
|
-
<span id="inputSuccess2Status" class="sr-only">(success)</span>
|
|
10
|
-
</div>
|
|
11
|
-
<div class="col-sm-1 form-group " style="padding-left: 20px">
|
|
12
|
-
<button type="button" name="button" class="btn btn-primary" @click='search()' >搜索</button>
|
|
13
|
-
</div>
|
|
14
|
-
</div>
|
|
15
|
-
</div>
|
|
16
|
-
<div class="span"style="overflow: auto;" >
|
|
17
|
-
<partial-view v-ref:pv>
|
|
18
|
-
<div class="panel panel-default auto" v-for="msg in msgs">
|
|
19
|
-
<div class="panel-heading">
|
|
20
|
-
<strong style="margin-right: 10px;">{{msg.f_title}}</strong>
|
|
21
|
-
</div>
|
|
22
|
-
<div class="panel-body" draggable="true" @dragstart="drag">
|
|
23
|
-
{{msg.f_explain}}
|
|
24
|
-
</div>
|
|
25
|
-
</div>
|
|
26
|
-
</partial-view>
|
|
27
|
-
</div>
|
|
28
|
-
</div>
|
|
29
|
-
</template>
|
|
30
|
-
|
|
31
|
-
<script>
|
|
32
|
-
export default {
|
|
33
|
-
title: '停气通知',
|
|
34
|
-
data () {
|
|
35
|
-
return {
|
|
36
|
-
msgs: [],
|
|
37
|
-
keywords:''
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
ready () {
|
|
41
|
-
this.refresNotice()
|
|
42
|
-
},
|
|
43
|
-
methods: {
|
|
44
|
-
// 关键子查询
|
|
45
|
-
search () {
|
|
46
|
-
var f_title = '1 = 1 '
|
|
47
|
-
if(this.keywords){
|
|
48
|
-
f_title = `f_title like '%${this.keywords}%'`
|
|
49
|
-
}
|
|
50
|
-
let condition = {
|
|
51
|
-
items: '*',
|
|
52
|
-
tablename: 't_stopgas',
|
|
53
|
-
condition: `f_state = '公告中' and f_orgstr = '${this.$login.f.orgid}' and ${f_title}`,
|
|
54
|
-
orderitem: 'f_date desc'
|
|
55
|
-
}
|
|
56
|
-
this.$refs.pv.load(`rs/sql/tel_singleTable_OrderBy`, {data: condition}, {resolveMsg: null, rejectMsg: null}).then((res) => {
|
|
57
|
-
this.msgs = res.data
|
|
58
|
-
})
|
|
59
|
-
},
|
|
60
|
-
refresNotice () {
|
|
61
|
-
let condition = {
|
|
62
|
-
items: '*',
|
|
63
|
-
tablename: 't_stopgas',
|
|
64
|
-
condition: `f_state = '公告中' and f_orgstr = '${this.$login.f.orgid}'`,
|
|
65
|
-
orderitem: 'f_date desc'
|
|
66
|
-
}
|
|
67
|
-
this.$refs.pv.load(`rs/sql/tel_singleTable_OrderBy`, {data: condition}, {resolveMsg: null, rejectMsg: null}).then((res) => {
|
|
68
|
-
this.msgs = res.data
|
|
69
|
-
})
|
|
70
|
-
},
|
|
71
|
-
drag (ev) {
|
|
72
|
-
ev.dataTransfer.setData("Text",ev.target.innerText)
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex">
|
|
3
|
+
<div class="auto">
|
|
4
|
+
<div class="row form-horizontal">
|
|
5
|
+
<div class="col-sm-5 form-group " style="position: relative;">
|
|
6
|
+
<input type="text" class="form-control" aria-describedby="标题信息"
|
|
7
|
+
style="padding-left: 40px;" placeholder="" v-model="keywords" >
|
|
8
|
+
<span class="glyphicon glyphicon-search form-control-feedback" aria-hidden="true" style="left: 0;"></span>
|
|
9
|
+
<span id="inputSuccess2Status" class="sr-only">(success)</span>
|
|
10
|
+
</div>
|
|
11
|
+
<div class="col-sm-1 form-group " style="padding-left: 20px">
|
|
12
|
+
<button type="button" name="button" class="btn btn-primary" @click='search()' >搜索</button>
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
16
|
+
<div class="span"style="overflow: auto;" >
|
|
17
|
+
<partial-view v-ref:pv>
|
|
18
|
+
<div class="panel panel-default auto" v-for="msg in msgs">
|
|
19
|
+
<div class="panel-heading">
|
|
20
|
+
<strong style="margin-right: 10px;">{{msg.f_title}}</strong>
|
|
21
|
+
</div>
|
|
22
|
+
<div class="panel-body" draggable="true" @dragstart="drag">
|
|
23
|
+
{{msg.f_explain}}
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
</partial-view>
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
</template>
|
|
30
|
+
|
|
31
|
+
<script>
|
|
32
|
+
export default {
|
|
33
|
+
title: '停气通知',
|
|
34
|
+
data () {
|
|
35
|
+
return {
|
|
36
|
+
msgs: [],
|
|
37
|
+
keywords:''
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
ready () {
|
|
41
|
+
this.refresNotice()
|
|
42
|
+
},
|
|
43
|
+
methods: {
|
|
44
|
+
// 关键子查询
|
|
45
|
+
search () {
|
|
46
|
+
var f_title = '1 = 1 '
|
|
47
|
+
if(this.keywords){
|
|
48
|
+
f_title = `f_title like '%${this.keywords}%'`
|
|
49
|
+
}
|
|
50
|
+
let condition = {
|
|
51
|
+
items: '*',
|
|
52
|
+
tablename: 't_stopgas',
|
|
53
|
+
condition: `f_state = '公告中' and f_orgstr = '${this.$login.f.orgid}' and ${f_title}`,
|
|
54
|
+
orderitem: 'f_date desc'
|
|
55
|
+
}
|
|
56
|
+
this.$refs.pv.load(`rs/sql/tel_singleTable_OrderBy`, {data: condition}, {resolveMsg: null, rejectMsg: null}).then((res) => {
|
|
57
|
+
this.msgs = res.data
|
|
58
|
+
})
|
|
59
|
+
},
|
|
60
|
+
refresNotice () {
|
|
61
|
+
let condition = {
|
|
62
|
+
items: '*',
|
|
63
|
+
tablename: 't_stopgas',
|
|
64
|
+
condition: `f_state = '公告中' and f_orgstr = '${this.$login.f.orgid}'`,
|
|
65
|
+
orderitem: 'f_date desc'
|
|
66
|
+
}
|
|
67
|
+
this.$refs.pv.load(`rs/sql/tel_singleTable_OrderBy`, {data: condition}, {resolveMsg: null, rejectMsg: null}).then((res) => {
|
|
68
|
+
this.msgs = res.data
|
|
69
|
+
})
|
|
70
|
+
},
|
|
71
|
+
drag (ev) {
|
|
72
|
+
ev.dataTransfer.setData("Text",ev.target.innerText)
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
</script>
|