safecheck-client 3.0.33-18 → 3.0.33-19
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 +133 -133
- package/src/App.vue +31 -34
- package/src/filiale/fugou/pc/AddToCheckBook.vue +13 -14
- package/src/filiale/fugou/pc/CheckBookEntry.vue +2 -6
- package/src/filiale/fugou/pc/CheckBookSearchUser.vue +8 -7
- package/src/filiale/fugou/pc/PlanManage.vue +17 -1
- package/src/filiale/fugou/pc/checkUserList.vue +35 -34
- package/src/filiale/tongchuan/android/CurrentCreate.vue +1001 -1001
- package/src/filiale/tongchuan/android/UploadPage.vue +297 -297
- package/src/filiale/tongchuan/pc/HiddenSituation.vue +164 -164
- package/src/filiale/tongchuan/pc/RoleSelector.vue +172 -172
- package/src/filiale/tongchuan/pc/checkUserList.vue +609 -609
- package/src/main.js +33 -33
@@ -1,164 +1,164 @@
|
|
1
|
-
<template>
|
2
|
-
<div id='app' class="basic-main" style="height: 100%">
|
3
|
-
<criteria-paged :model="model" :pager='false'>
|
4
|
-
<criteria partial='criteria' @condition-changed='search' class="search_area">
|
5
|
-
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
6
|
-
<div class="row">
|
7
|
-
<div class="col-sm-4 form-group">
|
8
|
-
<role-selector-safe
|
9
|
-
role-name="安检员"
|
10
|
-
role-lable="安 检 员"
|
11
|
-
@re-res="$parent.$parent.getRes"
|
12
|
-
:value.sync="model.f_checker_id"
|
13
|
-
v-model="model.f_checker_id"
|
14
|
-
condition="f_checker_name = '{}'">
|
15
|
-
</role-selector-safe>
|
16
|
-
</div>
|
17
|
-
<div class="col-sm-2 form-group">
|
18
|
-
<label for="startDate" class="font_normal_body">开始日期:</label>
|
19
|
-
<datepicker id="startDate" placeholder="开始日期"
|
20
|
-
v-model="model.startDate"
|
21
|
-
:value.sync="model.startDate"
|
22
|
-
style="width: 60%;"
|
23
|
-
:disabled-days-of-Week="[]"
|
24
|
-
:format="'yyyy-MM-dd 00:00:00'"
|
25
|
-
:show-reset-button="reset">
|
26
|
-
</datepicker>
|
27
|
-
</div>
|
28
|
-
<div class="col-sm-2 form-group">
|
29
|
-
<label for="endDate" class="font_normal_body">结束日期:</label>
|
30
|
-
<datepicker id="endDate" placeholder="结束日期"
|
31
|
-
v-model="model.endDate"
|
32
|
-
:value.sync="model.endDate"
|
33
|
-
:disabled-days-of-Week="[]"
|
34
|
-
style="width: 60%;"
|
35
|
-
:format="'yyyy-MM-dd 23:59:59'"
|
36
|
-
:show-reset-button="reset">
|
37
|
-
</datepicker>
|
38
|
-
</div>
|
39
|
-
<div class="col-sm-4 form-group" style="margin-top: 8px">
|
40
|
-
<button class="button_search button_spacing" @click="search()">查询</button>
|
41
|
-
<report-print class="button_export button_spacing" style="width:28%" id='shexian'></report-print>
|
42
|
-
<report-excel class="button_export button_spacing" style="width:28%" id='shexian'></report-excel>
|
43
|
-
</div>
|
44
|
-
</div>
|
45
|
-
<div class="row">
|
46
|
-
<div class="col-sm-2 form-group" >
|
47
|
-
<label class="font_normal_body">用气性质</label>
|
48
|
-
<v-select
|
49
|
-
class="select_list select"
|
50
|
-
placeholder='用气性质' style="width: 60%"
|
51
|
-
v-model='model.userType'
|
52
|
-
:value.sync="model.userType"
|
53
|
-
:options='$parent.$parent.userTypes'
|
54
|
-
condition="tuf.f_gasproperties = '{}'"
|
55
|
-
:value-single="true"
|
56
|
-
close-on-select clear-button></v-select>
|
57
|
-
</div>
|
58
|
-
<div class="col-sm-2 form-group" >
|
59
|
-
<label class="font_normal_body">气表类型</label>
|
60
|
-
<v-select
|
61
|
-
class="select_list select"
|
62
|
-
placeholder='气表类型' style="width: 60%"
|
63
|
-
v-model='model.tableType'
|
64
|
-
:value.sync="model.tableType"
|
65
|
-
:options='$parent.$parent.tableTypes'
|
66
|
-
condition="tuf.f_meter_classify = '{}'"
|
67
|
-
:value-single="true"
|
68
|
-
close-on-select clear-button></v-select>
|
69
|
-
</div>
|
70
|
-
<div class="col-sm-2 form-group" >
|
71
|
-
<label class="font_normal_body">气表品牌</label>
|
72
|
-
<v-select
|
73
|
-
class="select_list select"
|
74
|
-
placeholder='气表类型' style="width: 60%"
|
75
|
-
v-model='model.tableBrand'
|
76
|
-
:value.sync="model.tableBrand"
|
77
|
-
:options='$parent.$parent.tableBrands'
|
78
|
-
condition="gb.f_meter_brand = '{}'"
|
79
|
-
:value-single="true"
|
80
|
-
close-on-select clear-button></v-select>
|
81
|
-
</div>
|
82
|
-
</div>
|
83
|
-
</div>
|
84
|
-
</criteria>
|
85
|
-
<div partial='list' id='shexian' class="list_area" style="overflow-y: scroll">
|
86
|
-
<table class='tableprint' style="margin: 0px auto">
|
87
|
-
<thead>
|
88
|
-
<tr>
|
89
|
-
<th colspan='5' style="font-weight: normal; text-align: left;">
|
90
|
-
<h3 style="text-align: center">隐患报表</h3>
|
91
|
-
</th>
|
92
|
-
</tr>
|
93
|
-
<tr>
|
94
|
-
<th colspan='5' style="font-weight: normal; text-align: center;">
|
95
|
-
开始时间:{{model.model.startDate}}
|
96
|
-
结束时间:{{ model.model.endDate }}
|
97
|
-
</th>
|
98
|
-
</tr>
|
99
|
-
</thead>
|
100
|
-
<tr>
|
101
|
-
<th colspan='5' style="font-weight: normal;">
|
102
|
-
{{{ model.data.substring(26,model.data.length-8) }}}
|
103
|
-
</th>
|
104
|
-
</tr>
|
105
|
-
</table>
|
106
|
-
</div>
|
107
|
-
</criteria-paged>
|
108
|
-
</div>
|
109
|
-
|
110
|
-
</template>
|
111
|
-
|
112
|
-
<script>
|
113
|
-
import {DataModel, HttpResetClass} from 'vue-client'
|
114
|
-
|
115
|
-
export default {
|
116
|
-
title: '隐患报表',
|
117
|
-
data () {
|
118
|
-
|
119
|
-
let model = new DataModel('rs/report/hiddensituation', {
|
120
|
-
startDate: 'this.model.startDate',
|
121
|
-
endDate: 'this.model.endDate',
|
122
|
-
})
|
123
|
-
// model.f_filialeid = '(' + this.$login.f.orgid + ')'
|
124
|
-
return {
|
125
|
-
userTypes: [{label: '全部', value: ''}, ...this.$appdata.getParam('用气性质')],
|
126
|
-
tableTypes: [{label: '全部', value: ''}, ...this.$appdata.getParam('气表类型')],
|
127
|
-
tableBrands: [{label: '全部', value: ''}],
|
128
|
-
filialeNameStr: '',
|
129
|
-
filialeCodeStr: '',
|
130
|
-
userid: this.$login.f.id,
|
131
|
-
source: `tool.getFullTree(this.getRights().where(row.getType() != $zone$).where(row.getType() == $organization$))`,
|
132
|
-
model: model
|
133
|
-
}
|
134
|
-
},
|
135
|
-
methods: {
|
136
|
-
getRes (obj) {
|
137
|
-
this.model.f_filialeid = this.$login.convertToIn(obj.resids)
|
138
|
-
},
|
139
|
-
getTableBrands() {
|
140
|
-
new HttpResetClass().load("POST", `/rs/sql/safe_singleTable_OrderBy`,
|
141
|
-
{data: {items: "*", tablename: "t_gasbrand", orderitem: "id", condition: ` 1=1 `}},
|
142
|
-
{resolveMsg: null, rejectMsg: null}).then((resp) => {
|
143
|
-
resp.data.forEach((result) => {
|
144
|
-
this.tableBrands.push({label: result.f_meter_brand, value: result.f_meter_brand})
|
145
|
-
})
|
146
|
-
})
|
147
|
-
},
|
148
|
-
},
|
149
|
-
ready () {
|
150
|
-
this.getTableBrands()
|
151
|
-
},
|
152
|
-
computed: {
|
153
|
-
selected () {
|
154
|
-
return this.$refs.grid.selected
|
155
|
-
}
|
156
|
-
// outlets () {
|
157
|
-
// return [{label: '全部', value: ''}, ...AppData.getParam('营业网点')]
|
158
|
-
// },
|
159
|
-
// operator () {
|
160
|
-
// return [{label: '全部', value: ''}, ...AppData.getParam('操作员')]
|
161
|
-
// }
|
162
|
-
}
|
163
|
-
}
|
164
|
-
</script>
|
1
|
+
<template>
|
2
|
+
<div id='app' class="basic-main" style="height: 100%">
|
3
|
+
<criteria-paged :model="model" :pager='false'>
|
4
|
+
<criteria partial='criteria' @condition-changed='search' class="search_area">
|
5
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
6
|
+
<div class="row">
|
7
|
+
<div class="col-sm-4 form-group">
|
8
|
+
<role-selector-safe
|
9
|
+
role-name="安检员"
|
10
|
+
role-lable="安 检 员"
|
11
|
+
@re-res="$parent.$parent.getRes"
|
12
|
+
:value.sync="model.f_checker_id"
|
13
|
+
v-model="model.f_checker_id"
|
14
|
+
condition="f_checker_name = '{}'">
|
15
|
+
</role-selector-safe>
|
16
|
+
</div>
|
17
|
+
<div class="col-sm-2 form-group">
|
18
|
+
<label for="startDate" class="font_normal_body">开始日期:</label>
|
19
|
+
<datepicker id="startDate" placeholder="开始日期"
|
20
|
+
v-model="model.startDate"
|
21
|
+
:value.sync="model.startDate"
|
22
|
+
style="width: 60%;"
|
23
|
+
:disabled-days-of-Week="[]"
|
24
|
+
:format="'yyyy-MM-dd 00:00:00'"
|
25
|
+
:show-reset-button="reset">
|
26
|
+
</datepicker>
|
27
|
+
</div>
|
28
|
+
<div class="col-sm-2 form-group">
|
29
|
+
<label for="endDate" class="font_normal_body">结束日期:</label>
|
30
|
+
<datepicker id="endDate" placeholder="结束日期"
|
31
|
+
v-model="model.endDate"
|
32
|
+
:value.sync="model.endDate"
|
33
|
+
:disabled-days-of-Week="[]"
|
34
|
+
style="width: 60%;"
|
35
|
+
:format="'yyyy-MM-dd 23:59:59'"
|
36
|
+
:show-reset-button="reset">
|
37
|
+
</datepicker>
|
38
|
+
</div>
|
39
|
+
<div class="col-sm-4 form-group" style="margin-top: 8px">
|
40
|
+
<button class="button_search button_spacing" @click="search()">查询</button>
|
41
|
+
<report-print class="button_export button_spacing" style="width:28%" id='shexian'></report-print>
|
42
|
+
<report-excel class="button_export button_spacing" style="width:28%" id='shexian'></report-excel>
|
43
|
+
</div>
|
44
|
+
</div>
|
45
|
+
<div class="row">
|
46
|
+
<div class="col-sm-2 form-group" >
|
47
|
+
<label class="font_normal_body">用气性质</label>
|
48
|
+
<v-select
|
49
|
+
class="select_list select"
|
50
|
+
placeholder='用气性质' style="width: 60%"
|
51
|
+
v-model='model.userType'
|
52
|
+
:value.sync="model.userType"
|
53
|
+
:options='$parent.$parent.userTypes'
|
54
|
+
condition="tuf.f_gasproperties = '{}'"
|
55
|
+
:value-single="true"
|
56
|
+
close-on-select clear-button></v-select>
|
57
|
+
</div>
|
58
|
+
<div class="col-sm-2 form-group" >
|
59
|
+
<label class="font_normal_body">气表类型</label>
|
60
|
+
<v-select
|
61
|
+
class="select_list select"
|
62
|
+
placeholder='气表类型' style="width: 60%"
|
63
|
+
v-model='model.tableType'
|
64
|
+
:value.sync="model.tableType"
|
65
|
+
:options='$parent.$parent.tableTypes'
|
66
|
+
condition="tuf.f_meter_classify = '{}'"
|
67
|
+
:value-single="true"
|
68
|
+
close-on-select clear-button></v-select>
|
69
|
+
</div>
|
70
|
+
<div class="col-sm-2 form-group" >
|
71
|
+
<label class="font_normal_body">气表品牌</label>
|
72
|
+
<v-select
|
73
|
+
class="select_list select"
|
74
|
+
placeholder='气表类型' style="width: 60%"
|
75
|
+
v-model='model.tableBrand'
|
76
|
+
:value.sync="model.tableBrand"
|
77
|
+
:options='$parent.$parent.tableBrands'
|
78
|
+
condition="gb.f_meter_brand = '{}'"
|
79
|
+
:value-single="true"
|
80
|
+
close-on-select clear-button></v-select>
|
81
|
+
</div>
|
82
|
+
</div>
|
83
|
+
</div>
|
84
|
+
</criteria>
|
85
|
+
<div partial='list' id='shexian' class="list_area" style="overflow-y: scroll">
|
86
|
+
<table class='tableprint' style="margin: 0px auto">
|
87
|
+
<thead>
|
88
|
+
<tr>
|
89
|
+
<th colspan='5' style="font-weight: normal; text-align: left;">
|
90
|
+
<h3 style="text-align: center">隐患报表</h3>
|
91
|
+
</th>
|
92
|
+
</tr>
|
93
|
+
<tr>
|
94
|
+
<th colspan='5' style="font-weight: normal; text-align: center;">
|
95
|
+
开始时间:{{model.model.startDate}}
|
96
|
+
结束时间:{{ model.model.endDate }}
|
97
|
+
</th>
|
98
|
+
</tr>
|
99
|
+
</thead>
|
100
|
+
<tr>
|
101
|
+
<th colspan='5' style="font-weight: normal;">
|
102
|
+
{{{ model.data.substring(26,model.data.length-8) }}}
|
103
|
+
</th>
|
104
|
+
</tr>
|
105
|
+
</table>
|
106
|
+
</div>
|
107
|
+
</criteria-paged>
|
108
|
+
</div>
|
109
|
+
|
110
|
+
</template>
|
111
|
+
|
112
|
+
<script>
|
113
|
+
import {DataModel, HttpResetClass} from 'vue-client'
|
114
|
+
|
115
|
+
export default {
|
116
|
+
title: '隐患报表',
|
117
|
+
data () {
|
118
|
+
|
119
|
+
let model = new DataModel('rs/report/hiddensituation', {
|
120
|
+
startDate: 'this.model.startDate',
|
121
|
+
endDate: 'this.model.endDate',
|
122
|
+
})
|
123
|
+
// model.f_filialeid = '(' + this.$login.f.orgid + ')'
|
124
|
+
return {
|
125
|
+
userTypes: [{label: '全部', value: ''}, ...this.$appdata.getParam('用气性质')],
|
126
|
+
tableTypes: [{label: '全部', value: ''}, ...this.$appdata.getParam('气表类型')],
|
127
|
+
tableBrands: [{label: '全部', value: ''}],
|
128
|
+
filialeNameStr: '',
|
129
|
+
filialeCodeStr: '',
|
130
|
+
userid: this.$login.f.id,
|
131
|
+
source: `tool.getFullTree(this.getRights().where(row.getType() != $zone$).where(row.getType() == $organization$))`,
|
132
|
+
model: model
|
133
|
+
}
|
134
|
+
},
|
135
|
+
methods: {
|
136
|
+
getRes (obj) {
|
137
|
+
this.model.f_filialeid = this.$login.convertToIn(obj.resids)
|
138
|
+
},
|
139
|
+
getTableBrands() {
|
140
|
+
new HttpResetClass().load("POST", `/rs/sql/safe_singleTable_OrderBy`,
|
141
|
+
{data: {items: "*", tablename: "t_gasbrand", orderitem: "id", condition: ` 1=1 `}},
|
142
|
+
{resolveMsg: null, rejectMsg: null}).then((resp) => {
|
143
|
+
resp.data.forEach((result) => {
|
144
|
+
this.tableBrands.push({label: result.f_meter_brand, value: result.f_meter_brand})
|
145
|
+
})
|
146
|
+
})
|
147
|
+
},
|
148
|
+
},
|
149
|
+
ready () {
|
150
|
+
this.getTableBrands()
|
151
|
+
},
|
152
|
+
computed: {
|
153
|
+
selected () {
|
154
|
+
return this.$refs.grid.selected
|
155
|
+
}
|
156
|
+
// outlets () {
|
157
|
+
// return [{label: '全部', value: ''}, ...AppData.getParam('营业网点')]
|
158
|
+
// },
|
159
|
+
// operator () {
|
160
|
+
// return [{label: '全部', value: ''}, ...AppData.getParam('操作员')]
|
161
|
+
// }
|
162
|
+
}
|
163
|
+
}
|
164
|
+
</script>
|