safecheck-client 3.0.30-7 → 3.0.30-9
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 +132 -132
- package/src/components/android/AreaPlan.vue +571 -571
- package/src/components/android/PhoneotherInfo.vue +132 -132
- package/src/components/pc/SelectCheckPlanAndNoPLan.vue +278 -278
- package/src/components/querycheckpaper/CheckSearchUser.vue +1067 -1067
- package/src/filiale/bayan/android/SafecheckDevices.vue +1303 -1303
- package/src/filiale/bayan/android/SafecheckOrderV.vue +2850 -2850
- package/src/filiale/bayan/android/SafecheckUserInfo.vue +806 -806
- package/src/filiale/hanzhong/android/PaperFeedback.vue +1477 -1477
- package/src/filiale/hanzhong/android/SafecheckDevices.vue +1313 -1294
- package/src/filiale/hanzhong/android/SafecheckOrderV.vue +2683 -2683
- package/src/filiale/hanzhong/android.js +16 -16
- package/src/filiale/jingyang/pc/PaperList.vue +1 -2
- package/src/filiale/tongchuan/pc/PaperDefectMain.vue +1090 -1090
- package/src/filiale/yongzhou/pc/safeStatisticsDay.vue +7 -2
- package/src/filiale/yongzhou/pc/safeStatisticsMonth.vue +7 -1
- package/src/safecheck-android.js +290 -290
@@ -167,6 +167,9 @@
|
|
167
167
|
<th>
|
168
168
|
<nobr>31日</nobr>
|
169
169
|
</th>
|
170
|
+
<th>
|
171
|
+
<nobr>小计</nobr>
|
172
|
+
</th>
|
170
173
|
</tr>
|
171
174
|
</template>
|
172
175
|
<template partial='body'>
|
@@ -204,7 +207,7 @@
|
|
204
207
|
<td style="text-align: center">{{ row.day29 }}</td>
|
205
208
|
<td style="text-align: center">{{ row.day30 }}</td>
|
206
209
|
<td style="text-align: center">{{ row.day31 }}</td>
|
207
|
-
|
210
|
+
<td style="text-align: center">{{ row.countarea }}</td>
|
208
211
|
</template>
|
209
212
|
<template partial="foot">
|
210
213
|
<td style="text-align: center" colspan="2"><span><b>合计:</b></span></td>
|
@@ -239,6 +242,7 @@
|
|
239
242
|
<td style="text-align: center">{{ model.sums.day29 }}</td>
|
240
243
|
<td style="text-align: center">{{ model.sums.day30 }}</td>
|
241
244
|
<td style="text-align: center">{{ model.sums.day31 }}</td>
|
245
|
+
<td style="text-align: center">{{ model.sums.countarea }}</td>
|
242
246
|
</template>
|
243
247
|
</data-grid>
|
244
248
|
</criteria-paged>
|
@@ -285,7 +289,8 @@ export default {
|
|
285
289
|
day28: '',
|
286
290
|
day29: '',
|
287
291
|
day30: '',
|
288
|
-
day31: ''
|
292
|
+
day31: '',
|
293
|
+
countarea:''
|
289
294
|
}),
|
290
295
|
resids: {},
|
291
296
|
searchData: {
|
@@ -108,6 +108,9 @@
|
|
108
108
|
<th>
|
109
109
|
<nobr>12月</nobr>
|
110
110
|
</th>
|
111
|
+
<th>
|
112
|
+
<nobr>小计</nobr>
|
113
|
+
</th>
|
111
114
|
</tr>
|
112
115
|
</template>
|
113
116
|
<template partial='body'>
|
@@ -126,6 +129,7 @@
|
|
126
129
|
<td style="text-align: center">{{ row.month10 }}</td>
|
127
130
|
<td style="text-align: center">{{ row.month11 }}</td>
|
128
131
|
<td style="text-align: center">{{ row.month12 }}</td>
|
132
|
+
<td style="text-align: center">{{ row.countarea }}</td>
|
129
133
|
</template>
|
130
134
|
<template partial="foot">
|
131
135
|
<td style="text-align: center" colspan="2"><span><b>合计:</b></span></td>
|
@@ -141,6 +145,7 @@
|
|
141
145
|
<td style="text-align: center">{{ model.sums.month10 }}</td>
|
142
146
|
<td style="text-align: center">{{ model.sums.month11 }}</td>
|
143
147
|
<td style="text-align: center">{{ model.sums.month12 }}</td>
|
148
|
+
<td style="text-align: center">{{ model.sums.countarea }}</td>
|
144
149
|
</template>
|
145
150
|
</data-grid>
|
146
151
|
</criteria-paged>
|
@@ -169,7 +174,8 @@ export default {
|
|
169
174
|
month9: '',
|
170
175
|
month10: '',
|
171
176
|
month11: '',
|
172
|
-
month12: ''
|
177
|
+
month12: '',
|
178
|
+
countarea: ''
|
173
179
|
}),
|
174
180
|
resids:{},
|
175
181
|
searchData:{
|