apply-clients 6.0.4 → 6.0.6

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 (28) hide show
  1. package/build/dev-server.js +72 -72
  2. package/package.json +1 -1
  3. package/src/components/apply/base/rightview/InstallCardList2.vue +3 -2
  4. package/src/components/apply/base/rightview/carddetail/BuildFeeDetail2.vue +77 -77
  5. package/src/components/apply/base/rightview/carddetail/ChangeFeeDetail2.vue +116 -116
  6. package/src/components/apply/base/rightview/carddetail/ReduceFeeDetail2.vue +77 -77
  7. package/src/components/build/Install/InstallFee/AddContract.vue +257 -257
  8. package/src/components/build/Install/InstallFee/InstallFee.vue +929 -929
  9. package/src/components/build/Install/InstallFee/PreparationFee.vue +223 -223
  10. package/src/components/build/Install/InstallFee/PrestoreFee.vue +630 -630
  11. package/src/components/build/Install/Process/CustomerBuildingMessage.vue +251 -251
  12. package/src/components/build/Install/Process/CustomerEquipmentMessage.vue +172 -172
  13. package/src/components/build/Install/Process/CustomerFile.vue +423 -423
  14. package/src/components/build/Install/Process/CustomerMaterialMessage.vue +414 -414
  15. package/src/components/build/Install/Process/CustomerRecordMessage.vue +749 -749
  16. package/src/components/build/Install/Process/FeeNormeAndContratSigne.vue +376 -376
  17. package/src/components/build/Install/Process/MeterType.vue +379 -379
  18. package/src/components/build/Install/Process/PlaceControler.vue +304 -304
  19. package/src/components/build/Install/Process/zhongran/ZR_Construction.vue +388 -388
  20. package/src/components/build/Install/Process/zhongran/ZR_MaterialPlan.vue +259 -259
  21. package/src/components/build/Install/Process/zhongran/ZR_MaterialPlanExamine.vue +243 -243
  22. package/src/components/build/Install/Process/zhongran/ZR_PlaceControler.vue +426 -426
  23. package/src/components/build/Install/Process/zhongran/ZR_TestDesign.vue +441 -441
  24. package/src/components/build/Install/ProcessInfo/ApplyRecordCancel.vue +135 -135
  25. package/src/components/build/Install/bill/BillGZKMakeInfo.vue +58 -58
  26. package/src/components/build/Install/bill/BillQRKMakeInfo.vue +79 -79
  27. package/src/components/build/Install/bill/BillXSDMakeInfo.vue +206 -206
  28. package/src/main.js +25 -25
@@ -1,77 +1,77 @@
1
- <template>
2
- <div class="auto">
3
- <partial-view v-ref:pv>
4
- <!-- <div class="row"> -->
5
- <!-- <label class = " col-sm-3 control-label">用户姓名:</label> -->
6
- <!-- <span style="padding:0" class = " col-sm-3">{{model[0].f_user_name}}</span> -->
7
- <!-- <label class = "col-sm-3 control-label">操作人:</label>
8
- <span class = "col-sm-3">{{model.f_operator}}</span> -->
9
- <!-- </div> -->
10
- <table class="table table-bordered table-condensed self-table" id="table" >
11
- <!-- <tr>
12
- <td><b>享受减免账户</b></td>
13
- <td>{{data.f_user_name}}</td>
14
- </tr> -->
15
- <tr>
16
- <td><b>减免科目</b></td>
17
- <td>{{model.f_subject}}</td>
18
- </tr>
19
- <tr>
20
- <td><b>减免金额</b></td>
21
- <td>{{model.f_fee}}</td>
22
- </tr>
23
- <tr>
24
- <td><b>审核领导</b></td>
25
- <td>{{model.f_leader}}</td>
26
- </tr>
27
- <tr>
28
- <td><b>操作日期</b></td>
29
- <td>{{model.f_date}}</td>
30
- </tr>
31
- </table>
32
-
33
- </partial-view>
34
- </div>
35
- </template>
36
-
37
- <script>
38
- import Table from '../../../../Table'
39
- export default {
40
- title: '报建费用减免',
41
- props: ['data'],
42
- data () {
43
- return {
44
- model: {}
45
- }
46
- },
47
- ready () {
48
- console.log('dadddddddddddddddddddddreduce', this.data)
49
- let sql = 'singleTable_OrderBy'
50
- let condition = {
51
- items: '*',
52
- tablename: 't_costreduction',
53
- condition: 'id = ' + this.data.id,
54
- orderitem: 'id'
55
- }
56
- this.$info(`加载数据中..., sql:${sql}`)
57
- this.$refs.pv.load('rs/sql/applysingleTable', {data:condition}).then((a) => {
58
- this.$info(`成功获取到数据!, data:${JSON.stringify(a.data)}`)
59
- this.model = a.data
60
- console.log('1111111model', this.model)
61
- console.log('1111111data', a.data)
62
- }).catch((error) => {
63
- if (error.status) {
64
- this.$warn(`加载数据出错, ${JSON.stringify(error)}`)
65
- return
66
- }
67
- throw error
68
- })
69
- },
70
- methods: {
71
- // 获取表中字段对应的中文名
72
- getValue (key) {
73
- return Table.data[key]
74
- }
75
- }
76
- }
77
- </script>
1
+ <template>
2
+ <div class="auto">
3
+ <partial-view v-ref:pv>
4
+ <!-- <div class="row"> -->
5
+ <!-- <label class = " col-sm-3 control-label">用户姓名:</label> -->
6
+ <!-- <span style="padding:0" class = " col-sm-3">{{model[0].f_user_name}}</span> -->
7
+ <!-- <label class = "col-sm-3 control-label">操作人:</label>
8
+ <span class = "col-sm-3">{{model.f_operator}}</span> -->
9
+ <!-- </div> -->
10
+ <table class="table table-bordered table-condensed self-table" id="table" >
11
+ <!-- <tr>
12
+ <td><b>享受减免账户</b></td>
13
+ <td>{{data.f_user_name}}</td>
14
+ </tr> -->
15
+ <tr>
16
+ <td><b>减免科目</b></td>
17
+ <td>{{model.f_subject}}</td>
18
+ </tr>
19
+ <tr>
20
+ <td><b>减免金额</b></td>
21
+ <td>{{model.f_fee}}</td>
22
+ </tr>
23
+ <tr>
24
+ <td><b>审核领导</b></td>
25
+ <td>{{model.f_leader}}</td>
26
+ </tr>
27
+ <tr>
28
+ <td><b>操作日期</b></td>
29
+ <td>{{model.f_date}}</td>
30
+ </tr>
31
+ </table>
32
+
33
+ </partial-view>
34
+ </div>
35
+ </template>
36
+
37
+ <script>
38
+ import Table from '../../../../Table'
39
+ export default {
40
+ title: '报建费用减免',
41
+ props: ['data'],
42
+ data () {
43
+ return {
44
+ model: {}
45
+ }
46
+ },
47
+ ready () {
48
+ console.log('dadddddddddddddddddddddreduce', this.data)
49
+ let sql = 'singleTable_OrderBy'
50
+ let condition = {
51
+ items: '*',
52
+ tablename: 't_costreduction',
53
+ condition: 'id = ' + this.data.id,
54
+ orderitem: 'id'
55
+ }
56
+ this.$info(`加载数据中..., sql:${sql}`)
57
+ this.$refs.pv.load('rs/sql/singleTable', {data:condition}).then((a) => {
58
+ this.$info(`成功获取到数据!, data:${JSON.stringify(a.data)}`)
59
+ this.model = a.data
60
+ console.log('1111111model', this.model)
61
+ console.log('1111111data', a.data)
62
+ }).catch((error) => {
63
+ if (error.status) {
64
+ this.$warn(`加载数据出错, ${JSON.stringify(error)}`)
65
+ return
66
+ }
67
+ throw error
68
+ })
69
+ },
70
+ methods: {
71
+ // 获取表中字段对应的中文名
72
+ getValue (key) {
73
+ return Table.data[key]
74
+ }
75
+ }
76
+ }
77
+ </script>