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
|
@@ -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
|
-
|
|
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
|
}
|