apply-clients 7.1.36-yuchuan-5 → 7.1.36-yuchuan-7
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/build/dev-server.js +187 -172
- package/index.html +39 -39
- package/package.json +2 -1
- package/src/apply.js +7 -0
- package/src/components/android/AppSign.vue +234 -234
- package/src/components/android/AppUpload.vue +275 -275
- package/src/components/android/Ignition/VentilationIgnitionHandle.vue +462 -462
- package/src/components/android/Process/AppServiceControl.vue +1437 -1437
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +344 -344
- package/src/components/android/Task/ShiGongXinXi/AppShowBuildUser.vue +431 -431
- package/src/components/android/Task/yiban/ShowDone.vue +95 -95
- package/src/components/android/Task/yiban/satisfactionShow.vue +166 -166
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +2 -2
- package/src/components/product/ApplyGaiXianCharge/ApplyGaiXianViewList.vue +272 -272
- package/src/components/product/ApplyGuanXian/GuanXianCaiLiao.vue +236 -236
- package/src/components/product/ApplyGuanXian/GuanXianExplorationSelect.vue +324 -324
- package/src/components/product/ApplyGuanXian/GuanXianSupervisoryhCart.vue +119 -119
- package/src/components/product/ApplyMap/ApplyDragaboutList.vue +223 -223
- package/src/components/product/ApplyMap/ApplyMapLocation.vue +862 -862
- package/src/components/product/ChongZheng/ApplyChongZhengList.vue +2 -2
- package/src/components/product/Function/InstallInfoSelect.vue +2 -2
- package/src/components/product/Function/Service/FunctionServiceControl.vue +586 -586
- package/src/components/product/GongJianPush/ApplyPushDispose.vue +206 -0
- package/src/components/product/GongJianPush/ApplyPushList.vue +196 -0
- package/src/components/product/GongJianPush/ApplyPushManage.vue +90 -0
- package/src/components/product/Ignition/IgnitionListManage.vue +602 -602
- package/src/components/product/Ignition/IgnitionRecord.vue +380 -380
- package/src/components/product/List/OldShowDevices.vue +2 -2
- package/src/components/product/List/ShowAllActivity.vue +2 -2
- package/src/components/product/List/ShowDevices.vue +2 -2
- package/src/components/product/Print/BuildOrder/buildOrderList.vue +1 -1
- package/src/components/product/Process/ExplorationSelect.vue +4 -4
- package/src/components/product/Process/NewExplorationSelect.vue +586 -586
- package/src/components/product/Process/Processes/Print/printCharge.vue +250 -250
- package/src/components/product/Process/Processes/Print/printGaiXianCharge.vue +244 -244
- package/src/components/product/Process/Processes/devicesManagement.vue +393 -393
- package/src/components/product/Process/Processes/newDevicesManagement.vue +413 -413
- package/src/components/product/Stop/StopApplyList.vue +1 -1
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +592 -592
- package/src/components/product/Supervisory/SupervisoryControl.vue +116 -116
- package/src/components/product/Supervisory/SupervisoryList.vue +3 -3
- package/src/components/product/Supervisory/YiBanSupervisoryList.vue +3 -3
- package/src/components/product/VueUtils/ApplyUpload.vue +285 -285
- package/src/components/product/records/AdjustmentRecordList.vue +162 -162
|
@@ -330,8 +330,8 @@ export default {
|
|
|
330
330
|
model: new PagedList('rs/sql/getApplyChongZheng', 30, null, {
|
|
331
331
|
f_charge_money: 0
|
|
332
332
|
}),
|
|
333
|
-
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
|
|
334
|
-
paymentMethod: [{label: '全部', value: ''}, ...this.$appdata.getParam('付款方式')],
|
|
333
|
+
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')?this.$appdata.getParam('报建类型'):[]],
|
|
334
|
+
paymentMethod: [{label: '全部', value: ''}, ...this.$appdata.getParam('付款方式')?this.$appdata.getParam('付款方式'):[]],
|
|
335
335
|
chargingStatus: [
|
|
336
336
|
{label: '全部', value: ''},
|
|
337
337
|
{label: '有效', value: '有效'}
|
|
@@ -227,11 +227,11 @@
|
|
|
227
227
|
return {
|
|
228
228
|
model: new PagedList('rs/sql/checkuserfunction', 20, {
|
|
229
229
|
data: {
|
|
230
|
-
f_filiale: this.$login.f.f_fengongsi
|
|
230
|
+
f_filiale: this.$login.f.f_fengongsi?this.$login.f.f_fengongsi:''
|
|
231
231
|
}
|
|
232
232
|
}),
|
|
233
233
|
funcs: [], // 功能列表
|
|
234
|
-
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
|
|
234
|
+
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')?this.$appdata.getParam('报建类型'):[]],
|
|
235
235
|
defnames: isEmpty(this.$appdata.getParam('办理环节')) ? [{label: '全部', value: ''}] : [{label: '全部', value: ''}, ...this.$appdata.getParam('办理环节')], // 流程节点
|
|
236
236
|
criteriaShow: false,
|
|
237
237
|
sources:[{label: '微信公众号', value: '微信公众号'},{label: '线下发起', value: '线下发起'}],
|