n20-common-lib 2.17.6 → 2.17.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.
package/package.json
CHANGED
|
@@ -226,7 +226,7 @@ export default {
|
|
|
226
226
|
appNoType: 'add',
|
|
227
227
|
suggestion: '',
|
|
228
228
|
key: this.tableDataA.length,
|
|
229
|
-
isAll: '
|
|
229
|
+
isAll: '2',
|
|
230
230
|
isEnable: '1',
|
|
231
231
|
belongUserno: sessionStorage.getItem('userNo')
|
|
232
232
|
})
|
|
@@ -284,13 +284,13 @@ export default {
|
|
|
284
284
|
getData() {
|
|
285
285
|
if (this.andUser) {
|
|
286
286
|
axios.post('/bems/activiti/actAppOpi/queryAppOpiAndUser', null, { loading: false }).then(({ data }) => {
|
|
287
|
-
this.tableDataA = this.getOnlyData(JSON.parse(JSON.stringify(data)))?.filter((item) => item.isAll
|
|
287
|
+
this.tableDataA = this.getOnlyData(JSON.parse(JSON.stringify(data)))?.filter((item) => item.isAll !== '1')
|
|
288
288
|
this.tableData = this.getOnlyData(data)
|
|
289
289
|
})
|
|
290
290
|
} else {
|
|
291
291
|
axios.post('/bems/activiti/actAppOpi/queryAppOpi', null, { loading: false }).then(({ data }) => {
|
|
292
292
|
this.tableDataA = this.getOnlyData(JSON.parse(JSON.stringify(data.list || [])))?.filter(
|
|
293
|
-
(item) => item.isAll
|
|
293
|
+
(item) => item.isAll !== '1'
|
|
294
294
|
)
|
|
295
295
|
this.tableData = this.getOnlyData(data.list || [])
|
|
296
296
|
})
|