apply-clients 3.2.42 → 3.2.48

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 (43) hide show
  1. package/package.json +1 -1
  2. package/src/App.vue +20 -20
  3. package/src/apply.js +185 -179
  4. package/src/components/app_apply/Process/AppExplorationUser.vue +1 -1
  5. package/src/components/app_apply/ProgressReport/ProgressReportList.vue +209 -209
  6. package/src/components/app_apply/Supervisory/AppProcessSupervisory.vue +183 -183
  7. package/src/components/image/tubiao.png +0 -0
  8. package/src/components/product/Ledger/ContractManagement/OtherContract/OtherContractInformation.vue +429 -429
  9. package/src/components/product/Ledger/ContractManagement/OtherContract/OtherContractList.vue +267 -267
  10. package/src/components/product/Ledger/ContractManagement/PurchaseContract/PurchaseContractInformation.vue +715 -682
  11. package/src/components/product/Ledger/ContractManagement/PurchaseContract/PurchaseContractList.vue +304 -304
  12. package/src/components/product/Ledger/ContractManagement/RepairContract/RepairContractInformation.vue +286 -286
  13. package/src/components/product/Ledger/ContractManagement/RepairContract/RepairContractList.vue +258 -258
  14. package/src/components/product/Ledger/FacilityManagement/FacilityInventory/FacilityInventory.vue +31 -0
  15. package/src/components/product/Ledger/FacilityManagement/FacilityInventory/FacilityInventoryList.vue +5 -0
  16. package/src/components/product/Ledger/FacilityManagement/FacilityInventory/addoldFacilityInformation.vue +326 -0
  17. package/src/components/product/Ledger/FileDownload/FileDownload.vue +42 -65
  18. package/src/components/product/Ledger/Function/InstallInfoSelect.vue +4 -1
  19. package/src/components/product/Ledger/ImportApply/ImportApply.vue +68 -0
  20. package/src/components/product/Ledger/MaterialManagement/DeliveryRecord/DeliveryRecordList.vue +39 -3
  21. package/src/components/product/Ledger/MaterialManagement/InventoryInformation/InventoryInformationList.vue +32 -2
  22. package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialInformation.vue +1 -1
  23. package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialOutStock.vue +438 -430
  24. package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialOutboundOrder.vue +457 -449
  25. package/src/components/product/Ledger/MaterialManagement/InventoryInformation/PurchaseMaterial.vue +10 -2
  26. package/src/components/product/Ledger/MaterialManagement/InventoryInformation/PurchaseOrder.vue +10 -2
  27. package/src/components/product/Ledger/MaterialManagement/InventoryInformation/ReturnMaterial.vue +10 -2
  28. package/src/components/product/Ledger/MaterialManagement/OutboundOrder/OutboundOrderInformation.vue +3 -1
  29. package/src/components/product/Ledger/MaterialManagement/OutboundOrder/OutboundOrderList.vue +31 -2
  30. package/src/components/product/Ledger/MaterialManagement/OutboundOrder/PrintMaterialBill.vue +2 -2
  31. package/src/components/product/Ledger/MaterialManagement/PurchaseRecords/PrintPurchaseOrder.vue +5 -4
  32. package/src/components/product/Ledger/MaterialManagement/PurchaseRecords/PurchaseRecordsInformation.vue +268 -266
  33. package/src/components/product/Ledger/MaterialManagement/PurchaseRecords/PurchaseRecordsList.vue +33 -7
  34. package/src/components/product/Ledger/MaterialManagement/WarehousingRecord/WarehousingRecordList.vue +45 -3
  35. package/src/components/product/Ledger/Process/ProcessSelect.vue +3 -5
  36. package/src/components/product/Ledger/Process/Service/ServiceControl.vue +42 -5
  37. package/src/components/product/Ledger/QinhuaMaterial/PickingRecord/PickingInformation.vue +316 -316
  38. package/src/components/product/Ledger/QinhuaMaterial/SeasoningRecord/SeasoningRecordList.vue +14 -2
  39. package/src/components/product/Ledger/Supervisory/Service/RenWuDan.vue +78 -0
  40. package/src/components/product/Ledger/Supervisory/Service/SupervisoryServiceControl.vue +38 -2
  41. package/src/components/product/Ledger/Supervisory/SupervisoryList.vue +182 -7
  42. package/src/components/product/ServiceView.vue +761 -850
  43. package/static/images/lefticon//346/226/207/344/273/266/346/250/241/345/235/227.png +0 -0
@@ -1,183 +1,183 @@
1
- <template>
2
- <div style="width: 100%">
3
- <criteria-paged :model="model" v-ref:cp>
4
- <criteria partial='criteria' @condition-changed='search' v-ref:cri>
5
- <div partial style="padding: 10px">
6
- <div class="row app-row">
7
- <div class="col-xs-4">
8
- <label class="font text-left">项目名称:</label>
9
- </div>
10
- <div class="col-xs-8" >
11
- <input class="search_input input-font" v-model=model.f_entry_name condition="u.f_entry_name like '%{}%'" />
12
- </div>
13
- </div>
14
- <div class="row app-row">
15
- <div class="col-xs-4">
16
- <label class="font text-left">CEA号:</label>
17
- </div>
18
- <div class="col-xs-8" >
19
- <input class="search_input input-font" v-model=model.f_cea_number condition="u.f_cea_number like '%{}%'" />
20
- </div>
21
- </div>
22
- <div class="row app-row" v-if="$parent.$parent.criteriaShow">
23
- <div class="col-xs-4">
24
- <label class="font text-left">工程编号:</label>
25
- </div>
26
- <div class="col-xs-8" >
27
- <input class="search_input input-font" v-model=model.f_project_number condition="u.f_project_number like '%{}%'" />
28
- </div>
29
- </div>
30
- <div class="row app-row text-right" style="padding-bottom: 10px;height: auto">
31
- <button class="btn btn-primary" @click="$parent.$parent.search()">查询</button>
32
- <button class="btn btn-info" @click="$parent.$parent.clear()">清空</button>
33
- <button class="btn" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"></button>
34
- </div>
35
- </div>
36
- </criteria>
37
- <list :model="model" partial='list'>
38
- <div partial class="auto app-text panel" style="margin: 10px">
39
- <div class="panel-body panel-self">
40
- <div class="col-xs-6">
41
- <p class="col-xs-6 text-left font"><b>工程编号:</b></p>
42
- <p class="col-xs-6 text-left input-font">{{ row.f_project_number }}</p>
43
- </div>
44
- <div class="col-xs-6">
45
- <p class="col-xs-6 text-left font"><b>CEA&emsp;号:</b></p>
46
- <p class="col-xs-6 text-left input-font">{{ row.f_cea_number }}</p>
47
- </div>
48
- <div class="col-xs-12">
49
- <p class="col-xs-3 text-left font"><b>项目名称:</b></p>
50
- <p class="col-xs-9 text-left input-font">{{ row.f_entry_name }}</p>
51
- </div>
52
- <div class="col-xs-6">
53
- <p class="col-xs-6 text-left font"><b>项目类型:</b></p>
54
- <p class="col-xs-6 text-left input-font">{{ row.f_apply_type }}</p>
55
- </div>
56
- <div class="col-xs-6">
57
- <p class="col-xs-6 text-left font"><b>工程类型:</b></p>
58
- <p class="col-xs-6 text-left input-font">{{ row.f_project_type }}</p>
59
- </div>
60
- <div class="col-xs-6">
61
- <p class="col-xs-6 text-left font"><b>项目区域:</b></p>
62
- <p class="col-xs-6 text-left input-font">{{ row.f_project_area }}</p>
63
- </div>
64
- <div class="col-xs-6">
65
- <p class="col-xs-6 text-left font"><b>联&ensp;系&ensp;人:</b></p>
66
- <p class="col-xs-6 text-left input-font">{{ row.f_contact }}</p>
67
- </div>
68
- <div class="col-xs-6">
69
- <p class="col-xs-6 text-left font"><b>联系电话:</b></p>
70
- <p class="col-xs-6 text-left input-font">{{ row.f_phone }}</p>
71
- </div>
72
- <div class="col-xs-6">
73
- <p class="col-xs-6 text-left font"><b>办理环节:</b></p>
74
- <p class="col-xs-6 text-left input-font">{{ row.defname }}</p>
75
- </div>
76
- <div class="col-xs-12">
77
- <p class="col-xs-3 text-left font"><b>项目地址:</b></p>
78
- <p class="col-xs-9 text-left input-font">{{ row.f_address }}</p>
79
- </div>
80
- <div class="col-xs-12 text-right">
81
- <button class="btn btn-info" @click="$parent.$parent.$parent.click(row)">查看进度</button>
82
- </div>
83
- </div>
84
- </div>
85
- </list>
86
- </criteria-paged>
87
- </div>
88
- </template>
89
- <script>
90
- import Vue from 'vue'
91
- import { PagedList, HttpResetClass } from 'vue-client'
92
- export default {
93
- title: '报建流程',
94
- data () {
95
- return {
96
- model: new PagedList(`${this.$androidUtil.getProxyUrl()}/rs/sql/supervisory`, 20, {
97
- data: {
98
- id: Vue.user.id,
99
- orgid: Vue.user.orgid
100
- // id: '266',
101
- // orgid: '212'
102
- }
103
- }),
104
- criteriaShow: false
105
- }
106
- },
107
- ready () {
108
- this.search()
109
- },
110
- methods: {
111
- clear () {
112
- Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
113
- this.$refs.cp.$refs.cri.model[key] = null
114
- })
115
- },
116
- // 查询
117
- search () {
118
- this.$refs.cp.$refs.cri.search()
119
- },
120
- click (row) {
121
- let _this = this
122
- this.$dispatch('gotoson', {
123
- _this: _this,
124
- title: '详情信息',
125
- safe: true
126
- })
127
- this.$goto('app-supervisory-cart', {selectdata: row}, 'self', _this.search)
128
- }
129
- },
130
- events: {
131
- },
132
- watch: {
133
- }
134
- }
135
- </script>
136
- <style scoped>
137
- .app-row {
138
- height: auto;
139
- background-color: white;
140
- padding: 10px 10px 0 10px;
141
- border-bottom: 1px solid rgba(235, 235, 235, 0.5);
142
- }
143
- .search_input {
144
- border: 0;
145
- outline: none;
146
- }
147
- .input-font{
148
- font: 15px PingFang-SC-Medium;
149
- color: #333333;
150
- }
151
- .app-text {
152
- font-size: 12px;
153
- }
154
- .panel-self{
155
- border-radius: 10px;
156
- border:1px solid #499EDF;
157
- background-color: #F8F8F8;
158
- }
159
- .font{
160
- font: 15px PingFang-SC-Medium;
161
- color: #666666;
162
- }
163
- .input-font{
164
- font: 15px PingFang-SC-Medium;
165
- color: #333333;
166
- }
167
-
168
- .button_shrink_top {
169
- width: 34px;
170
- height: 34px;
171
- border: solid 1px #6aa6e2;
172
- background-size: 100%;
173
- background-image: url("../../../../static/newStyle/stretch_top.png")
174
- }
175
-
176
- .button_shrink_bottom {
177
- width: 34px;
178
- height: 34px;
179
- border: solid 1px #6aa6e2;
180
- background-size: 100%;
181
- background-image: url("../../../../static/newStyle/stretch_bottom.png")
182
- }
183
- </style>
1
+ <template>
2
+ <div style="width: 100%">
3
+ <criteria-paged :model="model" v-ref:cp>
4
+ <criteria partial='criteria' @condition-changed='search' v-ref:cri>
5
+ <div partial style="padding: 10px">
6
+ <div class="row app-row">
7
+ <div class="col-xs-4">
8
+ <label class="font text-left">项目名称:</label>
9
+ </div>
10
+ <div class="col-xs-8" >
11
+ <input class="search_input input-font" v-model=model.f_entry_name condition="u.f_entry_name like '%{}%'" />
12
+ </div>
13
+ </div>
14
+ <div class="row app-row">
15
+ <div class="col-xs-4">
16
+ <label class="font text-left">CEA号:</label>
17
+ </div>
18
+ <div class="col-xs-8" >
19
+ <input class="search_input input-font" v-model=model.f_cea_number condition="u.f_cea_number like '%{}%'" />
20
+ </div>
21
+ </div>
22
+ <div class="row app-row" v-if="$parent.$parent.criteriaShow">
23
+ <div class="col-xs-4">
24
+ <label class="font text-left">工程编号:</label>
25
+ </div>
26
+ <div class="col-xs-8" >
27
+ <input class="search_input input-font" v-model=model.f_project_number condition="u.f_project_number like '%{}%'" />
28
+ </div>
29
+ </div>
30
+ <div class="row app-row text-right" style="padding-bottom: 10px;height: auto">
31
+ <button class="btn btn-primary" @click="$parent.$parent.search()">查询</button>
32
+ <button class="btn btn-info" @click="$parent.$parent.clear()">清空</button>
33
+ <button class="btn" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"></button>
34
+ </div>
35
+ </div>
36
+ </criteria>
37
+ <list :model="model" partial='list'>
38
+ <div partial class="auto app-text panel" style="margin: 10px">
39
+ <div class="panel-body panel-self">
40
+ <div class="col-xs-6">
41
+ <p class="col-xs-6 text-left font"><b>工程编号:</b></p>
42
+ <p class="col-xs-6 text-left input-font">{{ row.f_project_number }}</p>
43
+ </div>
44
+ <div class="col-xs-6">
45
+ <p class="col-xs-6 text-left font"><b>CEA&emsp;号:</b></p>
46
+ <p class="col-xs-6 text-left input-font">{{ row.f_cea_number }}</p>
47
+ </div>
48
+ <div class="col-xs-12">
49
+ <p class="col-xs-3 text-left font"><b>项目名称:</b></p>
50
+ <p class="col-xs-9 text-left input-font">{{ row.f_entry_name }}</p>
51
+ </div>
52
+ <div class="col-xs-6">
53
+ <p class="col-xs-6 text-left font"><b>项目类型:</b></p>
54
+ <p class="col-xs-6 text-left input-font">{{ row.f_apply_type }}</p>
55
+ </div>
56
+ <div class="col-xs-6">
57
+ <p class="col-xs-6 text-left font"><b>工程类型:</b></p>
58
+ <p class="col-xs-6 text-left input-font">{{ row.f_project_type }}</p>
59
+ </div>
60
+ <div class="col-xs-6">
61
+ <p class="col-xs-6 text-left font"><b>项目区域:</b></p>
62
+ <p class="col-xs-6 text-left input-font">{{ row.f_project_area }}</p>
63
+ </div>
64
+ <div class="col-xs-6">
65
+ <p class="col-xs-6 text-left font"><b>联&ensp;系&ensp;人:</b></p>
66
+ <p class="col-xs-6 text-left input-font">{{ row.f_contact }}</p>
67
+ </div>
68
+ <div class="col-xs-6">
69
+ <p class="col-xs-6 text-left font"><b>联系电话:</b></p>
70
+ <p class="col-xs-6 text-left input-font">{{ row.f_phone }}</p>
71
+ </div>
72
+ <div class="col-xs-6">
73
+ <p class="col-xs-6 text-left font"><b>办理环节:</b></p>
74
+ <p class="col-xs-6 text-left input-font">{{ row.defname }}</p>
75
+ </div>
76
+ <div class="col-xs-12">
77
+ <p class="col-xs-3 text-left font"><b>项目地址:</b></p>
78
+ <p class="col-xs-9 text-left input-font">{{ row.f_address }}</p>
79
+ </div>
80
+ <div class="col-xs-12 text-right">
81
+ <button class="btn btn-info" @click="$parent.$parent.$parent.click(row)">查看进度</button>
82
+ </div>
83
+ </div>
84
+ </div>
85
+ </list>
86
+ </criteria-paged>
87
+ </div>
88
+ </template>
89
+ <script>
90
+ import Vue from 'vue'
91
+ import { PagedList, HttpResetClass } from 'vue-client'
92
+ export default {
93
+ title: '报建流程',
94
+ data () {
95
+ return {
96
+ model: new PagedList(`${this.$androidUtil.getProxyUrl()}/rs/sql/supervisory`, 20, {
97
+ data: {
98
+ id: Vue.user.id,
99
+ orgid: Vue.user.orgid
100
+ // id: '266',
101
+ // orgid: '212'
102
+ }
103
+ }),
104
+ criteriaShow: false
105
+ }
106
+ },
107
+ ready () {
108
+ this.search()
109
+ },
110
+ methods: {
111
+ clear () {
112
+ Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
113
+ this.$refs.cp.$refs.cri.model[key] = null
114
+ })
115
+ },
116
+ // 查询
117
+ search () {
118
+ this.$refs.cp.$refs.cri.search()
119
+ },
120
+ click (row) {
121
+ let _this = this
122
+ this.$dispatch('gotoson', {
123
+ _this: _this,
124
+ title: '详情信息',
125
+ safe: true
126
+ })
127
+ this.$goto('app-supervisory-cart', {selectdata: row}, 'self', _this.search)
128
+ }
129
+ },
130
+ events: {
131
+ },
132
+ watch: {
133
+ }
134
+ }
135
+ </script>
136
+ <style scoped>
137
+ .app-row {
138
+ height: auto;
139
+ background-color: white;
140
+ padding: 10px 10px 0 10px;
141
+ border-bottom: 1px solid rgba(235, 235, 235, 0.5);
142
+ }
143
+ .search_input {
144
+ border: 0;
145
+ outline: none;
146
+ }
147
+ .input-font{
148
+ font: 15px PingFang-SC-Medium;
149
+ color: #333333;
150
+ }
151
+ .app-text {
152
+ font-size: 12px;
153
+ }
154
+ .panel-self{
155
+ border-radius: 10px;
156
+ border:1px solid #499EDF;
157
+ background-color: #F8F8F8;
158
+ }
159
+ .font{
160
+ font: 15px PingFang-SC-Medium;
161
+ color: #666666;
162
+ }
163
+ .input-font{
164
+ font: 15px PingFang-SC-Medium;
165
+ color: #333333;
166
+ }
167
+
168
+ .button_shrink_top {
169
+ width: 34px;
170
+ height: 34px;
171
+ border: solid 1px #6aa6e2;
172
+ background-size: 100%;
173
+ background-image: url("../../../../static/newStyle/stretch_top.png")
174
+ }
175
+
176
+ .button_shrink_bottom {
177
+ width: 34px;
178
+ height: 34px;
179
+ border: solid 1px #6aa6e2;
180
+ background-size: 100%;
181
+ background-image: url("../../../../static/newStyle/stretch_bottom.png")
182
+ }
183
+ </style>
Binary file