@cmstops/pro-compo 0.3.26 → 0.3.28
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/es/baseFilter/component.js +3 -0
- package/es/contentDetailList/components/Content/KongoNavItem/index.js +2 -0
- package/es/contentModal/components/CompoList/index.js +3 -0
- package/es/contentModal/components/storeBox/index.js +5 -2
- package/lib/baseFilter/component.js +3 -0
- package/lib/contentDetailList/components/Content/KongoNavItem/index.js +2 -0
- package/lib/contentModal/components/CompoList/index.js +3 -0
- package/lib/contentModal/components/storeBox/index.js +5 -2
- package/package.json +1 -1
|
@@ -203,6 +203,9 @@ const _sfc_main = defineComponent({
|
|
|
203
203
|
modelValue: form.value[item.key].range,
|
|
204
204
|
"onUpdate:modelValue": ($event) => form.value[item.key].range = $event,
|
|
205
205
|
style: normalizeStyle({ width: styleWidth(form.value[item.key]) }),
|
|
206
|
+
"time-picker-props": {
|
|
207
|
+
defaultValue: ["00:00:00", "23:59:59"]
|
|
208
|
+
},
|
|
206
209
|
"value-format": "timestamp",
|
|
207
210
|
"popup-container": "#base-filter-popup-container",
|
|
208
211
|
onClick: _cache[1] || (_cache[1] = withModifiers(() => {
|
|
@@ -65,6 +65,8 @@ const _sfc_main = defineComponent({
|
|
|
65
65
|
return _payload.relation_url;
|
|
66
66
|
if (props.item.series === "app")
|
|
67
67
|
return _payload.label;
|
|
68
|
+
if (props.item.series === "political")
|
|
69
|
+
return _payload.label;
|
|
68
70
|
return "";
|
|
69
71
|
});
|
|
70
72
|
const mouseEnterFun = (event, row) => {
|
|
@@ -146,6 +146,9 @@ const _sfc_main = defineComponent({
|
|
|
146
146
|
params.columns = props.type;
|
|
147
147
|
}
|
|
148
148
|
if (filter.value) {
|
|
149
|
+
if (!filter.value.columns) {
|
|
150
|
+
filter.value.columns = props.type;
|
|
151
|
+
}
|
|
149
152
|
params = { ...params, ...filter.value };
|
|
150
153
|
}
|
|
151
154
|
if (gid !== "all") {
|
|
@@ -29,7 +29,10 @@ const _sfc_main = defineComponent({
|
|
|
29
29
|
return openBlock(), createElementBlock("div", _hoisted_1, [
|
|
30
30
|
createVNode(unref(Popover), {
|
|
31
31
|
"arrow-style": { display: "none" },
|
|
32
|
-
"content-style": {
|
|
32
|
+
"content-style": {
|
|
33
|
+
width: "420px",
|
|
34
|
+
display: props.selectData.length ? "block" : "none"
|
|
35
|
+
},
|
|
33
36
|
"content-class": "selected-store-box-popover-content",
|
|
34
37
|
position: "tl",
|
|
35
38
|
trigger: "click"
|
|
@@ -103,7 +106,7 @@ const _sfc_main = defineComponent({
|
|
|
103
106
|
}, 8, ["count"])
|
|
104
107
|
]),
|
|
105
108
|
_: 1
|
|
106
|
-
})
|
|
109
|
+
}, 8, ["content-style"])
|
|
107
110
|
]);
|
|
108
111
|
};
|
|
109
112
|
}
|
|
@@ -204,6 +204,9 @@ const _sfc_main = vue.defineComponent({
|
|
|
204
204
|
modelValue: form.value[item.key].range,
|
|
205
205
|
"onUpdate:modelValue": ($event) => form.value[item.key].range = $event,
|
|
206
206
|
style: vue.normalizeStyle({ width: styleWidth(form.value[item.key]) }),
|
|
207
|
+
"time-picker-props": {
|
|
208
|
+
defaultValue: ["00:00:00", "23:59:59"]
|
|
209
|
+
},
|
|
207
210
|
"value-format": "timestamp",
|
|
208
211
|
"popup-container": "#base-filter-popup-container",
|
|
209
212
|
onClick: _cache[1] || (_cache[1] = vue.withModifiers(() => {
|
|
@@ -66,6 +66,8 @@ const _sfc_main = vue.defineComponent({
|
|
|
66
66
|
return _payload.relation_url;
|
|
67
67
|
if (props.item.series === "app")
|
|
68
68
|
return _payload.label;
|
|
69
|
+
if (props.item.series === "political")
|
|
70
|
+
return _payload.label;
|
|
69
71
|
return "";
|
|
70
72
|
});
|
|
71
73
|
const mouseEnterFun = (event, row) => {
|
|
@@ -147,6 +147,9 @@ const _sfc_main = vue.defineComponent({
|
|
|
147
147
|
params.columns = props.type;
|
|
148
148
|
}
|
|
149
149
|
if (filter.value) {
|
|
150
|
+
if (!filter.value.columns) {
|
|
151
|
+
filter.value.columns = props.type;
|
|
152
|
+
}
|
|
150
153
|
params = { ...params, ...filter.value };
|
|
151
154
|
}
|
|
152
155
|
if (gid !== "all") {
|
|
@@ -30,7 +30,10 @@ const _sfc_main = vue.defineComponent({
|
|
|
30
30
|
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1, [
|
|
31
31
|
vue.createVNode(vue.unref(webVue.Popover), {
|
|
32
32
|
"arrow-style": { display: "none" },
|
|
33
|
-
"content-style": {
|
|
33
|
+
"content-style": {
|
|
34
|
+
width: "420px",
|
|
35
|
+
display: props.selectData.length ? "block" : "none"
|
|
36
|
+
},
|
|
34
37
|
"content-class": "selected-store-box-popover-content",
|
|
35
38
|
position: "tl",
|
|
36
39
|
trigger: "click"
|
|
@@ -104,7 +107,7 @@ const _sfc_main = vue.defineComponent({
|
|
|
104
107
|
}, 8, ["count"])
|
|
105
108
|
]),
|
|
106
109
|
_: 1
|
|
107
|
-
})
|
|
110
|
+
}, 8, ["content-style"])
|
|
108
111
|
]);
|
|
109
112
|
};
|
|
110
113
|
}
|