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
|
@@ -173,7 +173,7 @@ export default {
|
|
|
173
173
|
return {
|
|
174
174
|
model: new PagedList('rs/sql/getStopApply', 20, null),
|
|
175
175
|
curorgid: [this.$login.f.orgid],
|
|
176
|
-
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
|
|
176
|
+
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')?this.$appdata.getParam('报建类型'):[]],
|
|
177
177
|
defnames: [{label: '全部', value: ''}], // 流程节点
|
|
178
178
|
criteriaShow: false
|
|
179
179
|
}
|