doway-coms 1.1.64 → 1.1.66
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
|
@@ -264,7 +264,7 @@
|
|
|
264
264
|
|
|
265
265
|
<!-- 筛选过滤 -->
|
|
266
266
|
<template #text_filter="scope">
|
|
267
|
-
<div class="
|
|
267
|
+
<div class="interceptor-class">
|
|
268
268
|
<div
|
|
269
269
|
:class="scope.column.field + '_filter_' + $index"
|
|
270
270
|
v-for="(loopFilterValue, $index) in scope.column.filters[0].data.displayValues"
|
|
@@ -277,7 +277,7 @@
|
|
|
277
277
|
</div>
|
|
278
278
|
</template>
|
|
279
279
|
<template #select_filter="scope">
|
|
280
|
-
<div class="
|
|
280
|
+
<div class="interceptor-class">
|
|
281
281
|
<a-checkbox-group v-model="scope.column.filters[0].data.displayValues">
|
|
282
282
|
<a-checkbox
|
|
283
283
|
v-for="loopData in scope.column.params.dataSource"
|
|
@@ -291,7 +291,7 @@
|
|
|
291
291
|
</div>
|
|
292
292
|
</template>
|
|
293
293
|
<template #datetime_filter="scope">
|
|
294
|
-
<div class="
|
|
294
|
+
<div class="interceptor-class">
|
|
295
295
|
<div
|
|
296
296
|
:class="scope.column.field + '_filter_' + $index"
|
|
297
297
|
v-for="(loopFilterValue, $index) in scope.column.filters[0].data.displayValues"
|
|
@@ -317,7 +317,7 @@
|
|
|
317
317
|
<a-button @click="filterConfirm(scope.column)">确认</a-button>
|
|
318
318
|
</template>
|
|
319
319
|
<template #date_filter="scope">
|
|
320
|
-
<div class="
|
|
320
|
+
<div class="interceptor-class">
|
|
321
321
|
<div
|
|
322
322
|
:class="scope.column.field + '_filter_' + $index"
|
|
323
323
|
v-for="(loopFilterValue, $index) in scope.column.filters[0].data.displayValues"
|
package/packages/utils/store.js
CHANGED
|
@@ -41,6 +41,18 @@ export default new Vuex.Store({
|
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
actions: {
|
|
44
|
+
/**
|
|
45
|
+
* 系统登出
|
|
46
|
+
* @param {} param0
|
|
47
|
+
*/
|
|
48
|
+
logOut({commit}){
|
|
49
|
+
if(window.$wujie){
|
|
50
|
+
//通知主应用会员过期重新登陆
|
|
51
|
+
window.$wujie.bus.$emit(
|
|
52
|
+
'subAppLoginOut',window.$wujie.props.webAppCode
|
|
53
|
+
)
|
|
54
|
+
}
|
|
55
|
+
},
|
|
44
56
|
setTabTitle({ commit }, tabInfo) {
|
|
45
57
|
if (tabInfo.replaceQuery) {
|
|
46
58
|
let newRoutePath =
|