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.
Files changed (44) hide show
  1. package/build/dev-server.js +187 -172
  2. package/index.html +39 -39
  3. package/package.json +2 -1
  4. package/src/apply.js +7 -0
  5. package/src/components/android/AppSign.vue +234 -234
  6. package/src/components/android/AppUpload.vue +275 -275
  7. package/src/components/android/Ignition/VentilationIgnitionHandle.vue +462 -462
  8. package/src/components/android/Process/AppServiceControl.vue +1437 -1437
  9. package/src/components/android/Supervisory/AppProcessSupervisory.vue +344 -344
  10. package/src/components/android/Task/ShiGongXinXi/AppShowBuildUser.vue +431 -431
  11. package/src/components/android/Task/yiban/ShowDone.vue +95 -95
  12. package/src/components/android/Task/yiban/satisfactionShow.vue +166 -166
  13. package/src/components/product/ApplyCharge/ApplyChargeList.vue +2 -2
  14. package/src/components/product/ApplyGaiXianCharge/ApplyGaiXianViewList.vue +272 -272
  15. package/src/components/product/ApplyGuanXian/GuanXianCaiLiao.vue +236 -236
  16. package/src/components/product/ApplyGuanXian/GuanXianExplorationSelect.vue +324 -324
  17. package/src/components/product/ApplyGuanXian/GuanXianSupervisoryhCart.vue +119 -119
  18. package/src/components/product/ApplyMap/ApplyDragaboutList.vue +223 -223
  19. package/src/components/product/ApplyMap/ApplyMapLocation.vue +862 -862
  20. package/src/components/product/ChongZheng/ApplyChongZhengList.vue +2 -2
  21. package/src/components/product/Function/InstallInfoSelect.vue +2 -2
  22. package/src/components/product/Function/Service/FunctionServiceControl.vue +586 -586
  23. package/src/components/product/GongJianPush/ApplyPushDispose.vue +206 -0
  24. package/src/components/product/GongJianPush/ApplyPushList.vue +196 -0
  25. package/src/components/product/GongJianPush/ApplyPushManage.vue +90 -0
  26. package/src/components/product/Ignition/IgnitionListManage.vue +602 -602
  27. package/src/components/product/Ignition/IgnitionRecord.vue +380 -380
  28. package/src/components/product/List/OldShowDevices.vue +2 -2
  29. package/src/components/product/List/ShowAllActivity.vue +2 -2
  30. package/src/components/product/List/ShowDevices.vue +2 -2
  31. package/src/components/product/Print/BuildOrder/buildOrderList.vue +1 -1
  32. package/src/components/product/Process/ExplorationSelect.vue +4 -4
  33. package/src/components/product/Process/NewExplorationSelect.vue +586 -586
  34. package/src/components/product/Process/Processes/Print/printCharge.vue +250 -250
  35. package/src/components/product/Process/Processes/Print/printGaiXianCharge.vue +244 -244
  36. package/src/components/product/Process/Processes/devicesManagement.vue +393 -393
  37. package/src/components/product/Process/Processes/newDevicesManagement.vue +413 -413
  38. package/src/components/product/Stop/StopApplyList.vue +1 -1
  39. package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +592 -592
  40. package/src/components/product/Supervisory/SupervisoryControl.vue +116 -116
  41. package/src/components/product/Supervisory/SupervisoryList.vue +3 -3
  42. package/src/components/product/Supervisory/YiBanSupervisoryList.vue +3 -3
  43. package/src/components/product/VueUtils/ApplyUpload.vue +285 -285
  44. package/src/components/product/records/AdjustmentRecordList.vue +162 -162
@@ -1,95 +1,95 @@
1
- <template>
2
- <div>
3
- <tabset v-ref:tabs :close="false" nav-style="tabs nav-apply-tab2" :active.sync="active">
4
- <tab header='任务列表' style="width: auto">
5
- <app-build-done v-ref:exploration :defname="defname" :title="title" :f_lat="f_lat" :f_lng="f_lng"></app-build-done>
6
- </tab>
7
- </tabset>
8
- </div>
9
- </template>
10
- <script>
11
- import {HttpResetClass, PagedList} from 'vue-client'
12
- import Vue from 'vue'
13
-
14
- export default {
15
- title: '已办信息',
16
- data () {
17
- return {
18
- labelmarksarray: [],
19
- tasknumber: 0,
20
- active: 0,
21
- f_lat: null,
22
- f_lng: null,
23
- defname: '已办信息',
24
- title: '已办信息'
25
- }
26
- },
27
- ready () {
28
- this.getApplyTaskDot()
29
- },
30
- methods: {
31
- diyspotmouseclick (data) {
32
- this.f_lat = data.f_lat
33
- this.f_lng = data.f_lng
34
-
35
- this.active = 1
36
- },
37
- async getApplyTaskDot () {
38
- console.log('==========查询任务点==============')
39
- this.tasknumber = 0
40
- let http = new HttpResetClass()
41
- let data = {
42
- defname: this.defname,
43
- userid: Vue.user.id
44
- }
45
- let res = await http.load(
46
- 'POST',
47
- `${this.$androidUtil.getProxyUrl()}/rs/sql/getApplyTaskDot`,
48
- {data: data},
49
- {
50
- resolveMsg: null,
51
- rejectMsg: '任务点获取失败!!!'
52
- })
53
- this.labelmarksarray = res.data.map(item => {
54
- this.tasknumber += item.count
55
- return {
56
- data: {
57
- data: item,
58
- content: `<p>任务数:${item.count}</p>`
59
- },
60
- position: [item.f_lng, item.f_lat],
61
- isclearmarker: false,
62
- islabel: false
63
- }
64
- })
65
- }
66
- },
67
- events: {
68
- 'refreshDot' () {
69
- this.getApplyTaskDot()
70
- }
71
- },
72
- watch: {
73
- },
74
- computed: {
75
- }
76
- }
77
- </script>
78
- <style scoped>
79
- .tip{
80
- position: absolute;
81
- z-index: 1000;
82
- color: red;
83
- font-size: 24px;
84
- right: 30px;
85
- padding-top: 20px;
86
- }
87
- </style>
88
- <style lang="less">
89
- .nav-apply-tab2 {
90
- li {
91
- width: 100%;
92
- text-align: center;
93
- }
94
- }
95
- </style>
1
+ <template>
2
+ <div>
3
+ <tabset v-ref:tabs :close="false" nav-style="tabs nav-apply-tab2" :active.sync="active">
4
+ <tab header='任务列表' style="width: auto">
5
+ <app-build-done v-ref:exploration :defname="defname" :title="title" :f_lat="f_lat" :f_lng="f_lng"></app-build-done>
6
+ </tab>
7
+ </tabset>
8
+ </div>
9
+ </template>
10
+ <script>
11
+ import {HttpResetClass, PagedList} from 'vue-client'
12
+ import Vue from 'vue'
13
+
14
+ export default {
15
+ title: '已办信息',
16
+ data () {
17
+ return {
18
+ labelmarksarray: [],
19
+ tasknumber: 0,
20
+ active: 0,
21
+ f_lat: null,
22
+ f_lng: null,
23
+ defname: '已办信息',
24
+ title: '已办信息'
25
+ }
26
+ },
27
+ ready () {
28
+ this.getApplyTaskDot()
29
+ },
30
+ methods: {
31
+ diyspotmouseclick (data) {
32
+ this.f_lat = data.f_lat
33
+ this.f_lng = data.f_lng
34
+
35
+ this.active = 1
36
+ },
37
+ async getApplyTaskDot () {
38
+ console.log('==========查询任务点==============')
39
+ this.tasknumber = 0
40
+ let http = new HttpResetClass()
41
+ let data = {
42
+ defname: this.defname,
43
+ userid: Vue.user.id
44
+ }
45
+ let res = await http.load(
46
+ 'POST',
47
+ `${this.$androidUtil.getProxyUrl()}/rs/sql/getApplyTaskDot`,
48
+ {data: data},
49
+ {
50
+ resolveMsg: null,
51
+ rejectMsg: '任务点获取失败!!!'
52
+ })
53
+ this.labelmarksarray = res.data.map(item => {
54
+ this.tasknumber += item.count
55
+ return {
56
+ data: {
57
+ data: item,
58
+ content: `<p>任务数:${item.count}</p>`
59
+ },
60
+ position: [item.f_lng, item.f_lat],
61
+ isclearmarker: false,
62
+ islabel: false
63
+ }
64
+ })
65
+ }
66
+ },
67
+ events: {
68
+ 'refreshDot' () {
69
+ this.getApplyTaskDot()
70
+ }
71
+ },
72
+ watch: {
73
+ },
74
+ computed: {
75
+ }
76
+ }
77
+ </script>
78
+ <style scoped>
79
+ .tip{
80
+ position: absolute;
81
+ z-index: 1000;
82
+ color: red;
83
+ font-size: 24px;
84
+ right: 30px;
85
+ padding-top: 20px;
86
+ }
87
+ </style>
88
+ <style lang="less">
89
+ .nav-apply-tab2 {
90
+ li {
91
+ width: 100%;
92
+ text-align: center;
93
+ }
94
+ }
95
+ </style>
@@ -1,166 +1,166 @@
1
- <template>
2
- <div class="p-10">
3
- <div partial class="auto">
4
- <div class="row form-group app-input">
5
- <label class="">客户名称:</label>
6
- <div class="col-xs-8" >
7
- <input class="" v-model=selectdata.f_user_name />
8
- </div>
9
- </div>
10
- <div class="row form-group app-input" >
11
- <label class="">联系电话:</label>
12
- <div class="col-xs-8" >
13
- <input class="" v-model=selectdata.f_phone />
14
- </div>
15
- </div>
16
- <div class="row form-group app-input" >
17
- <label class="">证件类型:</label>
18
- <div class="col-xs-8" >
19
- <input class="" v-model=selectdata.f_credentials />
20
- </div>
21
- </div>
22
- <div class="row form-group app-input" >
23
- <label class="">证件号码:</label>
24
- <div class="col-xs-8" >
25
- <input class="" v-model=selectdata.f_idnumber />
26
- </div>
27
- </div>
28
- <div class="row form-group app-input" >
29
- <label class="">工程编号:</label>
30
- <div class="col-xs-8" >
31
- <input class="" v-model=selectdata.f_apply_num />
32
- </div>
33
- </div>
34
- <div class="row form-group app-input" >
35
- <label class="">用户地址:</label>
36
- <div class="col-xs-8" >
37
- <input class="" v-model=selectdata.f_address />
38
- </div>
39
- </div>
40
- <div class="row form-group app-input" >
41
- <label class="">报建类型:</label>
42
- <div class="col-xs-8" >
43
- <input class="" v-model=selectdata.f_apply_type />
44
- </div>
45
- </div>
46
- <div class="row form-group app-input" >
47
- <label class="">报建性质:</label>
48
- <div class="col-xs-8" >
49
- <input class="" v-model=selectdata.f_apply_nature />
50
- </div>
51
- </div>
52
- <div class="row form-group app-input" >
53
- <label class="">客户类型:</label>
54
- <div class="col-xs-8" >
55
- <input class="" v-model=selectdata.f_user_type />
56
- </div>
57
- </div>
58
- </div>
59
-
60
- <div class="col-sm-12 col-xs-12">
61
- <accordion one-at-a-time="true">
62
- <panel header='附件' :is-open="false" type="primary">
63
- <app-upload :blodid="selectdata.f_process_id"
64
- :isupload="true"
65
- :isdelete="true"
66
- :isusetype="true"
67
- :isremark="true"
68
- :takeimg="true"
69
- :issearch="true"
70
- :defname="selectdata.defname">
71
- </app-upload>
72
- </panel>
73
- </accordion>
74
- </div>
75
- </div>
76
-
77
- </template>
78
- <script>
79
- import {getNowDate, isEmpty} from '../../../Util'
80
- // Date格式化
81
- Date.prototype.Format = function (fmt) {
82
- var o = {
83
- 'M+': this.getMonth() + 1, // 月份
84
- 'd+': this.getDate(), // 日
85
- 'H+': this.getHours(), // 小时
86
- 'm+': this.getMinutes(), // 分
87
- 's+': this.getSeconds(), // 秒
88
- 'q+': Math.floor((this.getMonth() + 3) / 3), // 季度
89
- 'S': this.getMilliseconds() // 毫秒
90
- }
91
- if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length))
92
- for (var k in o) {
93
- if (new RegExp('(' + k + ')').test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)))
94
- }
95
- return fmt
96
- }
97
-
98
- export default {
99
- title: '完工',
100
- props: ['selectdata', 'title'],
101
- data () {
102
- return {
103
- }
104
- },
105
- ready () {
106
- console.log(this.selectdata)
107
- },
108
- methods: {
109
- },
110
- events: {},
111
- computed: {},
112
- watch: {}
113
- }
114
- </script>
115
- <style scoped>
116
- .panel-self{
117
- border-radius: 10px;
118
- border:1px solid #499EDF;
119
- background-color: #F8F8F8;
120
- }
121
- .font{
122
- font: 15px PingFang-SC-Medium;
123
- color: #666666;
124
- }
125
-
126
- .button_shrink_top {
127
- width: 34px;
128
- height: 34px;
129
- border: solid 1px #6aa6e2;
130
- background-size: 100%;
131
- background-image: url("../../../../../static/newStyle/stretch_top.png")
132
- }
133
-
134
- .button_shrink_bottom {
135
- width: 34px;
136
- height: 34px;
137
- border: solid 1px #6aa6e2;
138
- background-size: 100%;
139
- background-image: url("../../../../../static/newStyle/stretch_bottom.png")
140
- }
141
- </style>
142
- <style lang="less">
143
- .app-input {
144
- label {
145
- float: left;
146
- }
147
- .select {
148
- button {
149
- border: none;
150
- outline: none;
151
- text-align: left;
152
- .btn-placeholder {
153
- color: #ACA899
154
- }
155
- }
156
- }
157
- .datepicker {
158
- .form-control:focus {
159
- border: none!important;
160
- outline: none!important;
161
- -webkit-box-shadow: none;
162
- box-shadow: none;
163
- }
164
- }
165
- }
166
- </style>
1
+ <template>
2
+ <div class="p-10">
3
+ <div partial class="auto">
4
+ <div class="row form-group app-input">
5
+ <label class="">客户名称:</label>
6
+ <div class="col-xs-8" >
7
+ <input class="" v-model=selectdata.f_user_name />
8
+ </div>
9
+ </div>
10
+ <div class="row form-group app-input" >
11
+ <label class="">联系电话:</label>
12
+ <div class="col-xs-8" >
13
+ <input class="" v-model=selectdata.f_phone />
14
+ </div>
15
+ </div>
16
+ <div class="row form-group app-input" >
17
+ <label class="">证件类型:</label>
18
+ <div class="col-xs-8" >
19
+ <input class="" v-model=selectdata.f_credentials />
20
+ </div>
21
+ </div>
22
+ <div class="row form-group app-input" >
23
+ <label class="">证件号码:</label>
24
+ <div class="col-xs-8" >
25
+ <input class="" v-model=selectdata.f_idnumber />
26
+ </div>
27
+ </div>
28
+ <div class="row form-group app-input" >
29
+ <label class="">工程编号:</label>
30
+ <div class="col-xs-8" >
31
+ <input class="" v-model=selectdata.f_apply_num />
32
+ </div>
33
+ </div>
34
+ <div class="row form-group app-input" >
35
+ <label class="">用户地址:</label>
36
+ <div class="col-xs-8" >
37
+ <input class="" v-model=selectdata.f_address />
38
+ </div>
39
+ </div>
40
+ <div class="row form-group app-input" >
41
+ <label class="">报建类型:</label>
42
+ <div class="col-xs-8" >
43
+ <input class="" v-model=selectdata.f_apply_type />
44
+ </div>
45
+ </div>
46
+ <div class="row form-group app-input" >
47
+ <label class="">报建性质:</label>
48
+ <div class="col-xs-8" >
49
+ <input class="" v-model=selectdata.f_apply_nature />
50
+ </div>
51
+ </div>
52
+ <div class="row form-group app-input" >
53
+ <label class="">客户类型:</label>
54
+ <div class="col-xs-8" >
55
+ <input class="" v-model=selectdata.f_user_type />
56
+ </div>
57
+ </div>
58
+ </div>
59
+
60
+ <div class="col-sm-12 col-xs-12">
61
+ <accordion one-at-a-time="true">
62
+ <panel header='附件' :is-open="false" type="primary">
63
+ <app-upload :blodid="selectdata.f_process_id"
64
+ :isupload="true"
65
+ :isdelete="true"
66
+ :isusetype="true"
67
+ :isremark="true"
68
+ :takeimg="true"
69
+ :issearch="true"
70
+ :defname="selectdata.defname">
71
+ </app-upload>
72
+ </panel>
73
+ </accordion>
74
+ </div>
75
+ </div>
76
+
77
+ </template>
78
+ <script>
79
+ import {getNowDate, isEmpty} from '../../../Util'
80
+ // Date格式化
81
+ Date.prototype.Format = function (fmt) {
82
+ var o = {
83
+ 'M+': this.getMonth() + 1, // 月份
84
+ 'd+': this.getDate(), // 日
85
+ 'H+': this.getHours(), // 小时
86
+ 'm+': this.getMinutes(), // 分
87
+ 's+': this.getSeconds(), // 秒
88
+ 'q+': Math.floor((this.getMonth() + 3) / 3), // 季度
89
+ 'S': this.getMilliseconds() // 毫秒
90
+ }
91
+ if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length))
92
+ for (var k in o) {
93
+ if (new RegExp('(' + k + ')').test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)))
94
+ }
95
+ return fmt
96
+ }
97
+
98
+ export default {
99
+ title: '完工',
100
+ props: ['selectdata', 'title'],
101
+ data () {
102
+ return {
103
+ }
104
+ },
105
+ ready () {
106
+ console.log(this.selectdata)
107
+ },
108
+ methods: {
109
+ },
110
+ events: {},
111
+ computed: {},
112
+ watch: {}
113
+ }
114
+ </script>
115
+ <style scoped>
116
+ .panel-self{
117
+ border-radius: 10px;
118
+ border:1px solid #499EDF;
119
+ background-color: #F8F8F8;
120
+ }
121
+ .font{
122
+ font: 15px PingFang-SC-Medium;
123
+ color: #666666;
124
+ }
125
+
126
+ .button_shrink_top {
127
+ width: 34px;
128
+ height: 34px;
129
+ border: solid 1px #6aa6e2;
130
+ background-size: 100%;
131
+ background-image: url("../../../../../static/newStyle/stretch_top.png")
132
+ }
133
+
134
+ .button_shrink_bottom {
135
+ width: 34px;
136
+ height: 34px;
137
+ border: solid 1px #6aa6e2;
138
+ background-size: 100%;
139
+ background-image: url("../../../../../static/newStyle/stretch_bottom.png")
140
+ }
141
+ </style>
142
+ <style lang="less">
143
+ .app-input {
144
+ label {
145
+ float: left;
146
+ }
147
+ .select {
148
+ button {
149
+ border: none;
150
+ outline: none;
151
+ text-align: left;
152
+ .btn-placeholder {
153
+ color: #ACA899
154
+ }
155
+ }
156
+ }
157
+ .datepicker {
158
+ .form-control:focus {
159
+ border: none!important;
160
+ outline: none!important;
161
+ -webkit-box-shadow: none;
162
+ box-shadow: none;
163
+ }
164
+ }
165
+ }
166
+ </style>
@@ -704,11 +704,11 @@ export default {
704
704
  }),
705
705
  applytype: [
706
706
  { label: "全部", value: "" },
707
- ...this.$appdata.getParam("报建类型"),
707
+ ...this.$appdata.getParam("报建类型")?this.$appdata.getParam("报建类型"):[],
708
708
  ],
709
709
  paymentMethod: [
710
710
  { label: "全部", value: "" },
711
- ...this.$appdata.getParam("付款方式"),
711
+ ...this.$appdata.getParam("付款方式")?this.$appdata.getParam("付款方式"):[],
712
712
  ],
713
713
  billStyles: [
714
714
  { label: "全部", value: "" },