doway-coms 1.1.96 → 1.1.98
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
|
@@ -325,30 +325,43 @@
|
|
|
325
325
|
</template>
|
|
326
326
|
<template #select_filter="scope">
|
|
327
327
|
<div class="interceptor-class">
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
328
|
+
<a-checkbox-group
|
|
329
|
+
v-model="scope.column.filters[0].data.displayValues"
|
|
330
|
+
:style="{
|
|
331
|
+
display: 'flex',
|
|
332
|
+
flexWrap: 'wrap',
|
|
333
|
+
justifyContent: 'center',
|
|
334
|
+
alignItems: 'center',
|
|
335
|
+
maxHeight: '150px',
|
|
336
|
+
overflow: 'auto',
|
|
337
|
+
maxWidth: '100px'
|
|
338
|
+
}"
|
|
339
|
+
>
|
|
340
|
+
<br />
|
|
341
|
+
<a-checkbox
|
|
342
|
+
v-for="loopSource in scope.column.params.dataSource"
|
|
343
|
+
:key="loopSource.value"
|
|
344
|
+
:value="loopSource.value"
|
|
345
|
+
style="margin: 5px 0"
|
|
346
|
+
>{{ loopSource.caption }}
|
|
347
|
+
</a-checkbox>
|
|
348
|
+
|
|
349
|
+
</a-checkbox-group>
|
|
350
|
+
<!-- <a-select-->
|
|
351
|
+
<!-- v-model="scope.column.filters[0].data.displayValues"-->
|
|
352
|
+
<!-- mode="multiple"-->
|
|
353
|
+
<!-- allowClear-->
|
|
354
|
+
<!-- style="width: 300px;"-->
|
|
355
|
+
<!-- placeholder="筛选条件"-->
|
|
356
|
+
<!-- showArrow-->
|
|
357
|
+
<!-- >-->
|
|
358
|
+
<!-- <a-select-option-->
|
|
359
|
+
<!-- v-for="loopSource in scope.column.params.dataSource"-->
|
|
360
|
+
<!-- :key="loopSource.value"-->
|
|
361
|
+
<!-- :value="loopSource.value"-->
|
|
362
|
+
<!-- >{{ loopSource.caption }}</a-select-option-->
|
|
363
|
+
<!-- >-->
|
|
364
|
+
<!-- </a-select>-->
|
|
352
365
|
<br>
|
|
353
366
|
<a-button @click="filterConfirm(scope.column)">确认</a-button>
|
|
354
367
|
</div>
|
|
@@ -344,7 +344,7 @@ import {
|
|
|
344
344
|
Input,
|
|
345
345
|
InputNumber,
|
|
346
346
|
} from 'ant-design-vue'
|
|
347
|
-
import { controlType } from "
|
|
347
|
+
import { controlType } from "../../utils/enum";
|
|
348
348
|
import moment from "moment";
|
|
349
349
|
import { mapGetters } from "vuex";
|
|
350
350
|
export default {
|