apply-clients 3.5.3-21 → 3.5.3-22

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apply-clients",
3
- "version": "3.5.3-21",
3
+ "version": "3.5.3-22",
4
4
  "description": "报建前端模块",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -949,7 +949,6 @@ export default {
949
949
  closePrint () {
950
950
  this.showPrint = false
951
951
  this.showqrcode = false
952
- this.data = {}
953
952
  },
954
953
  print () {
955
954
  this.$refs.print.$refs.print.PrintTable()
@@ -13,7 +13,7 @@
13
13
  text-align: center;
14
14
  }
15
15
  </style>
16
- <div id="printCharge" v-if="userinfo.f_apply_type == '居民用户报建'||userinfo.f_apply_type == '居民团体单户报建'">
16
+ <div id="printCharge" v-if="userinfo.f_apply_type == '居民用户报建'||userinfo.f_apply_type == '居民团体单户报建'||userinfo.f_apply_type == '其他报建'">
17
17
  <div style="margin-bottom: 10px;text-align: center;" >
18
18
  <span style="font-size: 20px;font-weight: 600">{{ $login.f.orgs}}派工流程表</span>
19
19
  </div>
@@ -286,7 +286,12 @@ import {HttpResetClass} from 'vue-client'
286
286
  },
287
287
  jsontostring (row) {
288
288
  if (!isEmpty(row)) {
289
- return JSON.parse(row).join()
289
+ if (typeof row === 'string') {
290
+ return JSON.parse(row).join()
291
+ }
292
+ if (Array.isArray(row)) {
293
+ return row.join()
294
+ }
290
295
  }
291
296
  return ''
292
297
  }