apply-clients 6.0.4 → 6.0.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 (30) hide show
  1. package/build/dev-server.js +2 -2
  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 +1 -1
  5. package/src/components/apply/base/rightview/carddetail/ChangeFeeDetail2.vue +1 -1
  6. package/src/components/apply/base/rightview/carddetail/ReduceFeeDetail2.vue +2 -2
  7. package/src/components/apply/base/rightview/carddetail/StopApplyDetail2.vue +70 -70
  8. package/src/components/build/Install/InstallFee/AddContract.vue +257 -257
  9. package/src/components/build/Install/InstallFee/InstallFee.vue +929 -929
  10. package/src/components/build/Install/InstallFee/PreparationFee.vue +223 -223
  11. package/src/components/build/Install/InstallFee/PrestoreFee.vue +630 -630
  12. package/src/components/build/Install/Process/CustomerBuildingMessage.vue +251 -251
  13. package/src/components/build/Install/Process/CustomerEquipmentMessage.vue +172 -172
  14. package/src/components/build/Install/Process/CustomerFile.vue +423 -423
  15. package/src/components/build/Install/Process/CustomerMaterialMessage.vue +414 -414
  16. package/src/components/build/Install/Process/CustomerRecordMessage.vue +749 -749
  17. package/src/components/build/Install/Process/FeeNormeAndContratSigne.vue +376 -376
  18. package/src/components/build/Install/Process/MeterType.vue +379 -379
  19. package/src/components/build/Install/Process/PlaceControler.vue +304 -304
  20. package/src/components/build/Install/Process/zhongran/ZR_Construction.vue +388 -388
  21. package/src/components/build/Install/Process/zhongran/ZR_CustomerEssentialInfo.vue +416 -415
  22. package/src/components/build/Install/Process/zhongran/ZR_MaterialPlan.vue +259 -259
  23. package/src/components/build/Install/Process/zhongran/ZR_MaterialPlanExamine.vue +243 -243
  24. package/src/components/build/Install/Process/zhongran/ZR_PlaceControler.vue +426 -426
  25. package/src/components/build/Install/Process/zhongran/ZR_TestDesign.vue +441 -441
  26. package/src/components/build/Install/ProcessInfo/ApplyRecordCancel.vue +135 -135
  27. package/src/components/build/Install/bill/BillGZKMakeInfo.vue +58 -58
  28. package/src/components/build/Install/bill/BillQRKMakeInfo.vue +79 -79
  29. package/src/components/build/Install/bill/BillXSDMakeInfo.vue +206 -206
  30. package/src/main.js +25 -25
@@ -11,7 +11,7 @@ var compiler = webpack(config)
11
11
  // https://github.com/chimurai/http-proxy-middleware
12
12
  var proxyTable = {
13
13
  '/rs': {
14
- target: 'http://118.122.2.49:8060'
14
+ target: 'http://218.93.226.210:7005'
15
15
  }
16
16
  }
17
17
 
@@ -68,5 +68,5 @@ module.exports = app.listen(8004, function (err) {
68
68
  console.log(err)
69
69
  return
70
70
  }
71
- console.log('Listening at http://localhost:8004')
71
+ console.log('Listening at http://localhost:8044')
72
72
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apply-clients",
3
- "version": "6.0.4",
3
+ "version": "6.0.7",
4
4
  "description": "报建前端模块",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -155,10 +155,11 @@
155
155
  },
156
156
  search () {
157
157
  let condition = '1=1'
158
+ // this.$refs.paged.$refs.cri.search()
158
159
  if (!this.$login.f.parent.parent.name.includes('统一资源管理')) {
159
- condition += ` and f_filiale = '${this.$login.f.f_fengongsi}'`
160
+ condition += `and f_filiale = '${this.$login.f.f_fengongsi}'`
160
161
  }
161
- this.$resetpost(this.sqlurl,{data: {condition: condition}}).then((a) => {
162
+ this.$resetpost(this.sqlurl, {data: {condition: condition}}).then((a) => {
162
163
  if (a.data.length === 0) {
163
164
  this.model.rows = []
164
165
  this.model.state = '错误'
@@ -54,7 +54,7 @@ export default {
54
54
  orderitem: 'id'
55
55
  }
56
56
  this.$info(`加载数据中..., sql:${sql}`)
57
- this.$refs.pv.load('rs/sql/applysingleTable', {data: condition}).then((a) => {
57
+ this.$resetpost('rs/sql/singleTable', {data: condition}).then((a) => {
58
58
  this.$info(`成功获取到数据!, data:${JSON.stringify(a.data)}`)
59
59
  this.model = a.data
60
60
  console.log('1111111model', this.model)
@@ -93,7 +93,7 @@ export default {
93
93
  condition: 'id = ' + this.data.id
94
94
  }
95
95
  this.$info(`加载数据中..., sql:${sql}`)
96
- this.$refs.pv.load('rs/sql/applysingleTable', {data: data2}).then((a) => {
96
+ this.$resetpost('rs/sql/singleTable', {data: data2}).then((a) => {
97
97
  this.$info(`成功获取到数据!, data:${JSON.stringify(a.data)}`)
98
98
  this.model = a.data
99
99
  console.log('1111111model', this.model)
@@ -45,7 +45,7 @@ export default {
45
45
  }
46
46
  },
47
47
  ready () {
48
- console.log('dadddddddddddddddddddddreduce', this.data)
48
+ console.log('dadddddddddddddddddddddreduce', this.data)
49
49
  let sql = 'singleTable_OrderBy'
50
50
  let condition = {
51
51
  items: '*',
@@ -54,7 +54,7 @@ export default {
54
54
  orderitem: 'id'
55
55
  }
56
56
  this.$info(`加载数据中..., sql:${sql}`)
57
- this.$refs.pv.load('rs/sql/applysingleTable', {data:condition}).then((a) => {
57
+ this.$resetpost('rs/sql/singleTable', {data:condition}).then((a) => {
58
58
  this.$info(`成功获取到数据!, data:${JSON.stringify(a.data)}`)
59
59
  this.model = a.data
60
60
  console.log('1111111model', this.model)
@@ -1,70 +1,70 @@
1
- <template>
2
- <div class="auto">
3
- <partial-view v-ref:pv>
4
-
5
- <table class="table table-bordered table-condensed self-table" id="table" >
6
- <!-- <tr>
7
- <td><b>享受减免账户</b></td>
8
- <td>{{data.f_user_name}}</td>
9
- </tr> -->
10
- <tr>
11
- <td><b>终止原因</b></td>
12
- <td>{{model.f_stop_remarks}}</td>
13
- </tr>
14
-
15
- <tr>
16
- <td><b>操作人</b></td>
17
- <td>{{model.f_operator}}</td>
18
- </tr>
19
- <tr>
20
- <td><b>操作部门</b></td>
21
- <td>{{model.f_department}}</td>
22
- </tr>
23
- <tr>
24
- <td><b>操作日期</b></td>
25
- <td>{{model.f_date}}</td>
26
- </tr>
27
- </table>
28
-
29
- </partial-view>
30
- </div>
31
- </template>
32
-
33
- <script>
34
- import Table from '../../../../Table'
35
- export default {
36
- title: '终止报建详情',
37
- props: ['data'],
38
- data () {
39
- return {
40
- model: {}
41
- }
42
- },
43
- ready () {
44
- let sql = 'singleTable_OrderBy'
45
- let condition = {
46
- items: '*',
47
- tablename: 't_stopapply',
48
- condition: 'id = ' + this.data.id,
49
- orderitem: 'id'
50
- }
51
- this.$info(`加载数据中..., sql:${sql}`)
52
- this.$refs.pv.load('rs/logic/getOneData', {data: {sql: sql, params: condition}}).then((a) => {
53
- this.$info(`成功获取到数据!, data:${JSON.stringify(a.data)}`)
54
- this.model = a.data
55
- }).catch((error) => {
56
- if (error.status) {
57
- this.$warn(`加载数据出错, ${JSON.stringify(error)}`)
58
- return
59
- }
60
- throw error
61
- })
62
- },
63
- methods: {
64
- // 获取表中字段对应的中文名
65
- getValue (key) {
66
- return Table.data[key]
67
- }
68
- }
69
- }
70
- </script>
1
+ <template>
2
+ <div class="auto">
3
+ <partial-view v-ref:pv>
4
+
5
+ <table class="table table-bordered table-condensed self-table" id="table" >
6
+ <!-- <tr>
7
+ <td><b>享受减免账户</b></td>
8
+ <td>{{data.f_user_name}}</td>
9
+ </tr> -->
10
+ <tr>
11
+ <td><b>终止原因</b></td>
12
+ <td>{{model.f_stop_remarks}}</td>
13
+ </tr>
14
+
15
+ <tr>
16
+ <td><b>操作人</b></td>
17
+ <td>{{model.f_operator}}</td>
18
+ </tr>
19
+ <tr>
20
+ <td><b>操作部门</b></td>
21
+ <td>{{model.f_department}}</td>
22
+ </tr>
23
+ <tr>
24
+ <td><b>操作日期</b></td>
25
+ <td>{{model.f_date}}</td>
26
+ </tr>
27
+ </table>
28
+
29
+ </partial-view>
30
+ </div>
31
+ </template>
32
+
33
+ <script>
34
+ import Table from '../../../../Table'
35
+ export default {
36
+ title: '终止报建详情',
37
+ props: ['data'],
38
+ data () {
39
+ return {
40
+ model: {}
41
+ }
42
+ },
43
+ ready () {
44
+ let sql = 'singleTable_OrderBy'
45
+ let condition = {
46
+ items: '*',
47
+ tablename: 't_stopapply',
48
+ condition: 'id = ' + this.data.id,
49
+ orderitem: 'id'
50
+ }
51
+ this.$info(`加载数据中..., sql:${sql}`)
52
+ this.$resetpost('rs/logic/getOneData', {data: {sql: sql, params: condition}}).then((a) => {
53
+ this.$info(`成功获取到数据!, data:${JSON.stringify(a.data)}`)
54
+ this.model = a.data
55
+ }).catch((error) => {
56
+ if (error.status) {
57
+ this.$warn(`加载数据出错, ${JSON.stringify(error)}`)
58
+ return
59
+ }
60
+ throw error
61
+ })
62
+ },
63
+ methods: {
64
+ // 获取表中字段对应的中文名
65
+ getValue (key) {
66
+ return Table.data[key]
67
+ }
68
+ }
69
+ }
70
+ </script>