liyu-pc-base 1.0.694 → 1.0.696
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.
|
@@ -591,6 +591,7 @@ function B(e, t, n, r, i, a) {
|
|
|
591
591
|
"show-time": e.field.showTime,
|
|
592
592
|
"value-format": e.field.valueFormat,
|
|
593
593
|
picker: e.field.picker ? e.field.picker : "date",
|
|
594
|
+
"disabled-date": e.field.disabledDate,
|
|
594
595
|
size: "small",
|
|
595
596
|
style: { width: "100%" }
|
|
596
597
|
}, null, 8, [
|
|
@@ -603,7 +604,8 @@ function B(e, t, n, r, i, a) {
|
|
|
603
604
|
"placeholder",
|
|
604
605
|
"show-time",
|
|
605
606
|
"value-format",
|
|
606
|
-
"picker"
|
|
607
|
+
"picker",
|
|
608
|
+
"disabled-date"
|
|
607
609
|
])) : _("", !0),
|
|
608
610
|
e.field.type === "rangepicker" ? (T(), g(W, {
|
|
609
611
|
key: 22,
|
|
@@ -617,6 +619,7 @@ function B(e, t, n, r, i, a) {
|
|
|
617
619
|
"show-time": e.field.showTime,
|
|
618
620
|
"value-format": e.field.valueFormat,
|
|
619
621
|
picker: e.field.picker ? e.field.picker : "date",
|
|
622
|
+
"disabled-date": e.field.disabledDate,
|
|
620
623
|
size: "small",
|
|
621
624
|
style: { width: "100%" }
|
|
622
625
|
}, null, 8, [
|
|
@@ -628,7 +631,8 @@ function B(e, t, n, r, i, a) {
|
|
|
628
631
|
"placeholder",
|
|
629
632
|
"show-time",
|
|
630
633
|
"value-format",
|
|
631
|
-
"picker"
|
|
634
|
+
"picker",
|
|
635
|
+
"disabled-date"
|
|
632
636
|
])) : _("", !0),
|
|
633
637
|
e.field.type === "timepicker" ? (T(), g(G, {
|
|
634
638
|
key: 23,
|
|
@@ -951,6 +955,6 @@ function B(e, t, n, r, i, a) {
|
|
|
951
955
|
_: 1
|
|
952
956
|
}, 8, ["orientation"])) : _("", !0)], 64);
|
|
953
957
|
}
|
|
954
|
-
var V = /*#__PURE__*/ n(j, [["render", B], ["__scopeId", "data-v-
|
|
958
|
+
var V = /*#__PURE__*/ n(j, [["render", B], ["__scopeId", "data-v-7666b6e4"]]);
|
|
955
959
|
//#endregion
|
|
956
960
|
export { M as n, V as t };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FieldRender-ABR1rg_f.js","names":[],"sources":["../src/components/FormRender/FieldRender.vue","../src/components/FormRender/FieldRender.vue"],"sourcesContent":["<template>\n <a-form-item\n v-if=\"field.type !== 'divider' && (field?.is_search_show !== false || field_render_show)\"\n :extra=\"field.extra\"\n :label=\"\n is_show_label ? (field.label_i18n == undefined ? field.label : t(field.label_i18n)) : null\n \"\n :name=\"field.name\"\n v-bind=\"validateInfos ? validateInfos[field.name] : null\"\n >\n <div\n v-if=\"field.type === 'kong'\"\n style=\"height: 62px; width: 100%\"\n ></div>\n <!-- 展示内容-->\n <div v-if=\"field.type === 'tag'\">\n <a-tag\n :color=\"field.color ? field.color(field, model) : 'green'\"\n :style=\"field.style\"\n v-if=\"(field.content && field.content(field, model)) || model\"\n @click=\"field.cb ? field.cb(field, model) : ''\"\n >\n <span v-if=\"field.content\">\n {{ field.content(field, model) }}\n </span>\n <span v-else>{{ model }}</span>\n </a-tag>\n </div>\n <!-- 表单占位组件-->\n <!-- 默认 【表单空位 高62px; 名称空位 高30px;】 如遇个别特殊表单,根据实际情况自行调节 高度-->\n <!-- height 属性必填-->\n <div\n v-if=\"field.type === 'kong_title'\"\n :style=\"'height: ' + field.height + 'px'\"\n ></div>\n <div\n v-if=\"field.type === 'title'\"\n style=\"height: 30px; position: relative\"\n >\n <span\n style=\"\n position: absolute;\n bottom: 0;\n padding: 0;\n margin: 0;\n font-weight: bolder;\n font-size: 17px;\n \"\n >\n {{ field.name }}\n </span>\n </div>\n <a-rate\n v-if=\"field.type === 'rate'\"\n v-model:value=\"model\"\n :disabled=\"field.disabled\"\n allow-half\n />\n <a-input\n v-if=\"field.type === 'input'\"\n v-model:value=\"model\"\n :addon-after=\"field.addonAfter\"\n :addon-before=\"field.addonBefore\"\n :allow-clear=\"field.allowClear == undefined ? true : field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :maxlength=\"field.maxlength\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n :type=\"field.type ? field.type : 'input'\"\n size=\"small\"\n />\n <a-input\n v-if=\"field.type === 'volume'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :maxlength=\"field.maxlength\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n addon-after=\"L\"\n size=\"small\"\n type=\"number\"\n />\n <a-input\n v-if=\"field.type === 'weight'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :maxlength=\"field.maxlength\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n addon-after=\"Kg\"\n size=\"small\"\n type=\"number\"\n />\n <attribute-table\n v-if=\"field.type === 'attributetable'\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :init_model=\"field.init_model\"\n size=\"small\"\n />\n <attribute-nom-table\n v-if=\"field.type === 'attributenomtable'\"\n size=\"small\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :init_model=\"field.init_model\"\n />\n\n <a-textarea\n v-if=\"field.type === 'textarea'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autoSize=\"{\n minRows: field.minRows ? field.minRows : 5,\n maxRows: field.maxRows ? field.maxRows : null,\n }\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :disabled=\"field.disabled\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n />\n <json-str\n v-if=\"field.type === 'jsonstr'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :disabled=\"field.disabled\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n />\n <json-obj\n v-if=\"field.type === 'jsonobj'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :disabled=\"field.disabled\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n />\n <a-input-number\n v-if=\"field.type === 'number'\"\n v-model:value=\"model\"\n :addon-after=\"field.addonAfter\"\n :addon-before=\"field.addonBefore\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :formatter=\"field.formatter\"\n :max=\"field.max\"\n :min=\"field.min\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n :precision=\"field.precision\"\n :step=\"field.step\"\n size=\"small\"\n style=\"width: 100%\"\n />\n <a-input-password\n v-if=\"field.type === 'password'\"\n v-model:value=\"model\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :formatter=\"field.formatter\"\n :max=\"field.max\"\n :min=\"field.min\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n :precision=\"field.precision\"\n :step=\"field.step\"\n size=\"small\"\n style=\"width: 100%\"\n />\n <template v-if=\"field.type === 'select'\">\n <a-select\n v-if=\"field.mode === 'default'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :maxTagCount=\"field.maxTagCount ? field.maxTagCount : 'responsive'\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-search=\"!!field.show_search\"\n size=\"small\"\n style=\"min-width: 150px\"\n >\n <a-select-option\n v-for=\"option in options\"\n :key=\"option[field.valueKey ? field.valueKey : 'value']\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n {{ option[field.labelKey ? field.labelKey : 'label'] }}\n </a-select-option>\n </a-select>\n <a-select\n v-else\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :maxTagCount=\"field.maxTagCount ? field.maxTagCount : 'responsive'\"\n :mode=\"field.mode\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-search=\"!!field.show_search\"\n size=\"small\"\n style=\"min-width: 150px\"\n >\n <a-select-option\n v-for=\"(option, index) in options\"\n :key=\"index\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n {{ option[field.labelKey ? field.labelKey : 'label'] }}\n </a-select-option>\n </a-select>\n </template>\n <template v-if=\"field.type === 'groupselect'\">\n <a-select\n v-if=\"field.mode === 'default'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :getPopupContainer=\"field.getPopupContainer == undefined ? null : field.getPopupContainer\"\n :labelInValue=\"field.labelInValue === true\"\n :maxTagCount=\"field.maxTagCount ? field.maxTagCount : 'responsive'\"\n :options=\"options\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-search=\"!!field.show_search\"\n size=\"small\"\n style=\"min-width: 150px\"\n ></a-select>\n <a-select\n v-else\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :getPopupContainer=\"field.getPopupContainer == undefined ? null : field.getPopupContainer\"\n :labelInValue=\"field.labelInValue === true\"\n :maxTagCount=\"field.maxTagCount ? field.maxTagCount : 'responsive'\"\n :mode=\"field.mode\"\n :options=\"options\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-search=\"!!field.show_search\"\n size=\"small\"\n style=\"min-width: 150px\"\n ></a-select>\n </template>\n\n <remote-select-pro\n v-if=\"field.type === 'remoteselectpro'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :outModel=\"outModel\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :init_watch=\"field.init_watch\"\n :label-key=\"field.labelKey\"\n :label-key-type=\"field.labelKeyType\"\n :label-key-list=\"field.labelKeyList\"\n :label-space=\"field.labelSpace\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n :is_input=\"field.is_input\"\n :placeholder=\"\n field.placeholder_i18n == undefined\n ? field.placeholder\n ? field.placeholder\n : t('请选择') + field.label\n : t(field.placeholder_i18n)\n \"\n />\n <a-cascader\n v-if=\"field.type === 'cascader'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :changeOnSelect=\"field.changeOnSelect\"\n :options=\"field.getOptionsData ? field.getOptionsData(options, model) : options\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n size=\"small\"\n />\n <remote-cascader\n v-if=\"field.type === 'remotecascader'\"\n v-model:value=\"model\"\n v-model:label=\"labelModel\"\n :field=\"field\"\n :formModel=\"formModel\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :label-key=\"field.labelKey\"\n :label-key-list=\"field.labelKeyList\"\n :label-space=\"field.labelSpace\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n />\n\n <a-month-picker\n v-if=\"field.type === 'monthpicker'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :format=\"field.format\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-time=\"field.showTime\"\n :value-format=\"field.valueFormat\"\n size=\"small\"\n style=\"width: 100%\"\n />\n <a-date-picker\n v-if=\"field.type === 'datepicker'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :format=\"field.format\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-time=\"field.showTime\"\n :value-format=\"field.valueFormat\"\n :picker=\"field.picker ? field.picker : 'date'\"\n :disabled-date=\"field.disabledDate\"\n size=\"small\"\n style=\"width: 100%\"\n />\n\n <a-range-picker\n v-if=\"field.type === 'rangepicker'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :format=\"field.format\"\n :placeholder=\"field.placeholder ? field.placeholder : [$t('开始时间'), $t('结束时间')]\"\n :show-time=\"field.showTime\"\n :value-format=\"field.valueFormat\"\n :picker=\"field.picker ? field.picker : 'date'\"\n :disabled-date=\"field.disabledDate\"\n size=\"small\"\n style=\"width: 100%\"\n />\n\n <a-time-picker\n v-if=\"field.type === 'timepicker'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :format=\"field.format ? field.format : 'HH:mm'\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :value-format=\"field.valueFormat ? field.valueFormat : 'HH:mm'\"\n size=\"small\"\n style=\"width: 100%\"\n />\n <a-radio-group\n v-if=\"field.type === 'radio'\"\n v-model:value=\"model\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n size=\"small\"\n >\n <a-radio\n v-for=\"option in options\"\n :key=\"option[field.valueKey ? field.valueKey : 'value']\"\n :disabled=\"option.disabled\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n {{ option[field.labelKey ? field.labelKey : 'label'] }}\n </a-radio>\n </a-radio-group>\n\n <a-checkbox-group\n v-if=\"field.type === 'checkbox'\"\n v-model:value=\"model\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n size=\"small\"\n >\n <a-checkbox\n v-for=\"option in options\"\n :key=\"option[field.valueKey ? field.valueKey : 'value']\"\n :disabled=\"option.disabled\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n {{ option[field.labelKey ? field.labelKey : 'label'] }}\n </a-checkbox>\n </a-checkbox-group>\n\n <a-tree-select\n v-if=\"field.type === 'treeselect'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :tree-checkable=\"field.multiple\"\n :tree-data=\"options\"\n :tree-label-prop=\"field.labelKey\"\n :tree-node-filter-prop=\"field.valueKey\"\n size=\"small\"\n />\n <remote-filter-select\n v-if=\"field.type === 'remotefilterselect'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :label-key=\"field.labelKey\"\n :label-key-list=\"field.labelKeyList\"\n :label-space=\"field.labelSpace\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n />\n <remote-select\n v-if=\"field.type === 'remoteselect'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :label-key=\"field.labelKey\"\n :label-key-list=\"field.labelKeyList\"\n :label-space=\"field.labelSpace\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n />\n <remote-tree-select\n v-if=\"field.type === 'remotetreeselect'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :field=\"field\"\n :formModel=\"formModel\"\n :get-data=\"field.getData\"\n :label-key=\"field.labelKey\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n />\n <remote-modal\n v-if=\"field.type === 'remotemodal'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :columns=\"field.columns\"\n :field=\"field\"\n :field_status=\"field.field_status\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :modalType=\"field.modalType\"\n :search_config=\"field.search_config\"\n :watch=\"field.watch\"\n />\n <remote-table\n v-if=\"field.type === 'remotetable'\"\n v-model:value=\"model\"\n :columns=\"field.columns\"\n :formModel=\"formModel\"\n :field=\"field\"\n :field_status=\"field.field_status\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :modalType=\"field.modalType\"\n :search_config=\"field.search_config\"\n :watch=\"field.watch\"\n />\n <remote-table-2\n v-if=\"field.type === 'remotetable2'\"\n v-model:value=\"model\"\n :columns=\"field.columns\"\n :formModel=\"formModel\"\n :field=\"field\"\n :field_status=\"field.field_status\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :modalType=\"field.modalType\"\n :search_config=\"field.search_config\"\n :watch=\"field.watch\"\n />\n <remote-text\n v-if=\"field.type === 'remotetext'\"\n v-model:value=\"model\"\n :columns=\"field.columns\"\n :formModel=\"formModel\"\n :field=\"field\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :modalType=\"field.modalType\"\n :search_config=\"field.search_config\"\n :watch=\"field.watch\"\n />\n <a-radio-group\n v-if=\"field.type === 'radio-color'\"\n v-model:value=\"model\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n size=\"small\"\n >\n <a-radio\n v-for=\"option in options\"\n :key=\"option[field.valueKey ? field.valueKey : 'value']\"\n :disabled=\"option.disabled\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n <div\n :style=\"{\n width: '20px',\n height: '20px',\n backgroundColor: option[field.valueKey ? field.valueKey : 'value'],\n }\"\n ></div>\n </a-radio>\n </a-radio-group>\n <div v-if=\"field.type === 'button'\">\n <a-button :type=\"field.btn_type\" :size=\"field.size\" @click=\"field.cb(formModel)\">{{ field.btn_text }}</a-button>\n </div>\n </a-form-item>\n\n <a-divider\n v-if=\"field.type === 'divider'\"\n :orientation=\"field.orientation\"\n >\n {{ field.label }}\n </a-divider>\n</template>\n<script lang=\"ts\">\nimport RemoteSelect from 'liyu-pc-base/components/FormRender/RemoteSelect/RemoteSelect.vue';\nimport RemoteCascader from 'liyu-pc-base/components/FormRender/RemoteCascader/RemoteCascader.vue';\nimport RemoteModal from 'liyu-pc-base/components/FormRender/RemoteModal/RemoteModal.vue';\nimport RemoteTreeSelect from 'liyu-pc-base/components/FormRender/RemoteTreeSelect/RemoteTreeSelect.vue';\nimport RemoteTable from 'liyu-pc-base/components/FormRender/RemoteTable/RemoteTable.vue';\nimport { defineComponent } from 'vue';\nimport RemoteFilterSelect from 'liyu-pc-base/components/FormRender/RemoteFilterSelect/RemoteFilterSelect.vue';\nimport AttributeNomTable from 'liyu-pc-base/components/FormRender/AttributeNomTable/index.vue';\nimport AttributeTable from 'liyu-pc-base/components/FormRender/AttributeTable/index.vue';\nimport JsonStr from 'liyu-pc-base/components/FormRender/JsonStr/index.vue';\nimport JsonObj from 'liyu-pc-base/components/FormRender/JsonObj/index.vue';\nimport RemoteText from 'liyu-pc-base/components/FormRender/RemoteText/RemoteText.vue';\nimport RemoteTable2 from 'liyu-pc-base/components/FormRender/RemoteTable2/RemoteTable2.vue';\nimport RemoteSelectPro from 'liyu-pc-base/components/FormRender/RemoteSelectPro/RemoteSelectPro.vue';\nimport { useI18n } from 'vue-i18n';\n\nexport default defineComponent({\n name: 'FieldRender',\n props: {\n field: {\n type: Object,\n required: true,\n },\n value: {\n required: true,\n },\n label: {\n required: false,\n },\n options: {\n type: Array,\n default: () => [],\n },\n validateInfos: {\n type: Object,\n default: () => {},\n },\n formModel: {\n type: Object,\n default: () => {},\n },\n outModel: {\n type: Object,\n default: () => {},\n },\n field_render_show: {\n type: Boolean,\n default: true,\n },\n is_show_label: {\n type: Boolean,\n default: true,\n },\n },\n setup() {\n const { t } = useI18n();\n return {\n t,\n };\n },\n data() {\n const rangeDate = (v: any) => {\n if (typeof v == 'string' && v.indexOf(',') >= 0) {\n return v.split(',');\n }\n return v;\n };\n return {\n rangeDate,\n model: this.field.type == 'rangepicker' ? rangeDate(this.value) : this.value,\n labelModel: this.label,\n };\n },\n watch: {\n model: {\n handler(newValue) {\n this.$emit('update:value', newValue);\n },\n },\n value: {\n handler(newValue) {\n if (this.field.type === 'input' && newValue) {\n this.model = newValue.toString().replace(/(^\\s*)|(\\s*$)/g, '');\n } else {\n this.model = newValue;\n }\n },\n },\n labelModel: {\n handler(newValue) {\n this.$emit('update:label', newValue);\n },\n },\n label: {\n handler(newValue) {\n this.labelModel = newValue;\n },\n },\n },\n created() {},\n components: {\n RemoteSelectPro,\n AttributeTable,\n AttributeNomTable,\n RemoteFilterSelect,\n RemoteModal,\n RemoteSelect,\n RemoteCascader,\n RemoteTreeSelect,\n RemoteTable,\n JsonStr,\n JsonObj,\n RemoteText,\n RemoteTable2,\n },\n});\n</script>\n\n<style scoped>\n.ant-calendar-picker {\n width: 100% !important;\n}\n</style>\n","<template>\n <a-form-item\n v-if=\"field.type !== 'divider' && (field?.is_search_show !== false || field_render_show)\"\n :extra=\"field.extra\"\n :label=\"\n is_show_label ? (field.label_i18n == undefined ? field.label : t(field.label_i18n)) : null\n \"\n :name=\"field.name\"\n v-bind=\"validateInfos ? validateInfos[field.name] : null\"\n >\n <div\n v-if=\"field.type === 'kong'\"\n style=\"height: 62px; width: 100%\"\n ></div>\n <!-- 展示内容-->\n <div v-if=\"field.type === 'tag'\">\n <a-tag\n :color=\"field.color ? field.color(field, model) : 'green'\"\n :style=\"field.style\"\n v-if=\"(field.content && field.content(field, model)) || model\"\n @click=\"field.cb ? field.cb(field, model) : ''\"\n >\n <span v-if=\"field.content\">\n {{ field.content(field, model) }}\n </span>\n <span v-else>{{ model }}</span>\n </a-tag>\n </div>\n <!-- 表单占位组件-->\n <!-- 默认 【表单空位 高62px; 名称空位 高30px;】 如遇个别特殊表单,根据实际情况自行调节 高度-->\n <!-- height 属性必填-->\n <div\n v-if=\"field.type === 'kong_title'\"\n :style=\"'height: ' + field.height + 'px'\"\n ></div>\n <div\n v-if=\"field.type === 'title'\"\n style=\"height: 30px; position: relative\"\n >\n <span\n style=\"\n position: absolute;\n bottom: 0;\n padding: 0;\n margin: 0;\n font-weight: bolder;\n font-size: 17px;\n \"\n >\n {{ field.name }}\n </span>\n </div>\n <a-rate\n v-if=\"field.type === 'rate'\"\n v-model:value=\"model\"\n :disabled=\"field.disabled\"\n allow-half\n />\n <a-input\n v-if=\"field.type === 'input'\"\n v-model:value=\"model\"\n :addon-after=\"field.addonAfter\"\n :addon-before=\"field.addonBefore\"\n :allow-clear=\"field.allowClear == undefined ? true : field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :maxlength=\"field.maxlength\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n :type=\"field.type ? field.type : 'input'\"\n size=\"small\"\n />\n <a-input\n v-if=\"field.type === 'volume'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :maxlength=\"field.maxlength\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n addon-after=\"L\"\n size=\"small\"\n type=\"number\"\n />\n <a-input\n v-if=\"field.type === 'weight'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :maxlength=\"field.maxlength\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n addon-after=\"Kg\"\n size=\"small\"\n type=\"number\"\n />\n <attribute-table\n v-if=\"field.type === 'attributetable'\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :init_model=\"field.init_model\"\n size=\"small\"\n />\n <attribute-nom-table\n v-if=\"field.type === 'attributenomtable'\"\n size=\"small\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :init_model=\"field.init_model\"\n />\n\n <a-textarea\n v-if=\"field.type === 'textarea'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autoSize=\"{\n minRows: field.minRows ? field.minRows : 5,\n maxRows: field.maxRows ? field.maxRows : null,\n }\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :disabled=\"field.disabled\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n />\n <json-str\n v-if=\"field.type === 'jsonstr'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :disabled=\"field.disabled\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n />\n <json-obj\n v-if=\"field.type === 'jsonobj'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :disabled=\"field.disabled\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n />\n <a-input-number\n v-if=\"field.type === 'number'\"\n v-model:value=\"model\"\n :addon-after=\"field.addonAfter\"\n :addon-before=\"field.addonBefore\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :formatter=\"field.formatter\"\n :max=\"field.max\"\n :min=\"field.min\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n :precision=\"field.precision\"\n :step=\"field.step\"\n size=\"small\"\n style=\"width: 100%\"\n />\n <a-input-password\n v-if=\"field.type === 'password'\"\n v-model:value=\"model\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :formatter=\"field.formatter\"\n :max=\"field.max\"\n :min=\"field.min\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n :precision=\"field.precision\"\n :step=\"field.step\"\n size=\"small\"\n style=\"width: 100%\"\n />\n <template v-if=\"field.type === 'select'\">\n <a-select\n v-if=\"field.mode === 'default'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :maxTagCount=\"field.maxTagCount ? field.maxTagCount : 'responsive'\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-search=\"!!field.show_search\"\n size=\"small\"\n style=\"min-width: 150px\"\n >\n <a-select-option\n v-for=\"option in options\"\n :key=\"option[field.valueKey ? field.valueKey : 'value']\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n {{ option[field.labelKey ? field.labelKey : 'label'] }}\n </a-select-option>\n </a-select>\n <a-select\n v-else\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :maxTagCount=\"field.maxTagCount ? field.maxTagCount : 'responsive'\"\n :mode=\"field.mode\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-search=\"!!field.show_search\"\n size=\"small\"\n style=\"min-width: 150px\"\n >\n <a-select-option\n v-for=\"(option, index) in options\"\n :key=\"index\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n {{ option[field.labelKey ? field.labelKey : 'label'] }}\n </a-select-option>\n </a-select>\n </template>\n <template v-if=\"field.type === 'groupselect'\">\n <a-select\n v-if=\"field.mode === 'default'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :getPopupContainer=\"field.getPopupContainer == undefined ? null : field.getPopupContainer\"\n :labelInValue=\"field.labelInValue === true\"\n :maxTagCount=\"field.maxTagCount ? field.maxTagCount : 'responsive'\"\n :options=\"options\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-search=\"!!field.show_search\"\n size=\"small\"\n style=\"min-width: 150px\"\n ></a-select>\n <a-select\n v-else\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :getPopupContainer=\"field.getPopupContainer == undefined ? null : field.getPopupContainer\"\n :labelInValue=\"field.labelInValue === true\"\n :maxTagCount=\"field.maxTagCount ? field.maxTagCount : 'responsive'\"\n :mode=\"field.mode\"\n :options=\"options\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-search=\"!!field.show_search\"\n size=\"small\"\n style=\"min-width: 150px\"\n ></a-select>\n </template>\n\n <remote-select-pro\n v-if=\"field.type === 'remoteselectpro'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :outModel=\"outModel\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :init_watch=\"field.init_watch\"\n :label-key=\"field.labelKey\"\n :label-key-type=\"field.labelKeyType\"\n :label-key-list=\"field.labelKeyList\"\n :label-space=\"field.labelSpace\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n :is_input=\"field.is_input\"\n :placeholder=\"\n field.placeholder_i18n == undefined\n ? field.placeholder\n ? field.placeholder\n : t('请选择') + field.label\n : t(field.placeholder_i18n)\n \"\n />\n <a-cascader\n v-if=\"field.type === 'cascader'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :changeOnSelect=\"field.changeOnSelect\"\n :options=\"field.getOptionsData ? field.getOptionsData(options, model) : options\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n size=\"small\"\n />\n <remote-cascader\n v-if=\"field.type === 'remotecascader'\"\n v-model:value=\"model\"\n v-model:label=\"labelModel\"\n :field=\"field\"\n :formModel=\"formModel\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :label-key=\"field.labelKey\"\n :label-key-list=\"field.labelKeyList\"\n :label-space=\"field.labelSpace\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n />\n\n <a-month-picker\n v-if=\"field.type === 'monthpicker'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :format=\"field.format\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-time=\"field.showTime\"\n :value-format=\"field.valueFormat\"\n size=\"small\"\n style=\"width: 100%\"\n />\n <a-date-picker\n v-if=\"field.type === 'datepicker'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :format=\"field.format\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-time=\"field.showTime\"\n :value-format=\"field.valueFormat\"\n :picker=\"field.picker ? field.picker : 'date'\"\n :disabled-date=\"field.disabledDate\"\n size=\"small\"\n style=\"width: 100%\"\n />\n\n <a-range-picker\n v-if=\"field.type === 'rangepicker'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :format=\"field.format\"\n :placeholder=\"field.placeholder ? field.placeholder : [$t('开始时间'), $t('结束时间')]\"\n :show-time=\"field.showTime\"\n :value-format=\"field.valueFormat\"\n :picker=\"field.picker ? field.picker : 'date'\"\n :disabled-date=\"field.disabledDate\"\n size=\"small\"\n style=\"width: 100%\"\n />\n\n <a-time-picker\n v-if=\"field.type === 'timepicker'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :format=\"field.format ? field.format : 'HH:mm'\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :value-format=\"field.valueFormat ? field.valueFormat : 'HH:mm'\"\n size=\"small\"\n style=\"width: 100%\"\n />\n <a-radio-group\n v-if=\"field.type === 'radio'\"\n v-model:value=\"model\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n size=\"small\"\n >\n <a-radio\n v-for=\"option in options\"\n :key=\"option[field.valueKey ? field.valueKey : 'value']\"\n :disabled=\"option.disabled\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n {{ option[field.labelKey ? field.labelKey : 'label'] }}\n </a-radio>\n </a-radio-group>\n\n <a-checkbox-group\n v-if=\"field.type === 'checkbox'\"\n v-model:value=\"model\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n size=\"small\"\n >\n <a-checkbox\n v-for=\"option in options\"\n :key=\"option[field.valueKey ? field.valueKey : 'value']\"\n :disabled=\"option.disabled\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n {{ option[field.labelKey ? field.labelKey : 'label'] }}\n </a-checkbox>\n </a-checkbox-group>\n\n <a-tree-select\n v-if=\"field.type === 'treeselect'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :tree-checkable=\"field.multiple\"\n :tree-data=\"options\"\n :tree-label-prop=\"field.labelKey\"\n :tree-node-filter-prop=\"field.valueKey\"\n size=\"small\"\n />\n <remote-filter-select\n v-if=\"field.type === 'remotefilterselect'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :label-key=\"field.labelKey\"\n :label-key-list=\"field.labelKeyList\"\n :label-space=\"field.labelSpace\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n />\n <remote-select\n v-if=\"field.type === 'remoteselect'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :label-key=\"field.labelKey\"\n :label-key-list=\"field.labelKeyList\"\n :label-space=\"field.labelSpace\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n />\n <remote-tree-select\n v-if=\"field.type === 'remotetreeselect'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :field=\"field\"\n :formModel=\"formModel\"\n :get-data=\"field.getData\"\n :label-key=\"field.labelKey\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n />\n <remote-modal\n v-if=\"field.type === 'remotemodal'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :columns=\"field.columns\"\n :field=\"field\"\n :field_status=\"field.field_status\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :modalType=\"field.modalType\"\n :search_config=\"field.search_config\"\n :watch=\"field.watch\"\n />\n <remote-table\n v-if=\"field.type === 'remotetable'\"\n v-model:value=\"model\"\n :columns=\"field.columns\"\n :formModel=\"formModel\"\n :field=\"field\"\n :field_status=\"field.field_status\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :modalType=\"field.modalType\"\n :search_config=\"field.search_config\"\n :watch=\"field.watch\"\n />\n <remote-table-2\n v-if=\"field.type === 'remotetable2'\"\n v-model:value=\"model\"\n :columns=\"field.columns\"\n :formModel=\"formModel\"\n :field=\"field\"\n :field_status=\"field.field_status\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :modalType=\"field.modalType\"\n :search_config=\"field.search_config\"\n :watch=\"field.watch\"\n />\n <remote-text\n v-if=\"field.type === 'remotetext'\"\n v-model:value=\"model\"\n :columns=\"field.columns\"\n :formModel=\"formModel\"\n :field=\"field\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :modalType=\"field.modalType\"\n :search_config=\"field.search_config\"\n :watch=\"field.watch\"\n />\n <a-radio-group\n v-if=\"field.type === 'radio-color'\"\n v-model:value=\"model\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n size=\"small\"\n >\n <a-radio\n v-for=\"option in options\"\n :key=\"option[field.valueKey ? field.valueKey : 'value']\"\n :disabled=\"option.disabled\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n <div\n :style=\"{\n width: '20px',\n height: '20px',\n backgroundColor: option[field.valueKey ? field.valueKey : 'value'],\n }\"\n ></div>\n </a-radio>\n </a-radio-group>\n <div v-if=\"field.type === 'button'\">\n <a-button :type=\"field.btn_type\" :size=\"field.size\" @click=\"field.cb(formModel)\">{{ field.btn_text }}</a-button>\n </div>\n </a-form-item>\n\n <a-divider\n v-if=\"field.type === 'divider'\"\n :orientation=\"field.orientation\"\n >\n {{ field.label }}\n </a-divider>\n</template>\n<script lang=\"ts\">\nimport RemoteSelect from 'liyu-pc-base/components/FormRender/RemoteSelect/RemoteSelect.vue';\nimport RemoteCascader from 'liyu-pc-base/components/FormRender/RemoteCascader/RemoteCascader.vue';\nimport RemoteModal from 'liyu-pc-base/components/FormRender/RemoteModal/RemoteModal.vue';\nimport RemoteTreeSelect from 'liyu-pc-base/components/FormRender/RemoteTreeSelect/RemoteTreeSelect.vue';\nimport RemoteTable from 'liyu-pc-base/components/FormRender/RemoteTable/RemoteTable.vue';\nimport { defineComponent } from 'vue';\nimport RemoteFilterSelect from 'liyu-pc-base/components/FormRender/RemoteFilterSelect/RemoteFilterSelect.vue';\nimport AttributeNomTable from 'liyu-pc-base/components/FormRender/AttributeNomTable/index.vue';\nimport AttributeTable from 'liyu-pc-base/components/FormRender/AttributeTable/index.vue';\nimport JsonStr from 'liyu-pc-base/components/FormRender/JsonStr/index.vue';\nimport JsonObj from 'liyu-pc-base/components/FormRender/JsonObj/index.vue';\nimport RemoteText from 'liyu-pc-base/components/FormRender/RemoteText/RemoteText.vue';\nimport RemoteTable2 from 'liyu-pc-base/components/FormRender/RemoteTable2/RemoteTable2.vue';\nimport RemoteSelectPro from 'liyu-pc-base/components/FormRender/RemoteSelectPro/RemoteSelectPro.vue';\nimport { useI18n } from 'vue-i18n';\n\nexport default defineComponent({\n name: 'FieldRender',\n props: {\n field: {\n type: Object,\n required: true,\n },\n value: {\n required: true,\n },\n label: {\n required: false,\n },\n options: {\n type: Array,\n default: () => [],\n },\n validateInfos: {\n type: Object,\n default: () => {},\n },\n formModel: {\n type: Object,\n default: () => {},\n },\n outModel: {\n type: Object,\n default: () => {},\n },\n field_render_show: {\n type: Boolean,\n default: true,\n },\n is_show_label: {\n type: Boolean,\n default: true,\n },\n },\n setup() {\n const { t } = useI18n();\n return {\n t,\n };\n },\n data() {\n const rangeDate = (v: any) => {\n if (typeof v == 'string' && v.indexOf(',') >= 0) {\n return v.split(',');\n }\n return v;\n };\n return {\n rangeDate,\n model: this.field.type == 'rangepicker' ? rangeDate(this.value) : this.value,\n labelModel: this.label,\n };\n },\n watch: {\n model: {\n handler(newValue) {\n this.$emit('update:value', newValue);\n },\n },\n value: {\n handler(newValue) {\n if (this.field.type === 'input' && newValue) {\n this.model = newValue.toString().replace(/(^\\s*)|(\\s*$)/g, '');\n } else {\n this.model = newValue;\n }\n },\n },\n labelModel: {\n handler(newValue) {\n this.$emit('update:label', newValue);\n },\n },\n label: {\n handler(newValue) {\n this.labelModel = newValue;\n },\n },\n },\n created() {},\n components: {\n RemoteSelectPro,\n AttributeTable,\n AttributeNomTable,\n RemoteFilterSelect,\n RemoteModal,\n RemoteSelect,\n RemoteCascader,\n RemoteTreeSelect,\n RemoteTable,\n JsonStr,\n JsonObj,\n RemoteText,\n RemoteTable2,\n },\n});\n</script>\n\n<style scoped>\n.ant-calendar-picker {\n width: 100% !important;\n}\n</style>\n"],"mappings":"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"}
|
package/dist/components/index.js
CHANGED
|
@@ -11,7 +11,7 @@ import { t as w } from "../RemoteSelectPro-CHgvSg4V.js";
|
|
|
11
11
|
import { t as T } from "../JsonStr-Bx2WI6jK.js";
|
|
12
12
|
import { t as E } from "../JsonObj-DIlhMCbj.js";
|
|
13
13
|
import { t as D } from "../modal-tools-CrXdI5sg.js";
|
|
14
|
-
import { t as O } from "../FieldRender-
|
|
14
|
+
import { t as O } from "../FieldRender-ABR1rg_f.js";
|
|
15
15
|
import { c as k, d as ee, f as A, i as j } from "../TinymceEditor-VlIMhy_4.js";
|
|
16
16
|
import { t as te } from "../FieldRender2-zrZDX9_D.js";
|
|
17
17
|
import { t as ne } from "../SearchRender-CJAyx6XH.js";
|
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import { I as e, P as t, R as n, _ as r, a as i, c as a, d as o, f as s, h as c,
|
|
|
3
3
|
import { defineAsyncComponent as b } from "vue";
|
|
4
4
|
//#region src/index.ts
|
|
5
5
|
var x = { install(x, S) {
|
|
6
|
-
S?.env && x.use(i(S.env)), S?.globMap && x.use(d(S.globMap)), S?.bus && x.use(g(S.bus)), S?.useAppStore && x.use(v(S.useAppStore)), S?.useUserStore && x.use(e(S.useUserStore)), S?.request && x.use(c(S.request)), S?.useRequiredConditionStore && x.use(t(S.useRequiredConditionStore)), S?.required_condition_event_obj && x.use(r(S.required_condition_event_obj)), S?.event_obj && x.use(h(S.event_obj)), S?.ls && x.use(o(S.ls)), S?.sourceStore && x.use(y(S.sourceStore)), S?.usePageConfigStore && x.use(u(S.usePageConfigStore)), S?.remoteSelectStore && x.use(f(S.remoteSelectStore)), S?.cellComponentMap && x.use(p(S.cellComponentMap)), S?.cellFormatExcelValueMap && x.use(m(S.cellFormatExcelValueMap)), S?.menuComponents && x.use(s(S.menuComponents)), S?.debugCodeComponent && x.use(l(S.debugCodeComponent)), S?.extraMenuIcons && x.use(a(S.extraMenuIcons)), S?.workerHostFunctions && x.use(n(S.workerHostFunctions)), S?.injectMenuState && x.use(_(S.injectMenuState)), x.component("FieldRender", b(() => import("./FieldRender-
|
|
6
|
+
S?.env && x.use(i(S.env)), S?.globMap && x.use(d(S.globMap)), S?.bus && x.use(g(S.bus)), S?.useAppStore && x.use(v(S.useAppStore)), S?.useUserStore && x.use(e(S.useUserStore)), S?.request && x.use(c(S.request)), S?.useRequiredConditionStore && x.use(t(S.useRequiredConditionStore)), S?.required_condition_event_obj && x.use(r(S.required_condition_event_obj)), S?.event_obj && x.use(h(S.event_obj)), S?.ls && x.use(o(S.ls)), S?.sourceStore && x.use(y(S.sourceStore)), S?.usePageConfigStore && x.use(u(S.usePageConfigStore)), S?.remoteSelectStore && x.use(f(S.remoteSelectStore)), S?.cellComponentMap && x.use(p(S.cellComponentMap)), S?.cellFormatExcelValueMap && x.use(m(S.cellFormatExcelValueMap)), S?.menuComponents && x.use(s(S.menuComponents)), S?.debugCodeComponent && x.use(l(S.debugCodeComponent)), S?.extraMenuIcons && x.use(a(S.extraMenuIcons)), S?.workerHostFunctions && x.use(n(S.workerHostFunctions)), S?.injectMenuState && x.use(_(S.injectMenuState)), x.component("FieldRender", b(() => import("./FieldRender-ABR1rg_f.js").then((e) => e.n))).component("AttributeTable", b(() => import("./AttributeTable-BeZnyj9P.js").then((e) => e.n))).component("AttributeNomTable", b(() => import("./AttributeNomTable-HiLsOuv9.js").then((e) => e.n))).component("SearchRender", b(() => import("./SearchRender-CJAyx6XH.js").then((e) => e.n))).component("RemoteSelect", b(() => import("./RemoteSelect-C9PN5B3f.js").then((e) => e.n))).component("RemoteCascader", b(() => import("./RemoteCascader-CGdD6rUw.js").then((e) => e.n))).component("RemoteFilterSelect", b(() => import("./RemoteFilterSelect-BCv2zIHS.js").then((e) => e.n))).component("RemoteModal", b(() => import("./RemoteModal-LBD1h5AF.js").then((e) => e.n))).component("JsonStr", b(() => import("./JsonStr-Bx2WI6jK.js").then((e) => e.n))).component("JsonObj", b(() => import("./JsonObj-DIlhMCbj.js").then((e) => e.n))).component("RemoteText", b(() => import("./RemoteText-BVqSMfSl.js").then((e) => e.n))).component("RemoteTable2", b(() => import("./RemoteTable2-CVz2AJZ2.js").then((e) => e.n))).component("syncDataSourceConfig", b(() => import("./syncDataSourceConfig-BZTsbx51.js"))).component("syncModelTypeConfig", b(() => import("./syncModelTypeConfig-B2vV_kKb.js"))).component("syncExportRawData", b(() => import("./syncExportRawData-B8xySuut.js"))).component("aiGenModel", b(() => import("./aiGenModel-C7SZpnoO.js"))).component("batchCreateUser", b(() => import("./batchCreateUser-Bpy8EFVm.js"))).component("FormRender3", b(() => import("./FormRender3-BPGoX7BP.js").then((e) => e.n)));
|
|
7
7
|
} };
|
|
8
8
|
//#endregion
|
|
9
9
|
export { x as default };
|
package/dist/liyu-pc-base.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
*,:before,:after,::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 #0000;--un-ring-shadow:0 0 #0000;--un-shadow-inset: ;--un-shadow:0 0 #0000;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:#93c5fd80;--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }.container{width:100%}@media (width>=640px){.container{max-width:640px}}@media (width>=768px){.container{max-width:768px}}@media (width>=1024px){.container{max-width:1024px}}@media (width>=1280px){.container{max-width:1280px}}@media (width>=1536px){.container{max-width:1536px}}.visible{visibility:visible}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.sticky{position:sticky}.static{position:static}.grid{display:grid}.inline{display:inline}.block{display:block}.inline-block{display:inline-block}.contents{display:contents}.hidden{display:none}.h1{height:.25rem}.h2{height:.5rem}.h3{height:.75rem}.h4{height:1rem}.h6{height:1.5rem}.flex{display:flex}.inline-flex{display:inline-flex}.flex-shrink{flex-shrink:1}.grow{flex-grow:1}.flex-wrap{flex-wrap:wrap}.table{display:table}.border-collapse{border-collapse:collapse}.transform{transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.resize{resize:both}.break-all{word-break:break-all}.b,.border{border-width:1px}.px{padding-left:1rem;padding-right:1rem}.pie{padding-inline-end:1rem}.indent{text-indent:1.5rem}.italic{font-style:italic}.underline{text-decoration-line:underline}.tab{tab-size:4}.shadow{--un-shadow:0px 2px 14px 0px var(--un-shadow-color,#00000014);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow)}.outline{outline-style:solid}.filter{filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter,backdrop-filter;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease{transition-timing-function:cubic-bezier(.4,0,.2,1)}.remote-select-pro[data-v-eb9dcae8]{flex-wrap:nowrap;align-items:flex-start;gap:4px;display:flex}.ant-input-group.ant-input-group-compact .remote-select-pro[data-v-eb9dcae8]{display:flex}.ant-form-inline .ant-input-group.ant-input-group-compact .remote-select-pro[data-v-eb9dcae8]{display:inline-flex}.table-search-icon[data-v-eb9dcae8]{color:#000;font-size:17px}.json-str-group[data-v-d718bf4e]{flex-direction:column;align-items:flex-end;gap:4px;width:100%;display:inline-flex}.attribute-table .ant-table-footer{padding:5px;padding:5px}.ant-calendar-picker[data-v-7a7e0ed8]{width:100%!important}.CodeMirror{font-family:Monaco,monospace;height:300px!important;font-size:15px!important;line-height:1.4!important}.CodeMirror-lines{min-height:1px;padding:4px 0}.CodeMirror-hints{background:#2d2d2d;border:1px solid #555;border-radius:3px;max-height:20em;margin:0 0 0 5px;padding:2px;font-family:monospace;font-size:100%;list-style:none;position:absolute;overflow:hidden auto;box-shadow:2px 3px 5px #0003;z-index:9999!important}.CodeMirror-hint{white-space:pre;color:#fff;cursor:pointer;border-radius:2px;margin:0;padding:0 4px}li.CodeMirror-hint-active{color:#fff;background:#08f}.head_btn[data-v-bcfee82b]{flex-wrap:wrap;justify-content:end;gap:4px;margin-bottom:4px;display:flex}:root,:host{--w-e-textarea-bg-color:#fff;--w-e-textarea-color:#333;--w-e-textarea-border-color:#ccc;--w-e-textarea-slight-border-color:#e8e8e8;--w-e-textarea-slight-color:#d4d4d4;--w-e-textarea-slight-bg-color:#f5f2f0;--w-e-textarea-selected-border-color:#b4d5ff;--w-e-textarea-handler-bg-color:#4290f7;--w-e-toolbar-color:#595959;--w-e-toolbar-bg-color:#fff;--w-e-toolbar-active-color:#333;--w-e-toolbar-active-bg-color:#f1f1f1;--w-e-toolbar-disabled-color:#999;--w-e-toolbar-border-color:#e8e8e8;--w-e-modal-button-bg-color:#fafafa;--w-e-modal-button-border-color:#d9d9d9}.w-e-text-container *,.w-e-toolbar *{box-sizing:border-box;outline:none;margin:0;padding:0}.w-e-text-container blockquote,.w-e-text-container li,.w-e-text-container p,.w-e-text-container td,.w-e-text-container th,.w-e-toolbar *{line-height:1.5}.w-e-text-container{background-color:var(--w-e-textarea-bg-color);color:var(--w-e-textarea-color);height:100%;position:relative}.w-e-text-container .w-e-scroll{-webkit-overflow-scrolling:touch;height:100%}.w-e-text-container [data-slate-editor]{word-wrap:break-word;white-space:pre-wrap;border-top:1px solid #0000;outline:0;min-height:100%;padding:0 10px}.w-e-text-container [data-slate-editor] p{margin:15px 0}.w-e-text-container [data-slate-editor] h1,.w-e-text-container [data-slate-editor] h2,.w-e-text-container [data-slate-editor] h3,.w-e-text-container [data-slate-editor] h4,.w-e-text-container [data-slate-editor] h5{margin:20px 0}.w-e-text-container [data-slate-editor] img{cursor:default;min-width:20px;max-width:100%;min-height:20px;display:inline!important}.w-e-text-container [data-slate-editor] span{text-indent:0}.w-e-text-container [data-slate-editor] [data-selected=true]{box-shadow:0 0 0 2px var(--w-e-textarea-selected-border-color)}.w-e-text-placeholder{width:90%;font-style:italic;top:17px;left:10px}.w-e-max-length-info,.w-e-text-placeholder{color:var(--w-e-textarea-slight-color);pointer-events:none;-webkit-user-select:none;user-select:none;position:absolute}.w-e-max-length-info{bottom:.5em;right:1em}.w-e-bar{background-color:var(--w-e-toolbar-bg-color);color:var(--w-e-toolbar-color);padding:0 5px;font-size:14px}.w-e-bar svg{fill:var(--w-e-toolbar-color);width:14px;height:14px}.w-e-bar-show{display:flex}.w-e-bar-hidden{display:none}.w-e-hover-bar{border:1px solid var(--w-e-toolbar-border-color);border-radius:3px;position:absolute;box-shadow:0 2px 5px #0000001f}.w-e-toolbar{flex-wrap:wrap;position:relative}.w-e-bar-divider{background-color:var(--w-e-toolbar-border-color);width:1px;height:40px;margin:0 5px;display:inline-flex}.w-e-bar-item{text-align:center;height:40px;padding:4px;display:flex;position:relative}.w-e-bar-item,.w-e-bar-item button{justify-content:center;align-items:center}.w-e-bar-item button{color:var(--w-e-toolbar-color);cursor:pointer;white-space:nowrap;background:0 0;border:none;height:32px;padding:0 8px;display:inline-flex;overflow:hidden}.w-e-bar-item button:hover{background-color:var(--w-e-toolbar-active-bg-color);color:var(--w-e-toolbar-active-color)}.w-e-bar-item button .title{margin-left:5px}.w-e-bar-item .active{background-color:var(--w-e-toolbar-active-bg-color);color:var(--w-e-toolbar-active-color)}.w-e-bar-item .disabled{color:var(--w-e-toolbar-disabled-color);cursor:not-allowed}.w-e-bar-item .disabled svg{fill:var(--w-e-toolbar-disabled-color)}.w-e-bar-item .disabled:hover{background-color:var(--w-e-toolbar-bg-color);color:var(--w-e-toolbar-disabled-color)}.w-e-bar-item .disabled:hover svg{fill:var(--w-e-toolbar-disabled-color)}.w-e-menu-tooltip-v5:before{background-color:var(--w-e-toolbar-active-color);color:var(--w-e-toolbar-bg-color);content:attr(data-tooltip);opacity:0;text-align:center;visibility:hidden;white-space:pre;z-index:1;border-radius:5px;padding:5px 10px;font-size:.75em;transition:opacity .6s;position:absolute;top:40px}.w-e-menu-tooltip-v5:after{border:5px solid #0000;border-bottom:5px solid var(--w-e-toolbar-active-color);content:"";opacity:0;visibility:hidden;transition:opacity .6s;position:absolute;top:30px}.w-e-menu-tooltip-v5:hover:after,.w-e-menu-tooltip-v5:hover:before{opacity:1;visibility:visible}.w-e-menu-tooltip-v5.tooltip-right:before{top:10px;left:100%}.w-e-menu-tooltip-v5.tooltip-right:after{border-bottom-color:#0000;border-left-color:#0000;border-right-color:var(--w-e-toolbar-active-color);border-top-color:#0000;margin-left:-10px;top:16px;left:100%}.w-e-bar-item-group .w-e-bar-item-menus-container{background-color:var(--w-e-toolbar-bg-color);border:1px solid var(--w-e-toolbar-border-color);z-index:1;border-radius:3px;margin-top:40px;display:none;position:absolute;top:0;left:0;box-shadow:0 2px 10px #0000001f}.w-e-bar-item-group:hover .w-e-bar-item-menus-container{display:block}.w-e-select-list{background-color:var(--w-e-toolbar-bg-color);border:1px solid var(--w-e-toolbar-border-color);z-index:1;border-radius:3px;min-width:100px;max-height:350px;margin-top:40px;position:absolute;top:0;left:0;overflow-y:auto;box-shadow:0 2px 10px #0000001f}.w-e-select-list ul{line-height:1;list-style:none}.w-e-select-list ul .selected{background-color:var(--w-e-toolbar-active-bg-color)}.w-e-select-list ul li{cursor:pointer;text-align:left;white-space:nowrap;padding:7px 0 7px 25px;position:relative}.w-e-select-list ul li:hover{background-color:var(--w-e-toolbar-active-bg-color)}.w-e-select-list ul li svg{margin-top:-7px;margin-left:5px;position:absolute;top:50%;left:0}.w-e-bar-bottom .w-e-select-list{bottom:0;top:inherit;margin-top:0;margin-bottom:40px}.w-e-drop-panel{background-color:var(--w-e-toolbar-bg-color);border:1px solid var(--w-e-toolbar-border-color);z-index:1;border-radius:3px;min-width:200px;margin-top:40px;padding:10px;position:absolute;top:0;box-shadow:0 2px 10px #0000001f}.w-e-bar-bottom .w-e-drop-panel{bottom:0;top:inherit;margin-top:0;margin-bottom:40px}.w-e-modal{background-color:var(--w-e-toolbar-bg-color);border:1px solid var(--w-e-toolbar-border-color);color:var(--w-e-toolbar-color);text-align:left;z-index:1;border-radius:3px;min-width:100px;min-height:40px;padding:20px 15px 0;font-size:14px;position:absolute;box-shadow:0 2px 10px #0000001f}.w-e-modal .btn-close{cursor:pointer;padding:5px;line-height:1;position:absolute;top:7px;right:8px}.w-e-modal .btn-close svg{fill:var(--w-e-toolbar-color);width:10px;height:10px}.w-e-modal .babel-container{margin-bottom:15px;display:block}.w-e-modal .babel-container span{margin-bottom:10px;display:block}.w-e-modal .button-container{margin-bottom:15px}.w-e-modal button{background-color:var(--w-e-modal-button-bg-color);border:1px solid var(--w-e-modal-button-border-color);color:var(--w-e-toolbar-color);cursor:pointer;text-align:center;touch-action:manipulation;-webkit-user-select:none;user-select:none;white-space:nowrap;border-radius:4px;height:32px;padding:4.5px 15px;font-weight:400;transition:all .3s cubic-bezier(.645,.045,.355,1)}.w-e-modal input[type=number],.w-e-modal input[type=text],.w-e-modal textarea{font-feature-settings:"tnum";background-color:var(--w-e-toolbar-bg-color);border:1px solid var(--w-e-modal-button-border-color);color:var(--w-e-toolbar-color);font-variant:tabular-nums;border-radius:4px;width:100%;padding:4.5px 11px;transition:all .3s}.w-e-modal textarea{min-height:60px}body .w-e-modal,body .w-e-modal *{box-sizing:border-box}.w-e-progress-bar{background-color:var(--w-e-textarea-handler-bg-color);width:0;height:1px;transition:width .3s;position:absolute}.w-e-full-screen-container{position:fixed;flex-direction:column!important;width:100%!important;height:100%!important;margin:0!important;padding:0!important;display:flex!important;inset:0!important}.w-e-full-screen-container [data-w-e-textarea=true]{flex:1!important}.w-e-text-container [data-slate-editor] code{background-color:var(--w-e-textarea-slight-bg-color);border-radius:3px;padding:3px;font-family:monospace}.w-e-panel-content-color{text-align:left;width:230px;list-style:none}.w-e-panel-content-color li{border:1px solid var(--w-e-toolbar-bg-color);cursor:pointer;border-radius:3px;padding:2px;display:inline-block}.w-e-panel-content-color li:hover{border-color:var(--w-e-toolbar-color)}.w-e-panel-content-color li .color-block{border:1px solid var(--w-e-toolbar-border-color);border-radius:3px;width:17px;height:17px}.w-e-panel-content-color .active{border-color:var(--w-e-toolbar-color)}.w-e-panel-content-color .clear{width:100%;margin-bottom:5px;line-height:1.5}.w-e-panel-content-color .clear svg{width:16px;height:16px;margin-bottom:-4px}.w-e-text-container [data-slate-editor] blockquote{background-color:var(--w-e-textarea-slight-bg-color);border-left:8px solid var(--w-e-textarea-selected-border-color);margin:10px 0;padding:10px;font-size:100%;line-height:1.5;display:block}.w-e-panel-content-emotion{text-align:left;width:300px;font-size:20px;list-style:none}.w-e-panel-content-emotion li{cursor:pointer;border-radius:3px;padding:0 5px;display:inline-block}.w-e-panel-content-emotion li:hover{background-color:var(--w-e-textarea-slight-bg-color)}.w-e-textarea-divider{border-radius:3px;margin:20px auto;padding:20px}.w-e-textarea-divider hr{background-color:var(--w-e-textarea-border-color);border:0;height:1px;display:block}.w-e-text-container [data-slate-editor] pre>code{background-color:var(--w-e-textarea-slight-bg-color);border:1px solid var(--w-e-textarea-slight-border-color);text-indent:0;border-radius:4px;padding:10px;font-size:14px;display:block}.w-e-text-container [data-slate-editor] .w-e-image-container{margin:0 3px;display:inline-block}.w-e-text-container [data-slate-editor] .w-e-image-container:hover{box-shadow:0 0 0 2px var(--w-e-textarea-selected-border-color)}.w-e-text-container [data-slate-editor] .w-e-selected-image-container{position:relative;overflow:hidden}.w-e-text-container [data-slate-editor] .w-e-selected-image-container .w-e-image-dragger{background-color:var(--w-e-textarea-handler-bg-color);width:7px;height:7px;position:absolute}.w-e-text-container [data-slate-editor] .w-e-selected-image-container .left-top{cursor:nwse-resize;top:0;left:0}.w-e-text-container [data-slate-editor] .w-e-selected-image-container .right-top{cursor:nesw-resize;top:0;right:0}.w-e-text-container [data-slate-editor] .w-e-selected-image-container .left-bottom{cursor:nesw-resize;bottom:0;left:0}.w-e-text-container [data-slate-editor] .w-e-selected-image-container .right-bottom{cursor:nwse-resize;bottom:0;right:0}.w-e-text-container [data-slate-editor] .w-e-selected-image-container:hover,.w-e-text-container [contenteditable=false] .w-e-image-container:hover{box-shadow:none}.w-e-text-container [data-slate-editor] .table-container{border:1px dashed var(--w-e-textarea-border-color);border-radius:5px;width:100%;margin-top:10px;padding:10px;overflow-x:auto}.w-e-text-container [data-slate-editor] table{border-collapse:collapse}.w-e-text-container [data-slate-editor] table td,.w-e-text-container [data-slate-editor] table th{border:1px solid var(--w-e-textarea-border-color);text-align:left;min-width:30px;padding:3px 5px;line-height:1.5}.w-e-text-container [data-slate-editor] table th{background-color:var(--w-e-textarea-slight-bg-color);text-align:center;font-weight:700}.w-e-panel-content-table{background-color:var(--w-e-toolbar-bg-color)}.w-e-panel-content-table table{border-collapse:collapse}.w-e-panel-content-table td{border:1px solid var(--w-e-toolbar-border-color);cursor:pointer;width:20px;height:15px;padding:3px 5px}.w-e-panel-content-table td.active{background-color:var(--w-e-toolbar-active-bg-color)}.w-e-textarea-video-container{border:1px dashed var(--w-e-textarea-border-color);text-align:center;background-image:linear-gradient(45deg,#eee 25%,#0000 0 75%,#eee 0,#eee),linear-gradient(45deg,#eee 25%,#fff 0 75%,#eee 0,#eee);background-position:0 0,10px 10px;background-size:20px 20px;border-radius:5px;margin:10px auto 0;padding:10px 0}.w-e-text-container [data-slate-editor] pre>code{word-wrap:normal;-webkit-hyphens:none;hyphens:none;tab-size:4;text-align:left;text-shadow:0 1px #fff;white-space:pre;word-break:normal;word-spacing:normal;margin:.5em 0;padding:1em;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;line-height:1.5;overflow:auto}.w-e-text-container [data-slate-editor] pre>code .token.cdata,.w-e-text-container [data-slate-editor] pre>code .token.comment,.w-e-text-container [data-slate-editor] pre>code .token.doctype,.w-e-text-container [data-slate-editor] pre>code .token.prolog{color:#708090}.w-e-text-container [data-slate-editor] pre>code .token.punctuation{color:#999}.w-e-text-container [data-slate-editor] pre>code .token.namespace{opacity:.7}.w-e-text-container [data-slate-editor] pre>code .token.boolean,.w-e-text-container [data-slate-editor] pre>code .token.constant,.w-e-text-container [data-slate-editor] pre>code .token.deleted,.w-e-text-container [data-slate-editor] pre>code .token.number,.w-e-text-container [data-slate-editor] pre>code .token.property,.w-e-text-container [data-slate-editor] pre>code .token.symbol,.w-e-text-container [data-slate-editor] pre>code .token.tag{color:#905}.w-e-text-container [data-slate-editor] pre>code .token.attr-name,.w-e-text-container [data-slate-editor] pre>code .token.builtin,.w-e-text-container [data-slate-editor] pre>code .token.char,.w-e-text-container [data-slate-editor] pre>code .token.inserted,.w-e-text-container [data-slate-editor] pre>code .token.selector,.w-e-text-container [data-slate-editor] pre>code .token.string{color:#690}.w-e-text-container [data-slate-editor] pre>code .language-css .token.string,.w-e-text-container [data-slate-editor] pre>code .style .token.string,.w-e-text-container [data-slate-editor] pre>code .token.entity,.w-e-text-container [data-slate-editor] pre>code .token.operator,.w-e-text-container [data-slate-editor] pre>code .token.url{color:#9a6e3a}.w-e-text-container [data-slate-editor] pre>code .token.atrule,.w-e-text-container [data-slate-editor] pre>code .token.attr-value,.w-e-text-container [data-slate-editor] pre>code .token.keyword{color:#07a}.w-e-text-container [data-slate-editor] pre>code .token.class-name,.w-e-text-container [data-slate-editor] pre>code .token.function{color:#dd4a68}.w-e-text-container [data-slate-editor] pre>code .token.important,.w-e-text-container [data-slate-editor] pre>code .token.regex,.w-e-text-container [data-slate-editor] pre>code .token.variable{color:#e90}.w-e-text-container [data-slate-editor] pre>code .token.bold,.w-e-text-container [data-slate-editor] pre>code .token.important{font-weight:700}.w-e-text-container [data-slate-editor] pre>code .token.italic{font-style:italic}.w-e-text-container [data-slate-editor] pre>code .token.entity{cursor:help}.icon-select-container[data-v-29ac0e84]{flex-direction:column;height:600px;display:flex;position:relative}.icon-select-container .search-bar[data-v-29ac0e84]{z-index:1;background:#fff;border-bottom:1px solid #f0f0f0;padding:12px;position:sticky;top:0}.icon-select-container .icon-content[data-v-29ac0e84]{flex:1;padding:12px;overflow-y:auto}.icon-select-container .icon-groups .icon-group[data-v-29ac0e84]{margin-bottom:4px}.icon-select-container .icon-groups .icon-group .group-title[data-v-29ac0e84]{color:#1f1f1f;margin-bottom:2px;font-size:16px;font-weight:500}.icon-select-container .icon-groups .icon-group .icon-grid[data-v-29ac0e84]{grid-template-columns:repeat(auto-fill,minmax(100px,1fr));gap:2px;display:grid}.icon-select-container .icon-groups .icon-group .icon-grid .icon-item[data-v-29ac0e84]{cursor:pointer;border-radius:4px;flex-direction:column;justify-content:center;align-items:center;padding:2px 20px;transition:all .3s;display:flex}.icon-select-container .icon-groups .icon-group .icon-grid .icon-item[data-v-29ac0e84]:hover{background-color:#e6f7ff;border-color:#1890ff}.icon-select-container .icon-groups .icon-group .icon-grid .icon-item.icon-selected[data-v-29ac0e84]{color:#fff;background-color:#1677ff;border-color:#1890ff}.icon-select-container .icon-groups .icon-group .icon-grid .icon-item.icon-selected .icon-name[data-v-29ac0e84]{color:#fff}.icon-select-container .icon-groups .icon-group .icon-grid .icon-item .anticon[data-v-29ac0e84]{margin-bottom:8px;font-size:24px}.icon-select-container .icon-groups .icon-group .icon-grid .icon-item .icon-name[data-v-29ac0e84]{color:#666;text-align:center;word-break:break-all;font-size:12px}.top_btn[data-v-d6626b20]{flex-direction:column;align-items:flex-end;gap:8px;margin-bottom:8px;display:flex}.form-wrap[data-v-d6626b20]{border:1px solid #e8e8e8;border-radius:4px;flex-direction:row;align-items:flex-start;width:100%;margin-bottom:4px;padding:4px;display:flex}.form-wrap .form-content[data-v-d6626b20]{flex:1;min-width:0;overflow:hidden}.form-wrap .form-action[data-v-d6626b20]{flex-shrink:0;justify-content:center;align-items:center;padding-top:8px;display:flex}.table-cell-form[data-v-03708942]{display:block}.field-cell-item[data-v-03708942]{box-sizing:border-box;height:100%;padding:8px}.field-cell-item[data-v-03708942] .ant-input-clear-icon{display:none}.field-cell-item[data-v-03708942]:hover .ant-input-clear-icon{display:block}.field-cell-item[data-v-03708942]:has(:focus) .ant-input-clear-icon{display:block}[data-v-03708942] .ant-form-item{margin:0!important}[data-v-03708942] .ant-input-affix-wrapper{box-shadow:none!important;background-color:#0000!important;border:0!important;outline:none!important;padding:0!important}[data-v-03708942] .ant-input{box-shadow:none!important;background-color:#0000!important;border:0!important;outline:none!important}[data-v-03708942] .ant-select-selector{box-shadow:none!important;background:0 0!important;border:0!important;padding:0!important}[data-v-03708942] .ant-input-number{box-shadow:none!important;background-color:#0000!important;border:0!important;outline:none!important}[data-v-03708942] .ant-input-group-addon,[data-v-03708942] .ant-input-number-group-addon,[data-v-03708942] .ant-input-number-affix-wrapper{background:0 0!important;border:none!important}[data-v-03708942] .ant-input-number-input{padding:0!important}[data-v-03708942] .ant-input-number-handler-wrap{display:none!important}[data-v-03708942] .ant-form-item-control-input-content .ant-layout{background:0 0}.editable.item-required[data-v-03708942] .ant-form-item:before{color:#ff4d4f;content:"*";margin-right:4px;font-family:SimSun,sans-serif;font-size:14px;line-height:1;display:inline-block;position:absolute;top:50%;right:0;transform:translateY(-50%)}[data-v-03708942] .ant-picker{box-shadow:none!important;background-color:#0000!important;border:0!important;outline:none!important}[data-v-e695af09] .surely-table-cell .surely-table-cell-inner{height:100%}[data-v-e695af09] .surely-table-cell .surely-table-cell-inner:has(.editable){background-color:#f8e83537;border:1px solid #0000!important}[data-v-e695af09] .surely-table-cell .surely-table-cell-inner:has(.editable) input{text-overflow:ellipsis}[data-v-e695af09] .surely-table-cell .surely-table-cell-inner:has(.editable) input:focus{text-overflow:clip}:is([data-v-e695af09] .surely-table-cell .surely-table-cell-inner:has(.editable:hover),[data-v-e695af09] .surely-table-cell .surely-table-cell-inner:has(.editable:focus),[data-v-e695af09] .surely-table-cell .surely-table-cell-inner:has(.editable input:focus),[data-v-e695af09] .surely-table-cell .surely-table-cell-inner:has(.editable textarea:focus)){background-color:#fcee55bc;border-radius:6px;box-shadow:0 0 0 2px #1890ff33;border-color:#40a9ff!important}[data-v-e695af09] .surely-table-cell .surely-table-cell-inner:has(.ant-form-item-has-error){border-radius:6px;border:1px solid #ff4d4f!important}[data-v-e695af09] .surely-table-cell .surely-table-cell-inner .surely-table-cell-content{padding:0!important}[data-v-e695af09] .surely-table-cell .ant-form-item-explain-error{font-size:10px}.required-star[data-v-e695af09]{color:red;margin-left:4px}.cell-item[data-v-e695af09]{padding:8px}.top_btn[data-v-ffaa44a9]{flex-flow:wrap;justify-content:flex-end;gap:8px;margin-bottom:8px;display:flex}.form-wrap[data-v-ffaa44a9]{border:1px solid #e8e8e8;border-radius:4px;flex-direction:row;align-items:flex-start;width:100%;margin-bottom:4px;padding:4px;display:flex}.form-wrap .form-content[data-v-ffaa44a9]{flex:1;min-width:0;overflow:hidden}.form-wrap .form-action[data-v-ffaa44a9]{flex-shrink:0;justify-content:center;align-items:center;padding-top:8px;display:flex}.error-msg[data-v-4d36fe78]{color:#ff4d4f}.head_btn[data-v-1c2384e8]{flex-wrap:wrap;justify-content:end;gap:4px;margin-bottom:4px;display:flex}[data-v-a5e3757b] .ant-input[readonly],.ant-input-affix-wrapper-readonly[data-v-a5e3757b],[data-v-a5e3757b] .ant-input-affix-wrapper-readonly{background-color:#f5f5f5}.ant-calendar-picker[data-v-165f0996]{width:100%!important}[data-v-13a27c20] .ant-select-selection-placeholder{width:100%;overflow:hidden}.cards[data-v-bd6bf9b4] .ant-card-head,.cards[data-v-823e4644] .ant-card-head{background-color:#00000005;min-height:44px;padding:0 8px}.group-custom-btn-list[data-v-823e4644]{flex-wrap:wrap;gap:5px;margin-right:2px;display:inline-flex}.ant-calendar-picker[data-v-168ff853]{width:100%!important}.search-summary[data-v-daae65bd]{padding:4px 2px;display:inline-block}.search-config-container[data-v-f069cba6]{align-items:center;gap:16px;height:70vh;display:flex}.search-config-container .table-wrapper[data-v-f069cba6]{border:1px solid #f0f0f0;border-radius:4px;flex-direction:column;width:450px;height:100%;display:flex;overflow:auto}.search-config-container .table-wrapper .table-title[data-v-f069cba6]{background:#fafafa;border-bottom:1px solid #f0f0f0;padding:8px 12px;font-weight:700}.search-config-container .middle-btns[data-v-f069cba6]{flex-direction:column;gap:16px;display:flex}.search-field-group-title[data-v-5239b541]{color:var(--primary-color,#1890ff);border-bottom:1px solid #f0f0f0;flex-basis:100%;align-items:center;width:100%;margin-bottom:4px;padding:8px 4px 4px;font-weight:700;display:flex}.search-field-group-title[data-v-5239b541]:not(:first-child){margin-top:8px}.search-form-grid-inner[data-v-5239b541]{grid-template-columns:repeat(var(--column-count), max-content 1fr);align-items:center;gap:2px 8px;display:grid}.search-form-grid-inner .search-field-group-title[data-v-5239b541]{grid-column:span calc(var(--column-count) * 2)}.search-form-grid-inner .search-field-group-title[data-v-5239b541]:not(:first-child){margin-top:8px}.search-form-grid-inner[data-v-5239b541] .ant-form-item{margin-bottom:2px;margin-right:0;display:contents}.search-form-grid-inner[data-v-5239b541] .ant-form-item .ant-form-item-row,.search-form-grid-inner[data-v-5239b541] .ant-form-item .ant-form-item-label,.search-form-grid-inner[data-v-5239b541] .ant-form-item .ant-form-item-control,.search-form-grid-inner[data-v-5239b541] .ant-form-item .ant-form-item-control-input,.search-form-grid-inner[data-v-5239b541] .ant-form-item .ant-form-item-control-input-content{display:contents}.search-form-grid-inner[data-v-5239b541] .ant-form-item-label{justify-self:end;align-items:center;max-width:150px;display:flex!important}.search-form-grid-inner[data-v-5239b541] .ant-form-item-label .search-item-label-text{text-overflow:ellipsis;white-space:nowrap;text-align:right;padding-right:8px;overflow:hidden}.search-form-grid-inner[data-v-5239b541] .ant-input-group{width:100%;display:flex!important}.search-form-grid-inner .btn-content[data-v-5239b541]{grid-column:span calc(var(--column-count) * 2)}.btn-content[data-v-5239b541]{margin-left:auto;padding:4px}.range[data-v-5239b541]{padding:0 4px}[data-v-5239b541] .ant-select-selection-placeholder{width:100%;overflow:hidden}.search-form-wraper[data-v-3b64723c]{max-height:300px;padding-left:2px;padding-right:2px;overflow-y:auto}.search-switch[data-v-3b64723c]{height:32px;line-height:32px;display:inline-block}.bottom-content[data-v-3b64723c]{justify-content:flex-end;padding:8px 26px 8px 8px;display:flex}.search-switch[data-v-e443a7be]{height:32px;line-height:32px;display:inline-block}.search-groups-container[data-v-e443a7be]{max-height:300px;padding:4px 0;overflow-y:auto}.search-group-item[data-v-e443a7be]{background:#fafafa;border:1px solid #f0f0f0;border-radius:4px;margin-bottom:8px;padding:8px}.search-group-header[data-v-e443a7be]{border-bottom:1px dashed #e0e0e0;justify-content:space-between;align-items:center;margin-bottom:8px;padding-bottom:4px;display:flex}.search-group-header-title[data-v-e443a7be]{color:var(--primary-color,#1890ff);font-size:13px;font-weight:700}.search-group-actions[data-v-e443a7be]{gap:4px;display:flex}.search-form-wraper[data-v-e443a7be]{padding-left:2px;padding-right:2px}.add-group-btn[data-v-e443a7be]{margin:4px 0 8px 8px}.bottom-content[data-v-e443a7be]{justify-content:flex-end;padding:8px 26px 8px 8px;display:flex}.group-or-separator[data-v-e443a7be]{color:#999;padding:0 8px;font-size:12px;font-weight:700;line-height:32px;display:inline-block}.columns-config-wrapper[data-v-6797490e]{padding:8px 0}.pivot-zone-item-label[data-v-837ceec0]{text-overflow:ellipsis;white-space:nowrap;flex:none;min-width:0;overflow:hidden}.vf-display-expr[data-v-837ceec0]{flex-wrap:wrap;align-items:center;gap:2px;display:inline-flex}.vf-display-token[data-v-837ceec0]{border-radius:3px;padding:0 4px;font-size:12px}.vf-display-token.vf-token-field[data-v-837ceec0]{color:#0958d9;background:#e6f7ff}.vf-display-token.vf-token-op[data-v-837ceec0]{color:#333;font-weight:700}.vf-display-token.vf-token-number[data-v-837ceec0]{color:#389e0d;background:#f6ffed}.vf-display-token.vf-token-string[data-v-837ceec0]{color:#c41d7f;background:#fff0f6}.vf-display-token.vf-token-bool[data-v-837ceec0]{color:#722ed1;background:#f9f0ff}.vf-display-token.vf-token-paren[data-v-837ceec0]{color:#d46b08;font-weight:700}.vf-display-token.vf-token-subexpr[data-v-837ceec0]{color:#722ed1;background:#f9f0ff}.vf-display-filter[data-v-837ceec0],.vf-display-warn[data-v-837ceec0]{margin-left:4px}.vee-wrap[data-v-ac442b30]{flex-direction:column;gap:10px;display:flex}.vee-ops[data-v-ac442b30]{flex-wrap:wrap;align-items:center;gap:6px;display:flex}.vee-ops .vee-ops-label[data-v-ac442b30]{color:#666;font-size:13px}.vee-ops .vee-op-btn[data-v-ac442b30]{cursor:grab;min-width:32px;font-weight:600}.vee-ops .vee-bool-btn[data-v-ac442b30]{font-family:monospace}.vee-ops .vee-num-input[data-v-ac442b30],.vee-ops .vee-str-input[data-v-ac442b30]{width:200px}.vee-canvas[data-v-ac442b30]{border:2px dashed #d9d9d9;border-radius:6px;flex-wrap:wrap;align-items:center;gap:6px;min-height:64px;padding:10px;transition:all .2s;display:flex;position:relative}.vee-canvas.drag-over[data-v-ac442b30]{background:#f0f7ff;border-color:#1890ff}.vee-canvas .vee-canvas-placeholder[data-v-ac442b30]{color:#bbb;font-size:12px}.vee-canvas .vee-insert-line[data-v-ac442b30]{pointer-events:none;z-index:2;border-left:2px solid #1890ff;width:0;position:absolute;box-shadow:0 0 4px #1890ffb3}.vee-canvas .vee-token[data-v-ac442b30]{cursor:grab;-webkit-user-select:none;user-select:none;border:1px solid #0000;border-radius:4px;align-items:center;gap:2px;padding:2px 8px;font-size:13px;display:inline-flex}.vee-canvas .vee-token.vee-token-field[data-v-ac442b30]{color:#0958d9;background:#e6f7ff;border-color:#91d5ff}.vee-canvas .vee-token.vee-token-op[data-v-ac442b30]{background:#fafafa;border-color:#d9d9d9;font-weight:700}.vee-canvas .vee-token.vee-token-number[data-v-ac442b30]{color:#389e0d;background:#f6ffed;border-color:#b7eb8f}.vee-canvas .vee-token.vee-token-string[data-v-ac442b30]{color:#c41d7f;background:#fff0f6;border-color:#ffadd2}.vee-canvas .vee-token.vee-token-bool[data-v-ac442b30]{color:#722ed1;background:#f9f0ff;border-color:#d3adf7;font-family:monospace}.vee-canvas .vee-token.vee-token-paren[data-v-ac442b30]{background:#fff7e6;border-color:#ffd591;font-weight:700}.vee-canvas .vee-token .vee-token-remove[data-v-ac442b30]{color:#999;cursor:pointer;font-size:10px}.vee-canvas .vee-token .vee-token-remove[data-v-ac442b30]:hover{color:#ff4d4f}.vee-preview-row[data-v-ac442b30]{flex-wrap:wrap;align-items:center;gap:8px;font-size:13px;display:flex}.vee-preview-row .vee-preview-label[data-v-ac442b30]{color:#666}.vee-preview-row .vee-preview[data-v-ac442b30]{color:#333;background:#f5f5f5;border-radius:4px;padding:2px 8px;font-weight:600}.vee-preview-row .vee-preview.vee-preview-invalid[data-v-ac442b30]{color:#cf1322;background:#fff1f0}.vee-preview-row .vee-warn[data-v-ac442b30]{color:#fa8c16;font-size:12px}.vee-input-wrap[data-v-ac442b30]{flex-flow:wrap;align-items:flex-start;gap:6px;width:100%;display:flex}.vee-subexpr-panel[data-v-ac442b30]{flex-wrap:wrap;align-items:center;gap:6px;display:flex}.vee-subexpr-panel .vee-subexpr-chip[data-v-ac442b30]{color:#722ed1;cursor:grab;-webkit-user-select:none;user-select:none;background:#f9f0ff;border:1px solid #d3adf7;border-radius:4px;padding:2px 8px;font-size:12px}.vee-subexpr-panel .vee-subexpr-chip[data-v-ac442b30]:hover{background:#efdbff;border-color:#9254de}.vee-subexpr-panel .vee-subexpr-chip[data-v-ac442b30]:active{cursor:grabbing}.vee-token-subexpr[data-v-ac442b30]{color:#722ed1;background:#f9f0ff;border-color:#d3adf7}.vee-date-row[data-v-ac442b30]{flex-wrap:nowrap;align-items:center;gap:6px;display:flex}.vee-date-row .vee-date-mode[data-v-ac442b30]{flex-shrink:0}.vee-date-row .vee-date-mode-label[data-v-ac442b30]{color:#666;flex-shrink:0;font-size:13px}.vee-date-row .vee-date-picker[data-v-ac442b30]{width:220px}.vee-op-item[data-v-ac442b30]{cursor:grab}.se-wrap[data-v-c8ea4551]{gap:16px;height:100%;min-height:360px;display:flex}.se-left[data-v-c8ea4551]{border:1px solid #f0f0f0;border-radius:6px;flex-direction:column;flex-shrink:0;width:240px;padding:8px;display:flex;overflow:hidden}.se-left .se-section-title[data-v-c8ea4551]{margin-bottom:8px;font-size:13px;font-weight:600}.se-left .se-field-search[data-v-c8ea4551]{flex-shrink:0;margin-bottom:8px}.se-left .se-field-pool[data-v-c8ea4551]{flex:1;min-height:0;overflow-y:auto}.se-left .se-field-item[data-v-c8ea4551]{cursor:grab;-webkit-user-select:none;user-select:none;border:1px solid #f0f0f0;border-radius:4px;align-items:center;gap:6px;margin-bottom:4px;padding:6px 8px;font-size:13px;transition:all .2s;display:flex}.se-left .se-field-item[data-v-c8ea4551]:hover{background:#f0f7ff;border-color:#1890ff}.se-left .se-field-item[data-v-c8ea4551]:active{cursor:grabbing}.se-left .se-field-item .se-field-icon[data-v-c8ea4551]{color:#1890ff;font-size:12px}.se-left .se-field-item .se-field-label[data-v-c8ea4551]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.se-left .se-field-group[data-v-c8ea4551]{cursor:default;background:#fafafa;font-weight:600}.se-left .se-field-group[data-v-c8ea4551]:hover{background:#fafafa;border-color:#f0f0f0}.se-left .se-field-branch-dot[data-v-c8ea4551]{background:#d9d9d9;border-radius:50%;flex-shrink:0;width:8px;height:8px;display:inline-block}.se-left .se-empty[data-v-c8ea4551]{text-align:center;color:#999;padding:20px 0;font-size:12px}.se-right[data-v-c8ea4551]{flex-direction:column;flex:1;gap:12px;min-width:0;display:flex;overflow-y:auto}.se-right .se-name-row[data-v-c8ea4551]{align-items:center;gap:8px;display:flex}.se-right .se-name-row .se-name-label[data-v-c8ea4551]{color:#333;flex-shrink:0;font-size:13px;font-weight:600}.se-right .se-name-row .se-name-input[data-v-c8ea4551]{flex:1;max-width:360px}.pivot-config-wrapper[data-v-1753c56f]{flex-direction:column;gap:12px;height:100%;display:flex}.pivot-config-main[data-v-1753c56f]{flex:1;gap:16px;min-height:0;display:flex}.pivot-field-list[data-v-1753c56f]{border:1px solid #f0f0f0;border-radius:6px;flex-direction:column;flex-shrink:0;width:220px;padding:8px;display:flex;overflow:hidden}.pivot-field-list .pivot-section-title[data-v-1753c56f]{color:#333;margin-bottom:8px;font-size:13px;font-weight:600}.pivot-field-list .pivot-field-pool[data-v-1753c56f]{flex:1;min-height:0;overflow-y:auto}.pivot-field-list .pivot-field-item[data-v-1753c56f]{cursor:grab;-webkit-user-select:none;user-select:none;border:1px solid #f0f0f0;border-radius:4px;align-items:center;gap:6px;margin-bottom:4px;padding:6px 8px;font-size:13px;transition:all .2s;display:flex}.pivot-field-list .pivot-field-item[data-v-1753c56f]:hover{background:#f0f7ff;border-color:#1890ff}.pivot-field-list .pivot-field-item[data-v-1753c56f]:active{cursor:grabbing}.pivot-field-list .pivot-field-item .pivot-field-icon[data-v-1753c56f]{color:#1890ff;font-size:12px}.pivot-field-list .pivot-field-item .pivot-field-label[data-v-1753c56f]{text-overflow:ellipsis;white-space:nowrap;flex:1;overflow:hidden}.pivot-field-list .pivot-field-item .pivot-field-tag[data-v-1753c56f]{color:#fff;background:#1890ff;border-radius:8px;flex-shrink:0;padding:1px 6px;font-size:10px;line-height:16px}.pivot-field-list .pivot-field-group[data-v-1753c56f]{cursor:default;background:#fafafa;font-weight:600}.pivot-field-list .pivot-field-group[data-v-1753c56f]:hover{background:#fafafa;border-color:#f0f0f0}.pivot-field-list .pivot-field-group .pivot-field-icon[data-v-1753c56f]{color:#bfbfbf}.pivot-field-list .pivot-field-branch-dot[data-v-1753c56f]{background:#d9d9d9;border-radius:50%;width:8px;height:8px;display:inline-block}.pivot-field-list .pivot-field-empty[data-v-1753c56f]{text-align:center;color:#999;padding:20px 0;font-size:12px}.pivot-drop-zones[data-v-1753c56f]{flex-direction:column;flex:1;gap:12px;min-width:0;display:flex;overflow-y:auto}.pivot-drop-zone[data-v-1753c56f]{border:2px dashed #d9d9d9;border-radius:6px;flex-shrink:0;min-height:80px;padding:8px;transition:all .2s}.pivot-drop-zone.drag-over[data-v-1753c56f]{background:#f0f7ff;border-color:#1890ff}.pivot-drop-zone .pivot-zone-header[data-v-1753c56f]{justify-content:space-between;align-items:center;margin-bottom:6px;display:flex}.pivot-drop-zone .pivot-zone-header .pivot-zone-title[data-v-1753c56f]{color:#333;align-items:center;gap:4px;font-size:13px;font-weight:600;display:flex}.pivot-drop-zone .pivot-zone-header .pivot-zone-tip[data-v-1753c56f]{color:#999;cursor:help;font-size:12px}.pivot-drop-zone .pivot-zone-items[data-v-1753c56f]{flex-wrap:wrap;gap:6px;min-height:32px;display:flex}.pivot-drop-zone .pivot-zone-placeholder[data-v-1753c56f]{color:#bbb;text-align:center;width:100%;padding:4px 8px;font-size:12px}.pivot-zone-item[data-v-1753c56f]{cursor:grab;-webkit-user-select:none;user-select:none;box-sizing:border-box;background:#fafafa;border:1px solid #d9d9d9;border-radius:4px;align-items:center;gap:4px;max-width:100%;padding:4px 8px;font-size:12px;transition:all .2s;display:flex;position:relative}.pivot-zone-item[data-v-1753c56f]:hover{background:#f0f7ff;border-color:#1890ff}.pivot-zone-item[data-v-1753c56f]:active{cursor:grabbing}.pivot-zone-item .pivot-zone-item-remove[data-v-1753c56f]{color:#999;cursor:pointer;flex-shrink:0;margin-left:2px;font-size:10px}.pivot-zone-item .pivot-zone-item-remove[data-v-1753c56f]:hover{color:#ff4d4f}.pivot-value-item[data-v-1753c56f]{cursor:grab;-webkit-user-select:none;user-select:none;background:#fff7e6;border-color:#ffd591;flex-flow:column wrap;align-items:flex-start;width:100%;max-width:100%;display:flex}.pivot-value-item[data-v-1753c56f]:hover{background:#fff7e6;border-color:#fa8c16}.pivot-value-item[data-v-1753c56f]:active{cursor:grabbing}.pivot-value-item.drag-before[data-v-1753c56f]{box-shadow:0 -2px #1890ff}.pivot-value-item.drag-after[data-v-1753c56f]{box-shadow:0 2px #1890ff}.pivot-value-item[data-v-1753c56f] .ant-select,.pivot-value-item[data-v-1753c56f] .ant-input{flex:auto;min-width:70px}.pivot-drop-zone-values[data-v-1753c56f]{min-height:80px}.pivot-dim-group[data-v-1753c56f]{box-sizing:border-box;cursor:grab;-webkit-user-select:none;user-select:none;background:#f6ffed;border:1px solid #b7eb8f;border-radius:6px;flex-direction:column;gap:6px;width:100%;max-width:100%;padding:6px 8px;transition:all .2s;display:flex;position:relative}.pivot-dim-group[data-v-1753c56f]:hover{background:#f6ffed;border-color:#52c41a}.pivot-dim-group.drag-over[data-v-1753c56f]{border-color:#52c41a;box-shadow:inset 0 0 0 2px #52c41a}.pivot-dim-group.drop-group-before[data-v-1753c56f]:before,.pivot-dim-group.drop-group-after[data-v-1753c56f]:after{content:"";pointer-events:none;z-index:2;border-top:2px solid #1890ff;height:0;position:absolute;left:-2px;right:-2px;box-shadow:0 0 4px #1890ffb3}.pivot-dim-group.drop-group-before[data-v-1753c56f]:before{top:-4px}.pivot-dim-group.drop-group-after[data-v-1753c56f]:after{bottom:-4px}.pivot-dim-group .pivot-dim-group-header[data-v-1753c56f]{align-items:center;gap:6px;width:100%;display:flex}.pivot-dim-group .pivot-dim-group-header .pivot-group-label-input[data-v-1753c56f]{flex:auto;min-width:0}.pivot-dim-group .pivot-dim-group-header .pivot-group-remove[data-v-1753c56f]{color:#999;cursor:pointer;flex-shrink:0;font-size:11px}.pivot-dim-group .pivot-dim-group-header .pivot-group-remove[data-v-1753c56f]:hover{color:#ff4d4f}.pivot-dim-group .pivot-dim-group-fields[data-v-1753c56f]{flex-flow:column wrap;align-items:flex-start;gap:4px;width:100%;display:flex}.pivot-dim-group .pivot-field-chip[data-v-1753c56f]{cursor:grab;-webkit-user-select:none;user-select:none;background:#fff;border:1px solid #d9d9d9;border-radius:4px;align-items:center;gap:4px;width:100%;padding:2px 6px;font-size:12px;display:flex;position:relative}.pivot-dim-group .pivot-field-chip.drop-before[data-v-1753c56f]:before,.pivot-dim-group .pivot-field-chip.drop-after[data-v-1753c56f]:after{content:"";pointer-events:none;border-top:2px solid #1890ff;height:0;position:absolute;left:-1px;right:-1px;box-shadow:0 0 4px #1890ffb3}.pivot-dim-group .pivot-field-chip.drop-before[data-v-1753c56f]:before{top:-3px}.pivot-dim-group .pivot-field-chip.drop-after[data-v-1753c56f]:after{bottom:-3px}.pivot-dim-group .pivot-field-chip[data-v-1753c56f]:hover{border-color:#52c41a}.pivot-dim-group .pivot-field-chip .pivot-chip-label[data-v-1753c56f]{text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;overflow:hidden}.pivot-dim-group .pivot-field-chip .pivot-chip-remove[data-v-1753c56f]{color:#999;cursor:pointer;flex-shrink:0;font-size:10px}.pivot-dim-group .pivot-field-chip .pivot-chip-remove[data-v-1753c56f]:hover{color:#ff4d4f}.pivot-dim-group .pivot-field-chip[data-v-1753c56f] .ant-select{flex:auto;min-width:80px}.pivot-dim-group .pivot-sort-row[data-v-1753c56f]{border-top:1px dashed #d9d9d9;flex-wrap:wrap;align-items:center;gap:6px;width:100%;padding-top:6px;display:flex}.pivot-dim-group .pivot-sort-row .pivot-sort-label[data-v-1753c56f]{color:#999;flex-shrink:0;font-size:11px}.pivot-dim-group .pivot-sort-row[data-v-1753c56f] .ant-select{flex:0 auto;min-width:0}.pivot-options[data-v-1753c56f]{border-top:1px solid #f0f0f0;flex-direction:column;flex-shrink:0;gap:10px;padding:10px 0 4px;display:flex}.pivot-options .pivot-options-group[data-v-1753c56f]{flex-wrap:wrap;align-items:center;gap:8px 12px;display:flex}.pivot-options .pivot-options-group .pivot-options-label[data-v-1753c56f]{color:#666;flex-shrink:0;font-size:12px;font-weight:600}.pivot-options .pivot-options-group .pivot-option-switch[data-v-1753c56f]{color:#333;cursor:pointer;-webkit-user-select:none;user-select:none;align-items:center;gap:4px;font-size:12px;display:inline-flex}.pivot-options .pivot-options-group .pivot-option-switch span[data-v-1753c56f]{white-space:nowrap}.value-item-header[data-v-1753c56f]{flex-direction:row;justify-content:space-between;gap:6px;width:100%;display:flex}.value-item-content[data-v-1753c56f]{flex-direction:row;align-items:center;gap:6px;display:flex}.pivot-drop-zone-subexpr[data-v-1753c56f]{background:#fafaff}.subexpr-items[data-v-1753c56f]{align-items:stretch}.pivot-subexpr-card[data-v-1753c56f]{background:#fff;border:1px solid #efd6ff;border-radius:6px;flex-direction:column;gap:4px;min-width:220px;max-width:100%;padding:6px 10px;display:flex}.pivot-subexpr-card .subexpr-card-head[data-v-1753c56f]{justify-content:space-between;align-items:center;gap:8px;display:flex}.pivot-subexpr-card .subexpr-card-head .subexpr-card-name[data-v-1753c56f]{color:#722ed1;text-overflow:ellipsis;white-space:nowrap;font-size:13px;font-weight:600;overflow:hidden}.pivot-subexpr-card .subexpr-card-head .subexpr-card-actions[data-v-1753c56f]{flex-shrink:0;align-items:center;gap:2px;display:flex}.pivot-charts-config-wrapper[data-v-d3a9c5f9]{flex-direction:column;gap:12px;height:100%;display:flex}.pivot-charts-config-main[data-v-d3a9c5f9]{flex:1;gap:16px;min-height:0;display:flex}.pivot-field-list[data-v-d3a9c5f9]{border:1px solid #f0f0f0;border-radius:6px;flex-direction:column;flex-shrink:0;width:220px;padding:8px;display:flex;overflow:hidden}.pivot-field-list .pivot-section-title[data-v-d3a9c5f9]{color:#333;margin-bottom:8px;font-size:13px;font-weight:600}.pivot-field-list .pivot-field-pool[data-v-d3a9c5f9]{flex:1;min-height:0;overflow-y:auto}.pivot-field-list .pivot-field-item[data-v-d3a9c5f9]{cursor:grab;-webkit-user-select:none;user-select:none;border:1px solid #f0f0f0;border-radius:4px;align-items:center;gap:6px;margin-bottom:4px;padding:6px 8px;font-size:13px;transition:all .2s;display:flex}.pivot-field-list .pivot-field-item[data-v-d3a9c5f9]:hover{background:#f0f7ff;border-color:#1890ff}.pivot-field-list .pivot-field-item[data-v-d3a9c5f9]:active{cursor:grabbing}.pivot-field-list .pivot-field-item .pivot-field-icon[data-v-d3a9c5f9]{color:#1890ff;font-size:12px}.pivot-field-list .pivot-field-item .pivot-field-label[data-v-d3a9c5f9]{text-overflow:ellipsis;white-space:nowrap;flex:1;overflow:hidden}.pivot-field-list .pivot-field-item .pivot-field-tag[data-v-d3a9c5f9]{color:#fff;background:#1890ff;border-radius:8px;flex-shrink:0;padding:1px 6px;font-size:10px;line-height:16px}.pivot-field-list .pivot-field-group[data-v-d3a9c5f9]{cursor:default;background:#fafafa;font-weight:600}.pivot-field-list .pivot-field-group[data-v-d3a9c5f9]:hover{background:#fafafa;border-color:#f0f0f0}.pivot-field-list .pivot-field-group .pivot-field-icon[data-v-d3a9c5f9]{color:#bfbfbf}.pivot-field-list .pivot-field-branch-dot[data-v-d3a9c5f9]{background:#d9d9d9;border-radius:50%;width:8px;height:8px;display:inline-block}.pivot-field-list .pivot-field-empty[data-v-d3a9c5f9]{text-align:center;color:#999;padding:20px 0;font-size:12px}.pivot-drop-zones[data-v-d3a9c5f9]{flex-direction:column;flex:1;gap:12px;min-width:0;display:flex;overflow-y:auto}.pivot-drop-zone[data-v-d3a9c5f9]{border:2px dashed #d9d9d9;border-radius:6px;flex-shrink:0;min-height:80px;padding:8px;transition:all .2s}.pivot-drop-zone.drag-over[data-v-d3a9c5f9]{background:#f0f7ff;border-color:#1890ff}.pivot-drop-zone .pivot-zone-header[data-v-d3a9c5f9]{justify-content:space-between;align-items:center;margin-bottom:6px;display:flex}.pivot-drop-zone .pivot-zone-header .pivot-zone-title[data-v-d3a9c5f9]{color:#333;align-items:center;gap:4px;font-size:13px;font-weight:600;display:flex}.pivot-drop-zone .pivot-zone-header .pivot-zone-tip[data-v-d3a9c5f9]{color:#999;cursor:help;font-size:12px}.pivot-drop-zone .pivot-zone-items[data-v-d3a9c5f9]{flex-wrap:wrap;gap:6px;min-height:32px;display:flex}.pivot-drop-zone .pivot-zone-placeholder[data-v-d3a9c5f9]{color:#bbb;text-align:center;width:100%;padding:4px 8px;font-size:12px}.pivot-zone-item[data-v-d3a9c5f9]{cursor:grab;-webkit-user-select:none;user-select:none;box-sizing:border-box;background:#fafafa;border:1px solid #d9d9d9;border-radius:4px;align-items:center;gap:4px;max-width:100%;padding:4px 8px;font-size:12px;transition:all .2s;display:flex;position:relative}.pivot-zone-item[data-v-d3a9c5f9]:hover{background:#f0f7ff;border-color:#1890ff}.pivot-zone-item[data-v-d3a9c5f9]:active{cursor:grabbing}.pivot-zone-item .pivot-zone-item-label[data-v-d3a9c5f9]{text-overflow:ellipsis;white-space:nowrap;flex:0 auto;min-width:0;overflow:hidden}.pivot-zone-item .pivot-zone-item-remove[data-v-d3a9c5f9]{color:#999;cursor:pointer;flex-shrink:0;margin-left:2px;font-size:10px}.pivot-zone-item .pivot-zone-item-remove[data-v-d3a9c5f9]:hover{color:#ff4d4f}.pivot-value-item[data-v-d3a9c5f9]{cursor:grab;-webkit-user-select:none;user-select:none;background:#fff7e6;border-color:#ffd591;flex-flow:column wrap;align-items:flex-start;width:100%;max-width:100%;display:flex}.pivot-value-item[data-v-d3a9c5f9]:hover{background:#fff7e6;border-color:#fa8c16}.pivot-value-item[data-v-d3a9c5f9]:active{cursor:grabbing}.pivot-value-item.value-item-invalid[data-v-d3a9c5f9]{background:#fff1f0;border-color:#ff4d4f}.pivot-value-item.drag-before[data-v-d3a9c5f9]{box-shadow:0 -2px #1890ff}.pivot-value-item.drag-after[data-v-d3a9c5f9]{box-shadow:0 2px #1890ff}.pivot-value-item .pivot-zone-item-label[data-v-d3a9c5f9]{flex-shrink:0}.pivot-value-item[data-v-d3a9c5f9] .ant-select,.pivot-value-item[data-v-d3a9c5f9] .ant-input{flex:auto;min-width:70px}.pivot-drop-zone-values[data-v-d3a9c5f9]{min-height:80px}.pivot-dim-group[data-v-d3a9c5f9]{box-sizing:border-box;cursor:grab;-webkit-user-select:none;user-select:none;background:#f6ffed;border:1px solid #b7eb8f;border-radius:6px;flex-direction:column;gap:6px;width:100%;max-width:100%;padding:6px 8px;transition:all .2s;display:flex;position:relative}.pivot-dim-group[data-v-d3a9c5f9]:hover{background:#f6ffed;border-color:#52c41a}.pivot-dim-group.drag-over[data-v-d3a9c5f9]{border-color:#52c41a;box-shadow:inset 0 0 0 2px #52c41a}.pivot-dim-group.drop-group-before[data-v-d3a9c5f9]:before,.pivot-dim-group.drop-group-after[data-v-d3a9c5f9]:after{content:"";pointer-events:none;z-index:2;border-top:2px solid #1890ff;height:0;position:absolute;left:-2px;right:-2px;box-shadow:0 0 4px #1890ffb3}.pivot-dim-group.drop-group-before[data-v-d3a9c5f9]:before{top:-4px}.pivot-dim-group.drop-group-after[data-v-d3a9c5f9]:after{bottom:-4px}.pivot-dim-group .pivot-dim-group-header[data-v-d3a9c5f9]{align-items:center;gap:6px;width:100%;display:flex}.pivot-dim-group .pivot-dim-group-header .pivot-group-label-input[data-v-d3a9c5f9]{flex:auto;min-width:0}.pivot-dim-group .pivot-dim-group-header .pivot-group-remove[data-v-d3a9c5f9]{color:#999;cursor:pointer;flex-shrink:0;font-size:11px}.pivot-dim-group .pivot-dim-group-header .pivot-group-remove[data-v-d3a9c5f9]:hover{color:#ff4d4f}.pivot-dim-group .pivot-dim-group-fields[data-v-d3a9c5f9]{flex-flow:column wrap;align-items:flex-start;gap:4px;width:100%;display:flex}.pivot-dim-group .pivot-field-chip[data-v-d3a9c5f9]{cursor:grab;-webkit-user-select:none;user-select:none;background:#fff;border:1px solid #d9d9d9;border-radius:4px;align-items:center;gap:4px;width:100%;padding:2px 6px;font-size:12px;display:flex;position:relative}.pivot-dim-group .pivot-field-chip.drop-before[data-v-d3a9c5f9]:before,.pivot-dim-group .pivot-field-chip.drop-after[data-v-d3a9c5f9]:after{content:"";pointer-events:none;border-top:2px solid #1890ff;height:0;position:absolute;left:-1px;right:-1px;box-shadow:0 0 4px #1890ffb3}.pivot-dim-group .pivot-field-chip.drop-before[data-v-d3a9c5f9]:before{top:-3px}.pivot-dim-group .pivot-field-chip.drop-after[data-v-d3a9c5f9]:after{bottom:-3px}.pivot-dim-group .pivot-field-chip[data-v-d3a9c5f9]:hover{border-color:#52c41a}.pivot-dim-group .pivot-field-chip .pivot-chip-label[data-v-d3a9c5f9]{text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;overflow:hidden}.pivot-dim-group .pivot-field-chip .pivot-chip-remove[data-v-d3a9c5f9]{color:#999;cursor:pointer;flex-shrink:0;font-size:10px}.pivot-dim-group .pivot-field-chip .pivot-chip-remove[data-v-d3a9c5f9]:hover{color:#ff4d4f}.pivot-dim-group .pivot-field-chip[data-v-d3a9c5f9] .ant-select{flex:auto;min-width:80px}.pivot-dim-group .pivot-sort-row[data-v-d3a9c5f9]{border-top:1px dashed #d9d9d9;flex-wrap:wrap;align-items:center;gap:6px;width:100%;padding-top:6px;display:flex}.pivot-dim-group .pivot-sort-row .pivot-sort-label[data-v-d3a9c5f9]{color:#999;flex-shrink:0;font-size:11px}.pivot-dim-group .pivot-sort-row[data-v-d3a9c5f9] .ant-select{flex:0 auto;min-width:0}.pivot-options[data-v-d3a9c5f9]{border-top:1px solid #f0f0f0;flex-shrink:0;padding:8px 0}.value-item-header[data-v-d3a9c5f9]{flex-direction:row;justify-content:space-between;gap:6px;width:100%;display:flex}.value-item-content[data-v-d3a9c5f9]{flex-direction:row;align-items:center;gap:6px;display:flex}.pivot-drop-zone-subexpr[data-v-d3a9c5f9]{background:#fafaff}.subexpr-items[data-v-d3a9c5f9]{align-items:stretch}.pivot-subexpr-card[data-v-d3a9c5f9]{background:#fff;border:1px solid #efd6ff;border-radius:6px;flex-direction:column;gap:4px;min-width:220px;max-width:100%;padding:6px 10px;display:flex}.pivot-subexpr-card .subexpr-card-head[data-v-d3a9c5f9]{justify-content:space-between;align-items:center;gap:8px;display:flex}.pivot-subexpr-card .subexpr-card-head .subexpr-card-name[data-v-d3a9c5f9]{color:#722ed1;text-overflow:ellipsis;white-space:nowrap;font-size:13px;font-weight:600;overflow:hidden}.pivot-subexpr-card .subexpr-card-head .subexpr-card-actions[data-v-d3a9c5f9]{flex-shrink:0;align-items:center;gap:2px;display:flex}.view-manage-container[data-v-b431b3c2]{gap:16px;height:400px;display:flex;overflow-y:auto}.view-manage-container .view-section[data-v-b431b3c2]{border:1px solid #f0f0f0;border-radius:4px;flex:1;padding:8px}.view-manage-container .view-section .section-header[data-v-b431b3c2]{border-bottom:1px solid #f0f0f0;justify-content:space-between;align-items:center;margin-bottom:8px;padding-bottom:4px;display:flex}.view-manage-container .view-section .section-header .title[data-v-b431b3c2]{font-weight:700}.view-manage-container .view-section .section-header .header-actions[data-v-b431b3c2]{align-items:center;display:flex}.view-item-row[data-v-b431b3c2]{justify-content:space-between;align-items:center;width:100%;display:flex}.view-item-row .view-name[data-v-b431b3c2]{cursor:pointer;text-overflow:ellipsis;white-space:nowrap;flex:0 auto;padding:4px 0;overflow:hidden}.view-item-row .view-name[data-v-b431b3c2]:hover{color:#1890ff}.view-item-row .view-actions[data-v-b431b3c2]{opacity:0;gap:4px;transition:opacity .2s;display:flex}.view-item-row:hover .view-actions[data-v-b431b3c2]{opacity:1}.view-num[data-v-b431b3c2]{white-space:nowrap;display:inline-block}.vf-wrap[data-v-79177f5f]{gap:16px;height:100%;min-height:360px;display:flex}.vf-left[data-v-79177f5f]{border:1px solid #f0f0f0;border-radius:6px;flex-direction:column;flex-shrink:0;width:240px;padding:8px;display:flex;overflow:hidden}.vf-left .vf-section-title[data-v-79177f5f]{margin-bottom:8px;font-size:13px;font-weight:600}.vf-left .vf-field-search[data-v-79177f5f]{flex-shrink:0;margin-bottom:8px}.vf-left .vf-field-pool[data-v-79177f5f]{flex:1;min-height:0;overflow-y:auto}.vf-left .vf-field-item[data-v-79177f5f]{cursor:grab;-webkit-user-select:none;user-select:none;border:1px solid #f0f0f0;border-radius:4px;align-items:center;gap:6px;margin-bottom:4px;padding:6px 8px;font-size:13px;transition:all .2s;display:flex}.vf-left .vf-field-item[data-v-79177f5f]:hover{background:#f0f7ff;border-color:#1890ff}.vf-left .vf-field-item[data-v-79177f5f]:active{cursor:grabbing}.vf-left .vf-field-item .vf-field-icon[data-v-79177f5f]{color:#1890ff;font-size:12px}.vf-left .vf-field-item .vf-field-label[data-v-79177f5f]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.vf-left .vf-field-group[data-v-79177f5f]{cursor:default;background:#fafafa;font-weight:600}.vf-left .vf-field-group[data-v-79177f5f]:hover{background:#fafafa;border-color:#f0f0f0}.vf-left .vf-field-branch-dot[data-v-79177f5f]{background:#d9d9d9;border-radius:50%;flex-shrink:0;width:8px;height:8px;display:inline-block}.vf-left .vf-empty[data-v-79177f5f]{text-align:center;color:#999;padding:20px 0;font-size:12px}.vf-right[data-v-79177f5f]{flex-direction:column;flex:1;gap:12px;min-width:0;display:flex;overflow-y:auto}.vf-switch-row[data-v-79177f5f]{align-items:center;gap:8px;display:flex}.vf-switch-row .vf-switch-label[data-v-79177f5f]{color:#333;font-size:13px}.vf-single[data-v-79177f5f]{flex-direction:column;gap:8px;display:flex}.vf-single .vf-single-drop[data-v-79177f5f]{border:2px dashed #d9d9d9;border-radius:6px;align-items:center;gap:8px;min-height:40px;padding:0 10px;transition:all .2s;display:flex}.vf-single .vf-single-drop.drag-over[data-v-79177f5f]{background:#f0f7ff;border-color:#1890ff}.vf-single .vf-single-drop .vf-single-field[data-v-79177f5f]{color:#1890ff;font-size:13px;font-weight:600}.vf-single .vf-single-drop .vf-single-placeholder[data-v-79177f5f]{color:#bbb;font-size:12px}.vf-single .vf-single-drop .vf-single-remove[data-v-79177f5f]{color:#999;cursor:pointer}.vf-single .vf-single-drop .vf-single-remove[data-v-79177f5f]:hover{color:#ff4d4f}.vf-single .vf-single-select[data-v-79177f5f]{max-width:320px}.vf-single .vf-tip[data-v-79177f5f]{color:#999;font-size:12px}.vf-collapse[data-v-79177f5f]{background:0 0}.vf-collapse[data-v-79177f5f] .ant-collapse-item{background:#fff;border:1px solid #f0f0f0;border-radius:6px;margin-bottom:12px;overflow:hidden}.vf-collapse[data-v-79177f5f] .ant-collapse-header{font-size:13px;font-weight:600}.column-edit-view-wrapper[data-v-f4dad853]{height:100%;padding:0 8px}.tab-content-scroll[data-v-f4dad853]{height:100%;overflow-y:auto}[data-v-f4dad853] .ant-tabs,[data-v-f4dad853] .ant-tabs-content{height:100%}.ant-pro-table-list-toolbar-container[data-v-6b272373]{height:30px;padding:0 8px;line-height:30px}.ant-pro-table-list-toolbar-setting-item[data-v-6b272373]{font-size:14px}.current-view-name[data-v-6b272373]{text-overflow:ellipsis;white-space:nowrap;max-width:150px;display:inline-block;overflow:hidden}.current-view-container[data-v-6b272373]{gap:4px;height:100%;padding:2px;display:flex}.view-menu[data-v-6b272373]{cursor:pointer;background:#fafafa;border:1px solid #f0f0f0;border-radius:4px;padding:0 4px;font-size:12px;font-weight:400;line-height:26px}.popup-divider[data-v-d0b9bee1] .ant-divider-horizontal{margin-top:1px;margin-bottom:1px}.btn-wraper[data-v-d40ed682]{justify-content:flex-end;display:flex}.table-wraper[data-v-d40ed682]{height:100%;overflow:hidden}.modify-row-height[data-v-d40ed682] .surely-table-header,.modify-row-height[data-v-d40ed682] .surely-table-header-cell,.modify-row-height[data-v-d40ed682] .surely-table-summary{height:var(--row-heigth)!important}.popup-divider[data-v-d40ed682] .ant-divider-horizontal{margin-top:1px;margin-bottom:1px}.highlight[data-v-d40ed682]{background-color:#ffc069;padding:0}.my-card[data-v-25d1dc13],.my-card[data-v-52b515e0]{background-color:#f6f7f9;padding:20px}.card[data-v-d12629e4]{background:#f2f5f7;max-height:300px;overflow:auto}.condition-group[data-v-d12629e4]{padding:5px}.range[data-v-d12629e4]{margin-top:5px}.close-icon[data-v-d12629e4]{color:red;width:15px;margin-top:5px;margin-left:5px}.search-bar[data-v-d12629e4]{text-align:right;background:#f2f5f7}[data-v-d12629e4] .divider .ant-divider{margin:0}.num{display:inline-block}.dropdown{display:none}.table:hover .dropdown{display:inline-block}.table:hover .num{display:none}.pivot-table-wraper[data-v-ba30d240]{height:100%;overflow:hidden}.pivot-vtable-container[data-v-ba30d240]{width:100%;position:relative;overflow:hidden}.pivot-vtable-container .pivot-vtable-loading[data-v-ba30d240]{z-index:10;background:#fff9;flex-direction:column;justify-content:center;align-items:center;gap:16px;width:100%;height:100%;display:flex;position:absolute;top:0;left:0}.pivot-vtable-container .pivot-vtable-loading .pivot-progress[data-v-ba30d240]{width:200px}.pivot-vtable-container .pivot-empty-tip[data-v-ba30d240]{color:#999;justify-content:center;align-items:center;height:100%;font-size:14px;display:flex}.pivot-charts-wraper[data-v-3ca6164d]{height:100%;overflow:hidden}.pivot-echarts-container[data-v-3ca6164d]{width:100%;position:relative;overflow:hidden}.pivot-echarts-container .pivot-echarts-loading[data-v-3ca6164d]{z-index:10;background:#fff9;justify-content:center;align-items:center;width:100%;height:100%;display:flex;position:absolute;top:0;left:0}.pivot-echarts-container .echarts-dom[data-v-3ca6164d]{width:100%;height:100%}.pivot-echarts-container .pivot-empty-tip[data-v-3ca6164d]{color:#999;justify-content:center;align-items:center;height:100%;font-size:14px;display:flex}.full-layout[data-v-744a0d2d]{height:calc(100vh - var(--current-top,0px));margin:-24px -24px 0;position:relative;overflow:auto}.vue-grid-item{transition:left,top,right}.vue-grid-item.no-touch{-ms-touch-action:none;touch-action:none}.vue-grid-item.cssTransforms{transition-property:transform;left:0;right:auto}.vue-grid-item.cssTransforms.render-rtl{left:auto;right:0}.vue-grid-item.resizing{z-index:3;opacity:.6}.vue-grid-item.vue-draggable-dragging{z-index:3;transition:none}.vue-grid-item.vue-grid-placeholder{z-index:2;-webkit-user-select:none;user-select:none;-o-user-select:none;background:pink;transition-duration:.1s}.vue-grid-item>.vue-resizable-handle{box-sizing:border-box;cursor:se-resize;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pg08IS0tIEdlbmVyYXRvcjogQWRvYmUgRmlyZXdvcmtzIENTNiwgRXhwb3J0IFNWRyBFeHRlbnNpb24gYnkgQWFyb24gQmVhbGwgKGh0dHA6Ly9maXJld29ya3MuYWJlYWxsLmNvbSkgLiBWZXJzaW9uOiAwLjYuMSAgLS0+DTwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DTxzdmcgaWQ9IlVudGl0bGVkLVBhZ2UlMjAxIiB2aWV3Qm94PSIwIDAgNiA2IiBzdHlsZT0iYmFja2dyb3VuZC1jb2xvcjojZmZmZmZmMDAiIHZlcnNpb249IjEuMSINCXhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbDpzcGFjZT0icHJlc2VydmUiDQl4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjZweCIgaGVpZ2h0PSI2cHgiDT4NCTxnIG9wYWNpdHk9IjAuMzAyIj4NCQk8cGF0aCBkPSJNIDYgNiBMIDAgNiBMIDAgNC4yIEwgNCA0LjIgTCA0LjIgNC4yIEwgNC4yIDAgTCA2IDAgTCA2IDYgTCA2IDYgWiIgZmlsbD0iIzAwMDAwMCIvPg0JPC9nPg08L3N2Zz4=) 100% 100% no-repeat content-box border-box;width:20px;height:20px;padding:0 3px 3px 0;position:absolute;bottom:0;right:0}.vue-grid-item>.vue-rtl-resizable-handle{cursor:sw-resize;background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAuMDAwMDAwMDAwMDAwMDAyIiBoZWlnaHQ9IjEwLjAwMDAwMDAwMDAwMDAwMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KIDwhLS0gQ3JlYXRlZCB3aXRoIE1ldGhvZCBEcmF3IC0gaHR0cDovL2dpdGh1Yi5jb20vZHVvcGl4ZWwvTWV0aG9kLURyYXcvIC0tPgogPGc+CiAgPHRpdGxlPmJhY2tncm91bmQ8L3RpdGxlPgogIDxyZWN0IGZpbGw9Im5vbmUiIGlkPSJjYW52YXNfYmFja2dyb3VuZCIgaGVpZ2h0PSIxMiIgd2lkdGg9IjEyIiB5PSItMSIgeD0iLTEiLz4KICA8ZyBkaXNwbGF5PSJub25lIiBvdmVyZmxvdz0idmlzaWJsZSIgeT0iMCIgeD0iMCIgaGVpZ2h0PSIxMDAlIiB3aWR0aD0iMTAwJSIgaWQ9ImNhbnZhc0dyaWQiPgogICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWRwYXR0ZXJuKSIgc3Ryb2tlLXdpZHRoPSIwIiB5PSIwIiB4PSIwIiBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIi8+CiAgPC9nPgogPC9nPgogPGc+CiAgPHRpdGxlPkxheWVyIDE8L3RpdGxlPgogIDxsaW5lIGNhbnZhcz0iI2ZmZmZmZiIgY2FudmFzLW9wYWNpdHk9IjEiIHN0cm9rZS1saW5lY2FwPSJ1bmRlZmluZWQiIHN0cm9rZS1saW5lam9pbj0idW5kZWZpbmVkIiBpZD0ic3ZnXzEiIHkyPSItNzAuMTc4NDA3IiB4Mj0iMTI0LjQ2NDA3NSIgeTE9Ii0zOC4zOTI3MzciIHgxPSIxNDQuODIxMjg5IiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlPSIjMDAwIiBmaWxsPSJub25lIi8+CiAgPGxpbmUgc3Ryb2tlPSIjNjY2NjY2IiBzdHJva2UtbGluZWNhcD0idW5kZWZpbmVkIiBzdHJva2UtbGluZWpvaW49InVuZGVmaW5lZCIgaWQ9InN2Z181IiB5Mj0iOS4xMDY5NTciIHgyPSIwLjk0NzI0NyIgeTE9Ii0wLjAxODEyOCIgeDE9IjAuOTQ3MjQ3IiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiLz4KICA8bGluZSBzdHJva2UtbGluZWNhcD0idW5kZWZpbmVkIiBzdHJva2UtbGluZWpvaW49InVuZGVmaW5lZCIgaWQ9InN2Z183IiB5Mj0iOSIgeDI9IjEwLjA3MzUyOSIgeTE9IjkiIHgxPSItMC42NTU2NCIgc3Ryb2tlLXdpZHRoPSIwIiBzdHJva2U9IiM2NjY2NjYiIGZpbGw9Im5vbmUiLz4KIDwvZz4KPC9zdmc+) 0 100% no-repeat content-box border-box;padding-left:3px;bottom:0;left:0;right:auto}.vue-grid-item.disable-userselect{-webkit-user-select:none;user-select:none}.vue-grid-layout,.item[data-v-668f099b]{position:relative}.border[data-v-668f099b]{border:1px solid #ccc}.item-content[data-v-668f099b]{background:#fff;border-radius:2px;width:100%;height:100%;overflow:hidden}.grid-page-wraper{width:100%;height:100%;padding:5px}.grid-page-content{border-radius:4px;width:100%;height:100%}.view-item-row[data-v-47b7eabd]{cursor:pointer;justify-content:space-between;align-items:center;width:100%;display:flex}.view-item-row .view-name-container[data-v-47b7eabd]{flex:1;align-items:center;min-width:0;padding:4px 0;display:flex}.view-item-row .view-name-container .view-name[data-v-47b7eabd]{text-overflow:ellipsis;white-space:nowrap;flex:0 auto;overflow:hidden}.view-item-row .view-name-container .view-name[data-v-47b7eabd]:hover{color:#1890ff}.view-item-row .view-name-container .view-default-tag[data-v-47b7eabd]{flex:none;margin-left:4px}.view-item-container[data-v-47b7eabd]{position:relative}.view-item-container .view-actions[data-v-47b7eabd]{opacity:0;background:#f9f9f9;border-radius:4px;align-items:center;gap:4px;height:30px;transition:opacity .2s;display:flex;position:absolute;top:0;right:0}.view-item-container .view-actions.current[data-v-47b7eabd]{background:#b9defd}.view-item-container:hover .view-actions[data-v-47b7eabd]{opacity:1}.collapses .ant-collapse-item .ant-collapse-content .ant-collapse-content-box{padding:0}.config-container[data-v-681bc6f1]{background:#fff;flex-direction:column;justify-content:space-between;height:100%;display:flex}.config-container[data-v-681bc6f1] .ant-tabs{flex:1;padding:0;overflow:hidden}.config-container[data-v-681bc6f1] .ant-tabs .ant-tabs-content-top{height:100%}.config-container[data-v-681bc6f1] .ant-tabs .ant-tabs-nav{padding:0 10px}.left-extra[data-v-681bc6f1]{margin-right:10px}[data-v-681bc6f1] .ant-tabs-nav{margin-bottom:0}.global-filter-loading[data-v-a7f4228e]{z-index:3000;background:#ffffffa6;flex-direction:column;justify-content:center;align-items:center;gap:16px;display:flex;position:fixed;inset:0}.global-filter-loading__text[data-v-a7f4228e]{color:#333;font-size:14px}.table-wrapper[data-v-4fd73b2f]{flex-direction:column;flex:1;height:100%;display:flex;overflow:hidden}.toggle-button[data-v-4fd73b2f]{cursor:pointer;height:46px;font-size:20px;line-height:33px}.toggle-button[data-v-4fd73b2f]:hover{color:#1890ff;filter:drop-shadow(2px 2px 2px #bddfff)}.filter-message[data-v-4fd73b2f]{gap:14px;display:flex}.pri-page[data-v-76801f0e]{height:100%;padding-top:4px;padding-left:4px;padding-right:4px}.pri-wrapper[data-v-76801f0e]{flex-direction:row;justify-content:space-between;gap:4px;height:100%;display:flex;overflow:hidden}.left-slide-outer[data-v-76801f0e]{background-color:#fff;width:220px;height:100%;overflow:hidden}.left-wrapper[data-v-76801f0e]{background-color:#fff;width:220px;height:100%;padding-left:4px;padding-right:4px;overflow:hidden}.left-slide-enter-active[data-v-76801f0e],.left-slide-leave-active[data-v-76801f0e]{transition:width .3s,opacity .3s;overflow:hidden}.left-slide-enter-from[data-v-76801f0e],.left-slide-leave-to[data-v-76801f0e]{opacity:0;width:0}.left-slide-leave-from[data-v-76801f0e],.left-slide-enter-to[data-v-76801f0e]{opacity:1;width:220px}.right-wrapper[data-v-76801f0e]{background-color:#fff;flex-direction:row;flex:1;justify-content:space-between;height:100%;display:flex;overflow:hidden}.left-space[data-v-76801f0e]{width:0;transition:width .2s}.left-space.setting-open[data-v-76801f0e]{width:calc(var(--drawer_width) - var(--x))}.right-space[data-v-76801f0e]{width:0;transition:width .2s}.right-space.detail-open[data-v-76801f0e]{width:calc(var(--detail_width))}.table-modal[data-v-9a04fe22]{flex-direction:column;gap:8px;display:flex}.table-modal .header[data-v-9a04fe22]{padding:4px}.field-extra[data-v-02b9ac99]{color:#999;margin-top:2px;font-size:12px;line-height:1.4}.field-hint[data-v-0c465e84]{color:#999;margin-bottom:8px;font-size:12px}.pl-item[data-v-0c465e84]{align-items:flex-start;gap:8px;margin-bottom:8px;display:flex}.pl-subtitle[data-v-0c465e84]{color:#000000d9;margin:4px 0 8px;font-size:13px;font-weight:500}.field-card[data-v-0c465e84]{margin-bottom:12px}.import-col-toolbar[data-v-0c465e84]{align-items:center;gap:8px;margin-bottom:12px;display:flex}.import-col-label[data-v-0c465e84]{color:#000000d9;font-size:13px}.modal-footer[data-v-0c465e84]{flex-direction:column;display:flex}.footer-error[data-v-0c465e84]{margin-bottom:8px}.footer-buttons[data-v-0c465e84]{justify-content:flex-end;gap:8px;display:flex}.field-name[data-v-0c465e84]{color:#1890ff;font-weight:500}.qb-group[data-v-1c5e0123]{border-left:2px solid #f0f0f0;padding-left:8px}.qb-group-head[data-v-1c5e0123]{gap:8px;margin-bottom:8px;display:flex}.qb-group-body[data-v-1c5e0123]{flex-direction:column;gap:6px;display:flex}.qb-rule[data-v-1c5e0123]{align-items:center;gap:8px;display:flex}.qb-subgroup[data-v-1c5e0123]{border-left:2px dashed #f0f0f0;padding:6px 0 6px 8px}.qb-group[data-v-1f8cf6f5]{border-left:2px solid #f0f0f0;padding-left:8px}.qb-group-head[data-v-1f8cf6f5]{gap:8px;margin-bottom:8px;display:flex}.qb-group-body[data-v-1f8cf6f5]{flex-direction:column;gap:6px;display:flex}.qb-rule[data-v-1f8cf6f5]{align-items:center;gap:8px;display:flex}.qb-subgroup[data-v-1f8cf6f5]{border-left:2px dashed #f0f0f0;padding:6px 0 6px 8px}.conditions-scroll[data-v-1f8cf6f5]{max-height:200px;padding-right:8px;overflow-y:auto}.time-range-row[data-v-1f8cf6f5]{align-items:center;gap:8px;margin-top:8px;display:flex}.field-label[data-v-1f8cf6f5]{color:#000000d9;font-weight:500}.mark-container{color:#2d3748;overflow-wrap:break-word;word-break:break-word;box-sizing:border-box;background-color:#fff;margin:0 auto;padding:1rem 0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;font-size:16px;line-height:1.6}.mark-container h1,.mark-container h2,.mark-container h3,.mark-container h4,.mark-container h5,.mark-container h6{margin-top:2.5rem;margin-bottom:1.5rem;padding-bottom:.5rem;font-weight:700;position:relative}.mark-container h1{color:#4299e1;font-size:2.25rem}.mark-container h2{border-bottom:2px solid #e2e8f0;font-size:1.75rem}.mark-container h3{color:#4299e1;font-size:1.5rem}.mark-container h4{color:#4299e1;font-size:1.25rem}.mark-container h5,.mark-container h6{color:#4299e1;font-size:1rem}.mark-container p{color:#4a5568;margin-bottom:1.25rem}.mark-container ul,.mark-container ol{margin-bottom:1.25rem;padding-left:2rem}.mark-container li,.mark-container li>p{margin-bottom:.5rem}.mark-container pre{background-color:#f0f4f8;border-radius:.5rem;margin:1.5rem 0;padding:1.5rem;font-family:Fira Code,Consolas,monospace;font-size:.95rem;line-height:1.5;overflow-x:auto;box-shadow:0 4px 6px -1px #0000001a}.mark-container pre code{font-size:inherit;line-height:inherit;color:inherit;background-color:#0000;padding:0}.mark-container blockquote{color:#4a5568;background-color:#4299e10d;border-left:.25rem solid #4299e1;border-radius:0 .5rem .5rem 0;margin:1.5rem 0;padding:1rem 1.5rem}.mark-container table{border-collapse:collapse;width:100%;margin:1.5rem 0}.mark-container th,.mark-container td{text-align:left;border:1px solid #e2e8f0;padding:.75rem 1rem}.mark-container th{background-color:#f8fafc;font-weight:600}.mark-container a{color:#4299e1;text-decoration:none}.mark-container a:hover{color:#2b6cb0;text-decoration:underline}.mark-container hr{border:0;border-top:1px solid #e2e8f0;margin:2rem 0}.mark-container code{color:#2d3748;background-color:#f0f4f8;border-radius:.25rem;padding:.2rem .4rem;font-family:Fira Code,Consolas,monospace;font-size:.95rem}.mark-container strong{color:#4299e1;font-weight:600}@media (width<=768px){.mark-container{padding:1.5rem;font-size:15px}.mark-container h1{font-size:1.8rem}.mark-container h2{font-size:1.4rem}}.mark-container .mark-code-block{position:relative}.mark-container .md-copy-btn{z-index:2;color:#4a5568;cursor:pointer;-webkit-user-select:none;user-select:none;background:#fff;border:1px solid #cbd5e0;border-radius:.25rem;padding:2px 10px;font-size:12px;line-height:1.6;position:absolute;top:.6rem;right:.6rem}.mark-container .md-copy-btn:hover{color:#4299e1;border-color:#4299e1}.mark-container .md-copy-btn:active{background:#f0f4f8}.batch-toolbar[data-v-aecb1aff]{align-items:center;gap:8px;margin-bottom:12px;display:flex}.batch-tip[data-v-aecb1aff]{color:#999;margin-left:auto;font-size:12px}
|
|
1
|
+
*,:before,:after,::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 #0000;--un-ring-shadow:0 0 #0000;--un-shadow-inset: ;--un-shadow:0 0 #0000;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:#93c5fd80;--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }.container{width:100%}@media (width>=640px){.container{max-width:640px}}@media (width>=768px){.container{max-width:768px}}@media (width>=1024px){.container{max-width:1024px}}@media (width>=1280px){.container{max-width:1280px}}@media (width>=1536px){.container{max-width:1536px}}.visible{visibility:visible}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.sticky{position:sticky}.static{position:static}.grid{display:grid}.inline{display:inline}.block{display:block}.inline-block{display:inline-block}.contents{display:contents}.hidden{display:none}.h1{height:.25rem}.h2{height:.5rem}.h3{height:.75rem}.h4{height:1rem}.h6{height:1.5rem}.flex{display:flex}.inline-flex{display:inline-flex}.flex-shrink{flex-shrink:1}.grow{flex-grow:1}.flex-wrap{flex-wrap:wrap}.table{display:table}.border-collapse{border-collapse:collapse}.transform{transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.resize{resize:both}.break-all{word-break:break-all}.b,.border{border-width:1px}.px{padding-left:1rem;padding-right:1rem}.pie{padding-inline-end:1rem}.indent{text-indent:1.5rem}.italic{font-style:italic}.underline{text-decoration-line:underline}.tab{tab-size:4}.shadow{--un-shadow:0px 2px 14px 0px var(--un-shadow-color,#00000014);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow)}.outline{outline-style:solid}.filter{filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter,backdrop-filter;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease{transition-timing-function:cubic-bezier(.4,0,.2,1)}.remote-select-pro[data-v-eb9dcae8]{flex-wrap:nowrap;align-items:flex-start;gap:4px;display:flex}.ant-input-group.ant-input-group-compact .remote-select-pro[data-v-eb9dcae8]{display:flex}.ant-form-inline .ant-input-group.ant-input-group-compact .remote-select-pro[data-v-eb9dcae8]{display:inline-flex}.table-search-icon[data-v-eb9dcae8]{color:#000;font-size:17px}.json-str-group[data-v-d718bf4e]{flex-direction:column;align-items:flex-end;gap:4px;width:100%;display:inline-flex}.attribute-table .ant-table-footer{padding:5px;padding:5px}.ant-calendar-picker[data-v-7666b6e4]{width:100%!important}.CodeMirror{font-family:Monaco,monospace;height:300px!important;font-size:15px!important;line-height:1.4!important}.CodeMirror-lines{min-height:1px;padding:4px 0}.CodeMirror-hints{background:#2d2d2d;border:1px solid #555;border-radius:3px;max-height:20em;margin:0 0 0 5px;padding:2px;font-family:monospace;font-size:100%;list-style:none;position:absolute;overflow:hidden auto;box-shadow:2px 3px 5px #0003;z-index:9999!important}.CodeMirror-hint{white-space:pre;color:#fff;cursor:pointer;border-radius:2px;margin:0;padding:0 4px}li.CodeMirror-hint-active{color:#fff;background:#08f}.head_btn[data-v-bcfee82b]{flex-wrap:wrap;justify-content:end;gap:4px;margin-bottom:4px;display:flex}:root,:host{--w-e-textarea-bg-color:#fff;--w-e-textarea-color:#333;--w-e-textarea-border-color:#ccc;--w-e-textarea-slight-border-color:#e8e8e8;--w-e-textarea-slight-color:#d4d4d4;--w-e-textarea-slight-bg-color:#f5f2f0;--w-e-textarea-selected-border-color:#b4d5ff;--w-e-textarea-handler-bg-color:#4290f7;--w-e-toolbar-color:#595959;--w-e-toolbar-bg-color:#fff;--w-e-toolbar-active-color:#333;--w-e-toolbar-active-bg-color:#f1f1f1;--w-e-toolbar-disabled-color:#999;--w-e-toolbar-border-color:#e8e8e8;--w-e-modal-button-bg-color:#fafafa;--w-e-modal-button-border-color:#d9d9d9}.w-e-text-container *,.w-e-toolbar *{box-sizing:border-box;outline:none;margin:0;padding:0}.w-e-text-container blockquote,.w-e-text-container li,.w-e-text-container p,.w-e-text-container td,.w-e-text-container th,.w-e-toolbar *{line-height:1.5}.w-e-text-container{background-color:var(--w-e-textarea-bg-color);color:var(--w-e-textarea-color);height:100%;position:relative}.w-e-text-container .w-e-scroll{-webkit-overflow-scrolling:touch;height:100%}.w-e-text-container [data-slate-editor]{word-wrap:break-word;white-space:pre-wrap;border-top:1px solid #0000;outline:0;min-height:100%;padding:0 10px}.w-e-text-container [data-slate-editor] p{margin:15px 0}.w-e-text-container [data-slate-editor] h1,.w-e-text-container [data-slate-editor] h2,.w-e-text-container [data-slate-editor] h3,.w-e-text-container [data-slate-editor] h4,.w-e-text-container [data-slate-editor] h5{margin:20px 0}.w-e-text-container [data-slate-editor] img{cursor:default;min-width:20px;max-width:100%;min-height:20px;display:inline!important}.w-e-text-container [data-slate-editor] span{text-indent:0}.w-e-text-container [data-slate-editor] [data-selected=true]{box-shadow:0 0 0 2px var(--w-e-textarea-selected-border-color)}.w-e-text-placeholder{width:90%;font-style:italic;top:17px;left:10px}.w-e-max-length-info,.w-e-text-placeholder{color:var(--w-e-textarea-slight-color);pointer-events:none;-webkit-user-select:none;user-select:none;position:absolute}.w-e-max-length-info{bottom:.5em;right:1em}.w-e-bar{background-color:var(--w-e-toolbar-bg-color);color:var(--w-e-toolbar-color);padding:0 5px;font-size:14px}.w-e-bar svg{fill:var(--w-e-toolbar-color);width:14px;height:14px}.w-e-bar-show{display:flex}.w-e-bar-hidden{display:none}.w-e-hover-bar{border:1px solid var(--w-e-toolbar-border-color);border-radius:3px;position:absolute;box-shadow:0 2px 5px #0000001f}.w-e-toolbar{flex-wrap:wrap;position:relative}.w-e-bar-divider{background-color:var(--w-e-toolbar-border-color);width:1px;height:40px;margin:0 5px;display:inline-flex}.w-e-bar-item{text-align:center;height:40px;padding:4px;display:flex;position:relative}.w-e-bar-item,.w-e-bar-item button{justify-content:center;align-items:center}.w-e-bar-item button{color:var(--w-e-toolbar-color);cursor:pointer;white-space:nowrap;background:0 0;border:none;height:32px;padding:0 8px;display:inline-flex;overflow:hidden}.w-e-bar-item button:hover{background-color:var(--w-e-toolbar-active-bg-color);color:var(--w-e-toolbar-active-color)}.w-e-bar-item button .title{margin-left:5px}.w-e-bar-item .active{background-color:var(--w-e-toolbar-active-bg-color);color:var(--w-e-toolbar-active-color)}.w-e-bar-item .disabled{color:var(--w-e-toolbar-disabled-color);cursor:not-allowed}.w-e-bar-item .disabled svg{fill:var(--w-e-toolbar-disabled-color)}.w-e-bar-item .disabled:hover{background-color:var(--w-e-toolbar-bg-color);color:var(--w-e-toolbar-disabled-color)}.w-e-bar-item .disabled:hover svg{fill:var(--w-e-toolbar-disabled-color)}.w-e-menu-tooltip-v5:before{background-color:var(--w-e-toolbar-active-color);color:var(--w-e-toolbar-bg-color);content:attr(data-tooltip);opacity:0;text-align:center;visibility:hidden;white-space:pre;z-index:1;border-radius:5px;padding:5px 10px;font-size:.75em;transition:opacity .6s;position:absolute;top:40px}.w-e-menu-tooltip-v5:after{border:5px solid #0000;border-bottom:5px solid var(--w-e-toolbar-active-color);content:"";opacity:0;visibility:hidden;transition:opacity .6s;position:absolute;top:30px}.w-e-menu-tooltip-v5:hover:after,.w-e-menu-tooltip-v5:hover:before{opacity:1;visibility:visible}.w-e-menu-tooltip-v5.tooltip-right:before{top:10px;left:100%}.w-e-menu-tooltip-v5.tooltip-right:after{border-bottom-color:#0000;border-left-color:#0000;border-right-color:var(--w-e-toolbar-active-color);border-top-color:#0000;margin-left:-10px;top:16px;left:100%}.w-e-bar-item-group .w-e-bar-item-menus-container{background-color:var(--w-e-toolbar-bg-color);border:1px solid var(--w-e-toolbar-border-color);z-index:1;border-radius:3px;margin-top:40px;display:none;position:absolute;top:0;left:0;box-shadow:0 2px 10px #0000001f}.w-e-bar-item-group:hover .w-e-bar-item-menus-container{display:block}.w-e-select-list{background-color:var(--w-e-toolbar-bg-color);border:1px solid var(--w-e-toolbar-border-color);z-index:1;border-radius:3px;min-width:100px;max-height:350px;margin-top:40px;position:absolute;top:0;left:0;overflow-y:auto;box-shadow:0 2px 10px #0000001f}.w-e-select-list ul{line-height:1;list-style:none}.w-e-select-list ul .selected{background-color:var(--w-e-toolbar-active-bg-color)}.w-e-select-list ul li{cursor:pointer;text-align:left;white-space:nowrap;padding:7px 0 7px 25px;position:relative}.w-e-select-list ul li:hover{background-color:var(--w-e-toolbar-active-bg-color)}.w-e-select-list ul li svg{margin-top:-7px;margin-left:5px;position:absolute;top:50%;left:0}.w-e-bar-bottom .w-e-select-list{bottom:0;top:inherit;margin-top:0;margin-bottom:40px}.w-e-drop-panel{background-color:var(--w-e-toolbar-bg-color);border:1px solid var(--w-e-toolbar-border-color);z-index:1;border-radius:3px;min-width:200px;margin-top:40px;padding:10px;position:absolute;top:0;box-shadow:0 2px 10px #0000001f}.w-e-bar-bottom .w-e-drop-panel{bottom:0;top:inherit;margin-top:0;margin-bottom:40px}.w-e-modal{background-color:var(--w-e-toolbar-bg-color);border:1px solid var(--w-e-toolbar-border-color);color:var(--w-e-toolbar-color);text-align:left;z-index:1;border-radius:3px;min-width:100px;min-height:40px;padding:20px 15px 0;font-size:14px;position:absolute;box-shadow:0 2px 10px #0000001f}.w-e-modal .btn-close{cursor:pointer;padding:5px;line-height:1;position:absolute;top:7px;right:8px}.w-e-modal .btn-close svg{fill:var(--w-e-toolbar-color);width:10px;height:10px}.w-e-modal .babel-container{margin-bottom:15px;display:block}.w-e-modal .babel-container span{margin-bottom:10px;display:block}.w-e-modal .button-container{margin-bottom:15px}.w-e-modal button{background-color:var(--w-e-modal-button-bg-color);border:1px solid var(--w-e-modal-button-border-color);color:var(--w-e-toolbar-color);cursor:pointer;text-align:center;touch-action:manipulation;-webkit-user-select:none;user-select:none;white-space:nowrap;border-radius:4px;height:32px;padding:4.5px 15px;font-weight:400;transition:all .3s cubic-bezier(.645,.045,.355,1)}.w-e-modal input[type=number],.w-e-modal input[type=text],.w-e-modal textarea{font-feature-settings:"tnum";background-color:var(--w-e-toolbar-bg-color);border:1px solid var(--w-e-modal-button-border-color);color:var(--w-e-toolbar-color);font-variant:tabular-nums;border-radius:4px;width:100%;padding:4.5px 11px;transition:all .3s}.w-e-modal textarea{min-height:60px}body .w-e-modal,body .w-e-modal *{box-sizing:border-box}.w-e-progress-bar{background-color:var(--w-e-textarea-handler-bg-color);width:0;height:1px;transition:width .3s;position:absolute}.w-e-full-screen-container{position:fixed;flex-direction:column!important;width:100%!important;height:100%!important;margin:0!important;padding:0!important;display:flex!important;inset:0!important}.w-e-full-screen-container [data-w-e-textarea=true]{flex:1!important}.w-e-text-container [data-slate-editor] code{background-color:var(--w-e-textarea-slight-bg-color);border-radius:3px;padding:3px;font-family:monospace}.w-e-panel-content-color{text-align:left;width:230px;list-style:none}.w-e-panel-content-color li{border:1px solid var(--w-e-toolbar-bg-color);cursor:pointer;border-radius:3px;padding:2px;display:inline-block}.w-e-panel-content-color li:hover{border-color:var(--w-e-toolbar-color)}.w-e-panel-content-color li .color-block{border:1px solid var(--w-e-toolbar-border-color);border-radius:3px;width:17px;height:17px}.w-e-panel-content-color .active{border-color:var(--w-e-toolbar-color)}.w-e-panel-content-color .clear{width:100%;margin-bottom:5px;line-height:1.5}.w-e-panel-content-color .clear svg{width:16px;height:16px;margin-bottom:-4px}.w-e-text-container [data-slate-editor] blockquote{background-color:var(--w-e-textarea-slight-bg-color);border-left:8px solid var(--w-e-textarea-selected-border-color);margin:10px 0;padding:10px;font-size:100%;line-height:1.5;display:block}.w-e-panel-content-emotion{text-align:left;width:300px;font-size:20px;list-style:none}.w-e-panel-content-emotion li{cursor:pointer;border-radius:3px;padding:0 5px;display:inline-block}.w-e-panel-content-emotion li:hover{background-color:var(--w-e-textarea-slight-bg-color)}.w-e-textarea-divider{border-radius:3px;margin:20px auto;padding:20px}.w-e-textarea-divider hr{background-color:var(--w-e-textarea-border-color);border:0;height:1px;display:block}.w-e-text-container [data-slate-editor] pre>code{background-color:var(--w-e-textarea-slight-bg-color);border:1px solid var(--w-e-textarea-slight-border-color);text-indent:0;border-radius:4px;padding:10px;font-size:14px;display:block}.w-e-text-container [data-slate-editor] .w-e-image-container{margin:0 3px;display:inline-block}.w-e-text-container [data-slate-editor] .w-e-image-container:hover{box-shadow:0 0 0 2px var(--w-e-textarea-selected-border-color)}.w-e-text-container [data-slate-editor] .w-e-selected-image-container{position:relative;overflow:hidden}.w-e-text-container [data-slate-editor] .w-e-selected-image-container .w-e-image-dragger{background-color:var(--w-e-textarea-handler-bg-color);width:7px;height:7px;position:absolute}.w-e-text-container [data-slate-editor] .w-e-selected-image-container .left-top{cursor:nwse-resize;top:0;left:0}.w-e-text-container [data-slate-editor] .w-e-selected-image-container .right-top{cursor:nesw-resize;top:0;right:0}.w-e-text-container [data-slate-editor] .w-e-selected-image-container .left-bottom{cursor:nesw-resize;bottom:0;left:0}.w-e-text-container [data-slate-editor] .w-e-selected-image-container .right-bottom{cursor:nwse-resize;bottom:0;right:0}.w-e-text-container [data-slate-editor] .w-e-selected-image-container:hover,.w-e-text-container [contenteditable=false] .w-e-image-container:hover{box-shadow:none}.w-e-text-container [data-slate-editor] .table-container{border:1px dashed var(--w-e-textarea-border-color);border-radius:5px;width:100%;margin-top:10px;padding:10px;overflow-x:auto}.w-e-text-container [data-slate-editor] table{border-collapse:collapse}.w-e-text-container [data-slate-editor] table td,.w-e-text-container [data-slate-editor] table th{border:1px solid var(--w-e-textarea-border-color);text-align:left;min-width:30px;padding:3px 5px;line-height:1.5}.w-e-text-container [data-slate-editor] table th{background-color:var(--w-e-textarea-slight-bg-color);text-align:center;font-weight:700}.w-e-panel-content-table{background-color:var(--w-e-toolbar-bg-color)}.w-e-panel-content-table table{border-collapse:collapse}.w-e-panel-content-table td{border:1px solid var(--w-e-toolbar-border-color);cursor:pointer;width:20px;height:15px;padding:3px 5px}.w-e-panel-content-table td.active{background-color:var(--w-e-toolbar-active-bg-color)}.w-e-textarea-video-container{border:1px dashed var(--w-e-textarea-border-color);text-align:center;background-image:linear-gradient(45deg,#eee 25%,#0000 0 75%,#eee 0,#eee),linear-gradient(45deg,#eee 25%,#fff 0 75%,#eee 0,#eee);background-position:0 0,10px 10px;background-size:20px 20px;border-radius:5px;margin:10px auto 0;padding:10px 0}.w-e-text-container [data-slate-editor] pre>code{word-wrap:normal;-webkit-hyphens:none;hyphens:none;tab-size:4;text-align:left;text-shadow:0 1px #fff;white-space:pre;word-break:normal;word-spacing:normal;margin:.5em 0;padding:1em;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;line-height:1.5;overflow:auto}.w-e-text-container [data-slate-editor] pre>code .token.cdata,.w-e-text-container [data-slate-editor] pre>code .token.comment,.w-e-text-container [data-slate-editor] pre>code .token.doctype,.w-e-text-container [data-slate-editor] pre>code .token.prolog{color:#708090}.w-e-text-container [data-slate-editor] pre>code .token.punctuation{color:#999}.w-e-text-container [data-slate-editor] pre>code .token.namespace{opacity:.7}.w-e-text-container [data-slate-editor] pre>code .token.boolean,.w-e-text-container [data-slate-editor] pre>code .token.constant,.w-e-text-container [data-slate-editor] pre>code .token.deleted,.w-e-text-container [data-slate-editor] pre>code .token.number,.w-e-text-container [data-slate-editor] pre>code .token.property,.w-e-text-container [data-slate-editor] pre>code .token.symbol,.w-e-text-container [data-slate-editor] pre>code .token.tag{color:#905}.w-e-text-container [data-slate-editor] pre>code .token.attr-name,.w-e-text-container [data-slate-editor] pre>code .token.builtin,.w-e-text-container [data-slate-editor] pre>code .token.char,.w-e-text-container [data-slate-editor] pre>code .token.inserted,.w-e-text-container [data-slate-editor] pre>code .token.selector,.w-e-text-container [data-slate-editor] pre>code .token.string{color:#690}.w-e-text-container [data-slate-editor] pre>code .language-css .token.string,.w-e-text-container [data-slate-editor] pre>code .style .token.string,.w-e-text-container [data-slate-editor] pre>code .token.entity,.w-e-text-container [data-slate-editor] pre>code .token.operator,.w-e-text-container [data-slate-editor] pre>code .token.url{color:#9a6e3a}.w-e-text-container [data-slate-editor] pre>code .token.atrule,.w-e-text-container [data-slate-editor] pre>code .token.attr-value,.w-e-text-container [data-slate-editor] pre>code .token.keyword{color:#07a}.w-e-text-container [data-slate-editor] pre>code .token.class-name,.w-e-text-container [data-slate-editor] pre>code .token.function{color:#dd4a68}.w-e-text-container [data-slate-editor] pre>code .token.important,.w-e-text-container [data-slate-editor] pre>code .token.regex,.w-e-text-container [data-slate-editor] pre>code .token.variable{color:#e90}.w-e-text-container [data-slate-editor] pre>code .token.bold,.w-e-text-container [data-slate-editor] pre>code .token.important{font-weight:700}.w-e-text-container [data-slate-editor] pre>code .token.italic{font-style:italic}.w-e-text-container [data-slate-editor] pre>code .token.entity{cursor:help}.icon-select-container[data-v-29ac0e84]{flex-direction:column;height:600px;display:flex;position:relative}.icon-select-container .search-bar[data-v-29ac0e84]{z-index:1;background:#fff;border-bottom:1px solid #f0f0f0;padding:12px;position:sticky;top:0}.icon-select-container .icon-content[data-v-29ac0e84]{flex:1;padding:12px;overflow-y:auto}.icon-select-container .icon-groups .icon-group[data-v-29ac0e84]{margin-bottom:4px}.icon-select-container .icon-groups .icon-group .group-title[data-v-29ac0e84]{color:#1f1f1f;margin-bottom:2px;font-size:16px;font-weight:500}.icon-select-container .icon-groups .icon-group .icon-grid[data-v-29ac0e84]{grid-template-columns:repeat(auto-fill,minmax(100px,1fr));gap:2px;display:grid}.icon-select-container .icon-groups .icon-group .icon-grid .icon-item[data-v-29ac0e84]{cursor:pointer;border-radius:4px;flex-direction:column;justify-content:center;align-items:center;padding:2px 20px;transition:all .3s;display:flex}.icon-select-container .icon-groups .icon-group .icon-grid .icon-item[data-v-29ac0e84]:hover{background-color:#e6f7ff;border-color:#1890ff}.icon-select-container .icon-groups .icon-group .icon-grid .icon-item.icon-selected[data-v-29ac0e84]{color:#fff;background-color:#1677ff;border-color:#1890ff}.icon-select-container .icon-groups .icon-group .icon-grid .icon-item.icon-selected .icon-name[data-v-29ac0e84]{color:#fff}.icon-select-container .icon-groups .icon-group .icon-grid .icon-item .anticon[data-v-29ac0e84]{margin-bottom:8px;font-size:24px}.icon-select-container .icon-groups .icon-group .icon-grid .icon-item .icon-name[data-v-29ac0e84]{color:#666;text-align:center;word-break:break-all;font-size:12px}.top_btn[data-v-d6626b20]{flex-direction:column;align-items:flex-end;gap:8px;margin-bottom:8px;display:flex}.form-wrap[data-v-d6626b20]{border:1px solid #e8e8e8;border-radius:4px;flex-direction:row;align-items:flex-start;width:100%;margin-bottom:4px;padding:4px;display:flex}.form-wrap .form-content[data-v-d6626b20]{flex:1;min-width:0;overflow:hidden}.form-wrap .form-action[data-v-d6626b20]{flex-shrink:0;justify-content:center;align-items:center;padding-top:8px;display:flex}.table-cell-form[data-v-03708942]{display:block}.field-cell-item[data-v-03708942]{box-sizing:border-box;height:100%;padding:8px}.field-cell-item[data-v-03708942] .ant-input-clear-icon{display:none}.field-cell-item[data-v-03708942]:hover .ant-input-clear-icon{display:block}.field-cell-item[data-v-03708942]:has(:focus) .ant-input-clear-icon{display:block}[data-v-03708942] .ant-form-item{margin:0!important}[data-v-03708942] .ant-input-affix-wrapper{box-shadow:none!important;background-color:#0000!important;border:0!important;outline:none!important;padding:0!important}[data-v-03708942] .ant-input{box-shadow:none!important;background-color:#0000!important;border:0!important;outline:none!important}[data-v-03708942] .ant-select-selector{box-shadow:none!important;background:0 0!important;border:0!important;padding:0!important}[data-v-03708942] .ant-input-number{box-shadow:none!important;background-color:#0000!important;border:0!important;outline:none!important}[data-v-03708942] .ant-input-group-addon,[data-v-03708942] .ant-input-number-group-addon,[data-v-03708942] .ant-input-number-affix-wrapper{background:0 0!important;border:none!important}[data-v-03708942] .ant-input-number-input{padding:0!important}[data-v-03708942] .ant-input-number-handler-wrap{display:none!important}[data-v-03708942] .ant-form-item-control-input-content .ant-layout{background:0 0}.editable.item-required[data-v-03708942] .ant-form-item:before{color:#ff4d4f;content:"*";margin-right:4px;font-family:SimSun,sans-serif;font-size:14px;line-height:1;display:inline-block;position:absolute;top:50%;right:0;transform:translateY(-50%)}[data-v-03708942] .ant-picker{box-shadow:none!important;background-color:#0000!important;border:0!important;outline:none!important}[data-v-e695af09] .surely-table-cell .surely-table-cell-inner{height:100%}[data-v-e695af09] .surely-table-cell .surely-table-cell-inner:has(.editable){background-color:#f8e83537;border:1px solid #0000!important}[data-v-e695af09] .surely-table-cell .surely-table-cell-inner:has(.editable) input{text-overflow:ellipsis}[data-v-e695af09] .surely-table-cell .surely-table-cell-inner:has(.editable) input:focus{text-overflow:clip}:is([data-v-e695af09] .surely-table-cell .surely-table-cell-inner:has(.editable:hover),[data-v-e695af09] .surely-table-cell .surely-table-cell-inner:has(.editable:focus),[data-v-e695af09] .surely-table-cell .surely-table-cell-inner:has(.editable input:focus),[data-v-e695af09] .surely-table-cell .surely-table-cell-inner:has(.editable textarea:focus)){background-color:#fcee55bc;border-radius:6px;box-shadow:0 0 0 2px #1890ff33;border-color:#40a9ff!important}[data-v-e695af09] .surely-table-cell .surely-table-cell-inner:has(.ant-form-item-has-error){border-radius:6px;border:1px solid #ff4d4f!important}[data-v-e695af09] .surely-table-cell .surely-table-cell-inner .surely-table-cell-content{padding:0!important}[data-v-e695af09] .surely-table-cell .ant-form-item-explain-error{font-size:10px}.required-star[data-v-e695af09]{color:red;margin-left:4px}.cell-item[data-v-e695af09]{padding:8px}.top_btn[data-v-ffaa44a9]{flex-flow:wrap;justify-content:flex-end;gap:8px;margin-bottom:8px;display:flex}.form-wrap[data-v-ffaa44a9]{border:1px solid #e8e8e8;border-radius:4px;flex-direction:row;align-items:flex-start;width:100%;margin-bottom:4px;padding:4px;display:flex}.form-wrap .form-content[data-v-ffaa44a9]{flex:1;min-width:0;overflow:hidden}.form-wrap .form-action[data-v-ffaa44a9]{flex-shrink:0;justify-content:center;align-items:center;padding-top:8px;display:flex}.error-msg[data-v-4d36fe78]{color:#ff4d4f}.head_btn[data-v-1c2384e8]{flex-wrap:wrap;justify-content:end;gap:4px;margin-bottom:4px;display:flex}[data-v-a5e3757b] .ant-input[readonly],.ant-input-affix-wrapper-readonly[data-v-a5e3757b],[data-v-a5e3757b] .ant-input-affix-wrapper-readonly{background-color:#f5f5f5}.ant-calendar-picker[data-v-165f0996]{width:100%!important}[data-v-13a27c20] .ant-select-selection-placeholder{width:100%;overflow:hidden}.cards[data-v-bd6bf9b4] .ant-card-head,.cards[data-v-823e4644] .ant-card-head{background-color:#00000005;min-height:44px;padding:0 8px}.group-custom-btn-list[data-v-823e4644]{flex-wrap:wrap;gap:5px;margin-right:2px;display:inline-flex}.ant-calendar-picker[data-v-168ff853]{width:100%!important}.search-summary[data-v-daae65bd]{padding:4px 2px;display:inline-block}.search-config-container[data-v-f069cba6]{align-items:center;gap:16px;height:70vh;display:flex}.search-config-container .table-wrapper[data-v-f069cba6]{border:1px solid #f0f0f0;border-radius:4px;flex-direction:column;width:450px;height:100%;display:flex;overflow:auto}.search-config-container .table-wrapper .table-title[data-v-f069cba6]{background:#fafafa;border-bottom:1px solid #f0f0f0;padding:8px 12px;font-weight:700}.search-config-container .middle-btns[data-v-f069cba6]{flex-direction:column;gap:16px;display:flex}.search-field-group-title[data-v-5239b541]{color:var(--primary-color,#1890ff);border-bottom:1px solid #f0f0f0;flex-basis:100%;align-items:center;width:100%;margin-bottom:4px;padding:8px 4px 4px;font-weight:700;display:flex}.search-field-group-title[data-v-5239b541]:not(:first-child){margin-top:8px}.search-form-grid-inner[data-v-5239b541]{grid-template-columns:repeat(var(--column-count), max-content 1fr);align-items:center;gap:2px 8px;display:grid}.search-form-grid-inner .search-field-group-title[data-v-5239b541]{grid-column:span calc(var(--column-count) * 2)}.search-form-grid-inner .search-field-group-title[data-v-5239b541]:not(:first-child){margin-top:8px}.search-form-grid-inner[data-v-5239b541] .ant-form-item{margin-bottom:2px;margin-right:0;display:contents}.search-form-grid-inner[data-v-5239b541] .ant-form-item .ant-form-item-row,.search-form-grid-inner[data-v-5239b541] .ant-form-item .ant-form-item-label,.search-form-grid-inner[data-v-5239b541] .ant-form-item .ant-form-item-control,.search-form-grid-inner[data-v-5239b541] .ant-form-item .ant-form-item-control-input,.search-form-grid-inner[data-v-5239b541] .ant-form-item .ant-form-item-control-input-content{display:contents}.search-form-grid-inner[data-v-5239b541] .ant-form-item-label{justify-self:end;align-items:center;max-width:150px;display:flex!important}.search-form-grid-inner[data-v-5239b541] .ant-form-item-label .search-item-label-text{text-overflow:ellipsis;white-space:nowrap;text-align:right;padding-right:8px;overflow:hidden}.search-form-grid-inner[data-v-5239b541] .ant-input-group{width:100%;display:flex!important}.search-form-grid-inner .btn-content[data-v-5239b541]{grid-column:span calc(var(--column-count) * 2)}.btn-content[data-v-5239b541]{margin-left:auto;padding:4px}.range[data-v-5239b541]{padding:0 4px}[data-v-5239b541] .ant-select-selection-placeholder{width:100%;overflow:hidden}.search-form-wraper[data-v-3b64723c]{max-height:300px;padding-left:2px;padding-right:2px;overflow-y:auto}.search-switch[data-v-3b64723c]{height:32px;line-height:32px;display:inline-block}.bottom-content[data-v-3b64723c]{justify-content:flex-end;padding:8px 26px 8px 8px;display:flex}.search-switch[data-v-e443a7be]{height:32px;line-height:32px;display:inline-block}.search-groups-container[data-v-e443a7be]{max-height:300px;padding:4px 0;overflow-y:auto}.search-group-item[data-v-e443a7be]{background:#fafafa;border:1px solid #f0f0f0;border-radius:4px;margin-bottom:8px;padding:8px}.search-group-header[data-v-e443a7be]{border-bottom:1px dashed #e0e0e0;justify-content:space-between;align-items:center;margin-bottom:8px;padding-bottom:4px;display:flex}.search-group-header-title[data-v-e443a7be]{color:var(--primary-color,#1890ff);font-size:13px;font-weight:700}.search-group-actions[data-v-e443a7be]{gap:4px;display:flex}.search-form-wraper[data-v-e443a7be]{padding-left:2px;padding-right:2px}.add-group-btn[data-v-e443a7be]{margin:4px 0 8px 8px}.bottom-content[data-v-e443a7be]{justify-content:flex-end;padding:8px 26px 8px 8px;display:flex}.group-or-separator[data-v-e443a7be]{color:#999;padding:0 8px;font-size:12px;font-weight:700;line-height:32px;display:inline-block}.columns-config-wrapper[data-v-6797490e]{padding:8px 0}.pivot-zone-item-label[data-v-837ceec0]{text-overflow:ellipsis;white-space:nowrap;flex:none;min-width:0;overflow:hidden}.vf-display-expr[data-v-837ceec0]{flex-wrap:wrap;align-items:center;gap:2px;display:inline-flex}.vf-display-token[data-v-837ceec0]{border-radius:3px;padding:0 4px;font-size:12px}.vf-display-token.vf-token-field[data-v-837ceec0]{color:#0958d9;background:#e6f7ff}.vf-display-token.vf-token-op[data-v-837ceec0]{color:#333;font-weight:700}.vf-display-token.vf-token-number[data-v-837ceec0]{color:#389e0d;background:#f6ffed}.vf-display-token.vf-token-string[data-v-837ceec0]{color:#c41d7f;background:#fff0f6}.vf-display-token.vf-token-bool[data-v-837ceec0]{color:#722ed1;background:#f9f0ff}.vf-display-token.vf-token-paren[data-v-837ceec0]{color:#d46b08;font-weight:700}.vf-display-token.vf-token-subexpr[data-v-837ceec0]{color:#722ed1;background:#f9f0ff}.vf-display-filter[data-v-837ceec0],.vf-display-warn[data-v-837ceec0]{margin-left:4px}.vee-wrap[data-v-ac442b30]{flex-direction:column;gap:10px;display:flex}.vee-ops[data-v-ac442b30]{flex-wrap:wrap;align-items:center;gap:6px;display:flex}.vee-ops .vee-ops-label[data-v-ac442b30]{color:#666;font-size:13px}.vee-ops .vee-op-btn[data-v-ac442b30]{cursor:grab;min-width:32px;font-weight:600}.vee-ops .vee-bool-btn[data-v-ac442b30]{font-family:monospace}.vee-ops .vee-num-input[data-v-ac442b30],.vee-ops .vee-str-input[data-v-ac442b30]{width:200px}.vee-canvas[data-v-ac442b30]{border:2px dashed #d9d9d9;border-radius:6px;flex-wrap:wrap;align-items:center;gap:6px;min-height:64px;padding:10px;transition:all .2s;display:flex;position:relative}.vee-canvas.drag-over[data-v-ac442b30]{background:#f0f7ff;border-color:#1890ff}.vee-canvas .vee-canvas-placeholder[data-v-ac442b30]{color:#bbb;font-size:12px}.vee-canvas .vee-insert-line[data-v-ac442b30]{pointer-events:none;z-index:2;border-left:2px solid #1890ff;width:0;position:absolute;box-shadow:0 0 4px #1890ffb3}.vee-canvas .vee-token[data-v-ac442b30]{cursor:grab;-webkit-user-select:none;user-select:none;border:1px solid #0000;border-radius:4px;align-items:center;gap:2px;padding:2px 8px;font-size:13px;display:inline-flex}.vee-canvas .vee-token.vee-token-field[data-v-ac442b30]{color:#0958d9;background:#e6f7ff;border-color:#91d5ff}.vee-canvas .vee-token.vee-token-op[data-v-ac442b30]{background:#fafafa;border-color:#d9d9d9;font-weight:700}.vee-canvas .vee-token.vee-token-number[data-v-ac442b30]{color:#389e0d;background:#f6ffed;border-color:#b7eb8f}.vee-canvas .vee-token.vee-token-string[data-v-ac442b30]{color:#c41d7f;background:#fff0f6;border-color:#ffadd2}.vee-canvas .vee-token.vee-token-bool[data-v-ac442b30]{color:#722ed1;background:#f9f0ff;border-color:#d3adf7;font-family:monospace}.vee-canvas .vee-token.vee-token-paren[data-v-ac442b30]{background:#fff7e6;border-color:#ffd591;font-weight:700}.vee-canvas .vee-token .vee-token-remove[data-v-ac442b30]{color:#999;cursor:pointer;font-size:10px}.vee-canvas .vee-token .vee-token-remove[data-v-ac442b30]:hover{color:#ff4d4f}.vee-preview-row[data-v-ac442b30]{flex-wrap:wrap;align-items:center;gap:8px;font-size:13px;display:flex}.vee-preview-row .vee-preview-label[data-v-ac442b30]{color:#666}.vee-preview-row .vee-preview[data-v-ac442b30]{color:#333;background:#f5f5f5;border-radius:4px;padding:2px 8px;font-weight:600}.vee-preview-row .vee-preview.vee-preview-invalid[data-v-ac442b30]{color:#cf1322;background:#fff1f0}.vee-preview-row .vee-warn[data-v-ac442b30]{color:#fa8c16;font-size:12px}.vee-input-wrap[data-v-ac442b30]{flex-flow:wrap;align-items:flex-start;gap:6px;width:100%;display:flex}.vee-subexpr-panel[data-v-ac442b30]{flex-wrap:wrap;align-items:center;gap:6px;display:flex}.vee-subexpr-panel .vee-subexpr-chip[data-v-ac442b30]{color:#722ed1;cursor:grab;-webkit-user-select:none;user-select:none;background:#f9f0ff;border:1px solid #d3adf7;border-radius:4px;padding:2px 8px;font-size:12px}.vee-subexpr-panel .vee-subexpr-chip[data-v-ac442b30]:hover{background:#efdbff;border-color:#9254de}.vee-subexpr-panel .vee-subexpr-chip[data-v-ac442b30]:active{cursor:grabbing}.vee-token-subexpr[data-v-ac442b30]{color:#722ed1;background:#f9f0ff;border-color:#d3adf7}.vee-date-row[data-v-ac442b30]{flex-wrap:nowrap;align-items:center;gap:6px;display:flex}.vee-date-row .vee-date-mode[data-v-ac442b30]{flex-shrink:0}.vee-date-row .vee-date-mode-label[data-v-ac442b30]{color:#666;flex-shrink:0;font-size:13px}.vee-date-row .vee-date-picker[data-v-ac442b30]{width:220px}.vee-op-item[data-v-ac442b30]{cursor:grab}.se-wrap[data-v-c8ea4551]{gap:16px;height:100%;min-height:360px;display:flex}.se-left[data-v-c8ea4551]{border:1px solid #f0f0f0;border-radius:6px;flex-direction:column;flex-shrink:0;width:240px;padding:8px;display:flex;overflow:hidden}.se-left .se-section-title[data-v-c8ea4551]{margin-bottom:8px;font-size:13px;font-weight:600}.se-left .se-field-search[data-v-c8ea4551]{flex-shrink:0;margin-bottom:8px}.se-left .se-field-pool[data-v-c8ea4551]{flex:1;min-height:0;overflow-y:auto}.se-left .se-field-item[data-v-c8ea4551]{cursor:grab;-webkit-user-select:none;user-select:none;border:1px solid #f0f0f0;border-radius:4px;align-items:center;gap:6px;margin-bottom:4px;padding:6px 8px;font-size:13px;transition:all .2s;display:flex}.se-left .se-field-item[data-v-c8ea4551]:hover{background:#f0f7ff;border-color:#1890ff}.se-left .se-field-item[data-v-c8ea4551]:active{cursor:grabbing}.se-left .se-field-item .se-field-icon[data-v-c8ea4551]{color:#1890ff;font-size:12px}.se-left .se-field-item .se-field-label[data-v-c8ea4551]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.se-left .se-field-group[data-v-c8ea4551]{cursor:default;background:#fafafa;font-weight:600}.se-left .se-field-group[data-v-c8ea4551]:hover{background:#fafafa;border-color:#f0f0f0}.se-left .se-field-branch-dot[data-v-c8ea4551]{background:#d9d9d9;border-radius:50%;flex-shrink:0;width:8px;height:8px;display:inline-block}.se-left .se-empty[data-v-c8ea4551]{text-align:center;color:#999;padding:20px 0;font-size:12px}.se-right[data-v-c8ea4551]{flex-direction:column;flex:1;gap:12px;min-width:0;display:flex;overflow-y:auto}.se-right .se-name-row[data-v-c8ea4551]{align-items:center;gap:8px;display:flex}.se-right .se-name-row .se-name-label[data-v-c8ea4551]{color:#333;flex-shrink:0;font-size:13px;font-weight:600}.se-right .se-name-row .se-name-input[data-v-c8ea4551]{flex:1;max-width:360px}.pivot-config-wrapper[data-v-1753c56f]{flex-direction:column;gap:12px;height:100%;display:flex}.pivot-config-main[data-v-1753c56f]{flex:1;gap:16px;min-height:0;display:flex}.pivot-field-list[data-v-1753c56f]{border:1px solid #f0f0f0;border-radius:6px;flex-direction:column;flex-shrink:0;width:220px;padding:8px;display:flex;overflow:hidden}.pivot-field-list .pivot-section-title[data-v-1753c56f]{color:#333;margin-bottom:8px;font-size:13px;font-weight:600}.pivot-field-list .pivot-field-pool[data-v-1753c56f]{flex:1;min-height:0;overflow-y:auto}.pivot-field-list .pivot-field-item[data-v-1753c56f]{cursor:grab;-webkit-user-select:none;user-select:none;border:1px solid #f0f0f0;border-radius:4px;align-items:center;gap:6px;margin-bottom:4px;padding:6px 8px;font-size:13px;transition:all .2s;display:flex}.pivot-field-list .pivot-field-item[data-v-1753c56f]:hover{background:#f0f7ff;border-color:#1890ff}.pivot-field-list .pivot-field-item[data-v-1753c56f]:active{cursor:grabbing}.pivot-field-list .pivot-field-item .pivot-field-icon[data-v-1753c56f]{color:#1890ff;font-size:12px}.pivot-field-list .pivot-field-item .pivot-field-label[data-v-1753c56f]{text-overflow:ellipsis;white-space:nowrap;flex:1;overflow:hidden}.pivot-field-list .pivot-field-item .pivot-field-tag[data-v-1753c56f]{color:#fff;background:#1890ff;border-radius:8px;flex-shrink:0;padding:1px 6px;font-size:10px;line-height:16px}.pivot-field-list .pivot-field-group[data-v-1753c56f]{cursor:default;background:#fafafa;font-weight:600}.pivot-field-list .pivot-field-group[data-v-1753c56f]:hover{background:#fafafa;border-color:#f0f0f0}.pivot-field-list .pivot-field-group .pivot-field-icon[data-v-1753c56f]{color:#bfbfbf}.pivot-field-list .pivot-field-branch-dot[data-v-1753c56f]{background:#d9d9d9;border-radius:50%;width:8px;height:8px;display:inline-block}.pivot-field-list .pivot-field-empty[data-v-1753c56f]{text-align:center;color:#999;padding:20px 0;font-size:12px}.pivot-drop-zones[data-v-1753c56f]{flex-direction:column;flex:1;gap:12px;min-width:0;display:flex;overflow-y:auto}.pivot-drop-zone[data-v-1753c56f]{border:2px dashed #d9d9d9;border-radius:6px;flex-shrink:0;min-height:80px;padding:8px;transition:all .2s}.pivot-drop-zone.drag-over[data-v-1753c56f]{background:#f0f7ff;border-color:#1890ff}.pivot-drop-zone .pivot-zone-header[data-v-1753c56f]{justify-content:space-between;align-items:center;margin-bottom:6px;display:flex}.pivot-drop-zone .pivot-zone-header .pivot-zone-title[data-v-1753c56f]{color:#333;align-items:center;gap:4px;font-size:13px;font-weight:600;display:flex}.pivot-drop-zone .pivot-zone-header .pivot-zone-tip[data-v-1753c56f]{color:#999;cursor:help;font-size:12px}.pivot-drop-zone .pivot-zone-items[data-v-1753c56f]{flex-wrap:wrap;gap:6px;min-height:32px;display:flex}.pivot-drop-zone .pivot-zone-placeholder[data-v-1753c56f]{color:#bbb;text-align:center;width:100%;padding:4px 8px;font-size:12px}.pivot-zone-item[data-v-1753c56f]{cursor:grab;-webkit-user-select:none;user-select:none;box-sizing:border-box;background:#fafafa;border:1px solid #d9d9d9;border-radius:4px;align-items:center;gap:4px;max-width:100%;padding:4px 8px;font-size:12px;transition:all .2s;display:flex;position:relative}.pivot-zone-item[data-v-1753c56f]:hover{background:#f0f7ff;border-color:#1890ff}.pivot-zone-item[data-v-1753c56f]:active{cursor:grabbing}.pivot-zone-item .pivot-zone-item-remove[data-v-1753c56f]{color:#999;cursor:pointer;flex-shrink:0;margin-left:2px;font-size:10px}.pivot-zone-item .pivot-zone-item-remove[data-v-1753c56f]:hover{color:#ff4d4f}.pivot-value-item[data-v-1753c56f]{cursor:grab;-webkit-user-select:none;user-select:none;background:#fff7e6;border-color:#ffd591;flex-flow:column wrap;align-items:flex-start;width:100%;max-width:100%;display:flex}.pivot-value-item[data-v-1753c56f]:hover{background:#fff7e6;border-color:#fa8c16}.pivot-value-item[data-v-1753c56f]:active{cursor:grabbing}.pivot-value-item.drag-before[data-v-1753c56f]{box-shadow:0 -2px #1890ff}.pivot-value-item.drag-after[data-v-1753c56f]{box-shadow:0 2px #1890ff}.pivot-value-item[data-v-1753c56f] .ant-select,.pivot-value-item[data-v-1753c56f] .ant-input{flex:auto;min-width:70px}.pivot-drop-zone-values[data-v-1753c56f]{min-height:80px}.pivot-dim-group[data-v-1753c56f]{box-sizing:border-box;cursor:grab;-webkit-user-select:none;user-select:none;background:#f6ffed;border:1px solid #b7eb8f;border-radius:6px;flex-direction:column;gap:6px;width:100%;max-width:100%;padding:6px 8px;transition:all .2s;display:flex;position:relative}.pivot-dim-group[data-v-1753c56f]:hover{background:#f6ffed;border-color:#52c41a}.pivot-dim-group.drag-over[data-v-1753c56f]{border-color:#52c41a;box-shadow:inset 0 0 0 2px #52c41a}.pivot-dim-group.drop-group-before[data-v-1753c56f]:before,.pivot-dim-group.drop-group-after[data-v-1753c56f]:after{content:"";pointer-events:none;z-index:2;border-top:2px solid #1890ff;height:0;position:absolute;left:-2px;right:-2px;box-shadow:0 0 4px #1890ffb3}.pivot-dim-group.drop-group-before[data-v-1753c56f]:before{top:-4px}.pivot-dim-group.drop-group-after[data-v-1753c56f]:after{bottom:-4px}.pivot-dim-group .pivot-dim-group-header[data-v-1753c56f]{align-items:center;gap:6px;width:100%;display:flex}.pivot-dim-group .pivot-dim-group-header .pivot-group-label-input[data-v-1753c56f]{flex:auto;min-width:0}.pivot-dim-group .pivot-dim-group-header .pivot-group-remove[data-v-1753c56f]{color:#999;cursor:pointer;flex-shrink:0;font-size:11px}.pivot-dim-group .pivot-dim-group-header .pivot-group-remove[data-v-1753c56f]:hover{color:#ff4d4f}.pivot-dim-group .pivot-dim-group-fields[data-v-1753c56f]{flex-flow:column wrap;align-items:flex-start;gap:4px;width:100%;display:flex}.pivot-dim-group .pivot-field-chip[data-v-1753c56f]{cursor:grab;-webkit-user-select:none;user-select:none;background:#fff;border:1px solid #d9d9d9;border-radius:4px;align-items:center;gap:4px;width:100%;padding:2px 6px;font-size:12px;display:flex;position:relative}.pivot-dim-group .pivot-field-chip.drop-before[data-v-1753c56f]:before,.pivot-dim-group .pivot-field-chip.drop-after[data-v-1753c56f]:after{content:"";pointer-events:none;border-top:2px solid #1890ff;height:0;position:absolute;left:-1px;right:-1px;box-shadow:0 0 4px #1890ffb3}.pivot-dim-group .pivot-field-chip.drop-before[data-v-1753c56f]:before{top:-3px}.pivot-dim-group .pivot-field-chip.drop-after[data-v-1753c56f]:after{bottom:-3px}.pivot-dim-group .pivot-field-chip[data-v-1753c56f]:hover{border-color:#52c41a}.pivot-dim-group .pivot-field-chip .pivot-chip-label[data-v-1753c56f]{text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;overflow:hidden}.pivot-dim-group .pivot-field-chip .pivot-chip-remove[data-v-1753c56f]{color:#999;cursor:pointer;flex-shrink:0;font-size:10px}.pivot-dim-group .pivot-field-chip .pivot-chip-remove[data-v-1753c56f]:hover{color:#ff4d4f}.pivot-dim-group .pivot-field-chip[data-v-1753c56f] .ant-select{flex:auto;min-width:80px}.pivot-dim-group .pivot-sort-row[data-v-1753c56f]{border-top:1px dashed #d9d9d9;flex-wrap:wrap;align-items:center;gap:6px;width:100%;padding-top:6px;display:flex}.pivot-dim-group .pivot-sort-row .pivot-sort-label[data-v-1753c56f]{color:#999;flex-shrink:0;font-size:11px}.pivot-dim-group .pivot-sort-row[data-v-1753c56f] .ant-select{flex:0 auto;min-width:0}.pivot-options[data-v-1753c56f]{border-top:1px solid #f0f0f0;flex-direction:column;flex-shrink:0;gap:10px;padding:10px 0 4px;display:flex}.pivot-options .pivot-options-group[data-v-1753c56f]{flex-wrap:wrap;align-items:center;gap:8px 12px;display:flex}.pivot-options .pivot-options-group .pivot-options-label[data-v-1753c56f]{color:#666;flex-shrink:0;font-size:12px;font-weight:600}.pivot-options .pivot-options-group .pivot-option-switch[data-v-1753c56f]{color:#333;cursor:pointer;-webkit-user-select:none;user-select:none;align-items:center;gap:4px;font-size:12px;display:inline-flex}.pivot-options .pivot-options-group .pivot-option-switch span[data-v-1753c56f]{white-space:nowrap}.value-item-header[data-v-1753c56f]{flex-direction:row;justify-content:space-between;gap:6px;width:100%;display:flex}.value-item-content[data-v-1753c56f]{flex-direction:row;align-items:center;gap:6px;display:flex}.pivot-drop-zone-subexpr[data-v-1753c56f]{background:#fafaff}.subexpr-items[data-v-1753c56f]{align-items:stretch}.pivot-subexpr-card[data-v-1753c56f]{background:#fff;border:1px solid #efd6ff;border-radius:6px;flex-direction:column;gap:4px;min-width:220px;max-width:100%;padding:6px 10px;display:flex}.pivot-subexpr-card .subexpr-card-head[data-v-1753c56f]{justify-content:space-between;align-items:center;gap:8px;display:flex}.pivot-subexpr-card .subexpr-card-head .subexpr-card-name[data-v-1753c56f]{color:#722ed1;text-overflow:ellipsis;white-space:nowrap;font-size:13px;font-weight:600;overflow:hidden}.pivot-subexpr-card .subexpr-card-head .subexpr-card-actions[data-v-1753c56f]{flex-shrink:0;align-items:center;gap:2px;display:flex}.pivot-charts-config-wrapper[data-v-d3a9c5f9]{flex-direction:column;gap:12px;height:100%;display:flex}.pivot-charts-config-main[data-v-d3a9c5f9]{flex:1;gap:16px;min-height:0;display:flex}.pivot-field-list[data-v-d3a9c5f9]{border:1px solid #f0f0f0;border-radius:6px;flex-direction:column;flex-shrink:0;width:220px;padding:8px;display:flex;overflow:hidden}.pivot-field-list .pivot-section-title[data-v-d3a9c5f9]{color:#333;margin-bottom:8px;font-size:13px;font-weight:600}.pivot-field-list .pivot-field-pool[data-v-d3a9c5f9]{flex:1;min-height:0;overflow-y:auto}.pivot-field-list .pivot-field-item[data-v-d3a9c5f9]{cursor:grab;-webkit-user-select:none;user-select:none;border:1px solid #f0f0f0;border-radius:4px;align-items:center;gap:6px;margin-bottom:4px;padding:6px 8px;font-size:13px;transition:all .2s;display:flex}.pivot-field-list .pivot-field-item[data-v-d3a9c5f9]:hover{background:#f0f7ff;border-color:#1890ff}.pivot-field-list .pivot-field-item[data-v-d3a9c5f9]:active{cursor:grabbing}.pivot-field-list .pivot-field-item .pivot-field-icon[data-v-d3a9c5f9]{color:#1890ff;font-size:12px}.pivot-field-list .pivot-field-item .pivot-field-label[data-v-d3a9c5f9]{text-overflow:ellipsis;white-space:nowrap;flex:1;overflow:hidden}.pivot-field-list .pivot-field-item .pivot-field-tag[data-v-d3a9c5f9]{color:#fff;background:#1890ff;border-radius:8px;flex-shrink:0;padding:1px 6px;font-size:10px;line-height:16px}.pivot-field-list .pivot-field-group[data-v-d3a9c5f9]{cursor:default;background:#fafafa;font-weight:600}.pivot-field-list .pivot-field-group[data-v-d3a9c5f9]:hover{background:#fafafa;border-color:#f0f0f0}.pivot-field-list .pivot-field-group .pivot-field-icon[data-v-d3a9c5f9]{color:#bfbfbf}.pivot-field-list .pivot-field-branch-dot[data-v-d3a9c5f9]{background:#d9d9d9;border-radius:50%;width:8px;height:8px;display:inline-block}.pivot-field-list .pivot-field-empty[data-v-d3a9c5f9]{text-align:center;color:#999;padding:20px 0;font-size:12px}.pivot-drop-zones[data-v-d3a9c5f9]{flex-direction:column;flex:1;gap:12px;min-width:0;display:flex;overflow-y:auto}.pivot-drop-zone[data-v-d3a9c5f9]{border:2px dashed #d9d9d9;border-radius:6px;flex-shrink:0;min-height:80px;padding:8px;transition:all .2s}.pivot-drop-zone.drag-over[data-v-d3a9c5f9]{background:#f0f7ff;border-color:#1890ff}.pivot-drop-zone .pivot-zone-header[data-v-d3a9c5f9]{justify-content:space-between;align-items:center;margin-bottom:6px;display:flex}.pivot-drop-zone .pivot-zone-header .pivot-zone-title[data-v-d3a9c5f9]{color:#333;align-items:center;gap:4px;font-size:13px;font-weight:600;display:flex}.pivot-drop-zone .pivot-zone-header .pivot-zone-tip[data-v-d3a9c5f9]{color:#999;cursor:help;font-size:12px}.pivot-drop-zone .pivot-zone-items[data-v-d3a9c5f9]{flex-wrap:wrap;gap:6px;min-height:32px;display:flex}.pivot-drop-zone .pivot-zone-placeholder[data-v-d3a9c5f9]{color:#bbb;text-align:center;width:100%;padding:4px 8px;font-size:12px}.pivot-zone-item[data-v-d3a9c5f9]{cursor:grab;-webkit-user-select:none;user-select:none;box-sizing:border-box;background:#fafafa;border:1px solid #d9d9d9;border-radius:4px;align-items:center;gap:4px;max-width:100%;padding:4px 8px;font-size:12px;transition:all .2s;display:flex;position:relative}.pivot-zone-item[data-v-d3a9c5f9]:hover{background:#f0f7ff;border-color:#1890ff}.pivot-zone-item[data-v-d3a9c5f9]:active{cursor:grabbing}.pivot-zone-item .pivot-zone-item-label[data-v-d3a9c5f9]{text-overflow:ellipsis;white-space:nowrap;flex:0 auto;min-width:0;overflow:hidden}.pivot-zone-item .pivot-zone-item-remove[data-v-d3a9c5f9]{color:#999;cursor:pointer;flex-shrink:0;margin-left:2px;font-size:10px}.pivot-zone-item .pivot-zone-item-remove[data-v-d3a9c5f9]:hover{color:#ff4d4f}.pivot-value-item[data-v-d3a9c5f9]{cursor:grab;-webkit-user-select:none;user-select:none;background:#fff7e6;border-color:#ffd591;flex-flow:column wrap;align-items:flex-start;width:100%;max-width:100%;display:flex}.pivot-value-item[data-v-d3a9c5f9]:hover{background:#fff7e6;border-color:#fa8c16}.pivot-value-item[data-v-d3a9c5f9]:active{cursor:grabbing}.pivot-value-item.value-item-invalid[data-v-d3a9c5f9]{background:#fff1f0;border-color:#ff4d4f}.pivot-value-item.drag-before[data-v-d3a9c5f9]{box-shadow:0 -2px #1890ff}.pivot-value-item.drag-after[data-v-d3a9c5f9]{box-shadow:0 2px #1890ff}.pivot-value-item .pivot-zone-item-label[data-v-d3a9c5f9]{flex-shrink:0}.pivot-value-item[data-v-d3a9c5f9] .ant-select,.pivot-value-item[data-v-d3a9c5f9] .ant-input{flex:auto;min-width:70px}.pivot-drop-zone-values[data-v-d3a9c5f9]{min-height:80px}.pivot-dim-group[data-v-d3a9c5f9]{box-sizing:border-box;cursor:grab;-webkit-user-select:none;user-select:none;background:#f6ffed;border:1px solid #b7eb8f;border-radius:6px;flex-direction:column;gap:6px;width:100%;max-width:100%;padding:6px 8px;transition:all .2s;display:flex;position:relative}.pivot-dim-group[data-v-d3a9c5f9]:hover{background:#f6ffed;border-color:#52c41a}.pivot-dim-group.drag-over[data-v-d3a9c5f9]{border-color:#52c41a;box-shadow:inset 0 0 0 2px #52c41a}.pivot-dim-group.drop-group-before[data-v-d3a9c5f9]:before,.pivot-dim-group.drop-group-after[data-v-d3a9c5f9]:after{content:"";pointer-events:none;z-index:2;border-top:2px solid #1890ff;height:0;position:absolute;left:-2px;right:-2px;box-shadow:0 0 4px #1890ffb3}.pivot-dim-group.drop-group-before[data-v-d3a9c5f9]:before{top:-4px}.pivot-dim-group.drop-group-after[data-v-d3a9c5f9]:after{bottom:-4px}.pivot-dim-group .pivot-dim-group-header[data-v-d3a9c5f9]{align-items:center;gap:6px;width:100%;display:flex}.pivot-dim-group .pivot-dim-group-header .pivot-group-label-input[data-v-d3a9c5f9]{flex:auto;min-width:0}.pivot-dim-group .pivot-dim-group-header .pivot-group-remove[data-v-d3a9c5f9]{color:#999;cursor:pointer;flex-shrink:0;font-size:11px}.pivot-dim-group .pivot-dim-group-header .pivot-group-remove[data-v-d3a9c5f9]:hover{color:#ff4d4f}.pivot-dim-group .pivot-dim-group-fields[data-v-d3a9c5f9]{flex-flow:column wrap;align-items:flex-start;gap:4px;width:100%;display:flex}.pivot-dim-group .pivot-field-chip[data-v-d3a9c5f9]{cursor:grab;-webkit-user-select:none;user-select:none;background:#fff;border:1px solid #d9d9d9;border-radius:4px;align-items:center;gap:4px;width:100%;padding:2px 6px;font-size:12px;display:flex;position:relative}.pivot-dim-group .pivot-field-chip.drop-before[data-v-d3a9c5f9]:before,.pivot-dim-group .pivot-field-chip.drop-after[data-v-d3a9c5f9]:after{content:"";pointer-events:none;border-top:2px solid #1890ff;height:0;position:absolute;left:-1px;right:-1px;box-shadow:0 0 4px #1890ffb3}.pivot-dim-group .pivot-field-chip.drop-before[data-v-d3a9c5f9]:before{top:-3px}.pivot-dim-group .pivot-field-chip.drop-after[data-v-d3a9c5f9]:after{bottom:-3px}.pivot-dim-group .pivot-field-chip[data-v-d3a9c5f9]:hover{border-color:#52c41a}.pivot-dim-group .pivot-field-chip .pivot-chip-label[data-v-d3a9c5f9]{text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;overflow:hidden}.pivot-dim-group .pivot-field-chip .pivot-chip-remove[data-v-d3a9c5f9]{color:#999;cursor:pointer;flex-shrink:0;font-size:10px}.pivot-dim-group .pivot-field-chip .pivot-chip-remove[data-v-d3a9c5f9]:hover{color:#ff4d4f}.pivot-dim-group .pivot-field-chip[data-v-d3a9c5f9] .ant-select{flex:auto;min-width:80px}.pivot-dim-group .pivot-sort-row[data-v-d3a9c5f9]{border-top:1px dashed #d9d9d9;flex-wrap:wrap;align-items:center;gap:6px;width:100%;padding-top:6px;display:flex}.pivot-dim-group .pivot-sort-row .pivot-sort-label[data-v-d3a9c5f9]{color:#999;flex-shrink:0;font-size:11px}.pivot-dim-group .pivot-sort-row[data-v-d3a9c5f9] .ant-select{flex:0 auto;min-width:0}.pivot-options[data-v-d3a9c5f9]{border-top:1px solid #f0f0f0;flex-shrink:0;padding:8px 0}.value-item-header[data-v-d3a9c5f9]{flex-direction:row;justify-content:space-between;gap:6px;width:100%;display:flex}.value-item-content[data-v-d3a9c5f9]{flex-direction:row;align-items:center;gap:6px;display:flex}.pivot-drop-zone-subexpr[data-v-d3a9c5f9]{background:#fafaff}.subexpr-items[data-v-d3a9c5f9]{align-items:stretch}.pivot-subexpr-card[data-v-d3a9c5f9]{background:#fff;border:1px solid #efd6ff;border-radius:6px;flex-direction:column;gap:4px;min-width:220px;max-width:100%;padding:6px 10px;display:flex}.pivot-subexpr-card .subexpr-card-head[data-v-d3a9c5f9]{justify-content:space-between;align-items:center;gap:8px;display:flex}.pivot-subexpr-card .subexpr-card-head .subexpr-card-name[data-v-d3a9c5f9]{color:#722ed1;text-overflow:ellipsis;white-space:nowrap;font-size:13px;font-weight:600;overflow:hidden}.pivot-subexpr-card .subexpr-card-head .subexpr-card-actions[data-v-d3a9c5f9]{flex-shrink:0;align-items:center;gap:2px;display:flex}.view-manage-container[data-v-b431b3c2]{gap:16px;height:400px;display:flex;overflow-y:auto}.view-manage-container .view-section[data-v-b431b3c2]{border:1px solid #f0f0f0;border-radius:4px;flex:1;padding:8px}.view-manage-container .view-section .section-header[data-v-b431b3c2]{border-bottom:1px solid #f0f0f0;justify-content:space-between;align-items:center;margin-bottom:8px;padding-bottom:4px;display:flex}.view-manage-container .view-section .section-header .title[data-v-b431b3c2]{font-weight:700}.view-manage-container .view-section .section-header .header-actions[data-v-b431b3c2]{align-items:center;display:flex}.view-item-row[data-v-b431b3c2]{justify-content:space-between;align-items:center;width:100%;display:flex}.view-item-row .view-name[data-v-b431b3c2]{cursor:pointer;text-overflow:ellipsis;white-space:nowrap;flex:0 auto;padding:4px 0;overflow:hidden}.view-item-row .view-name[data-v-b431b3c2]:hover{color:#1890ff}.view-item-row .view-actions[data-v-b431b3c2]{opacity:0;gap:4px;transition:opacity .2s;display:flex}.view-item-row:hover .view-actions[data-v-b431b3c2]{opacity:1}.view-num[data-v-b431b3c2]{white-space:nowrap;display:inline-block}.vf-wrap[data-v-79177f5f]{gap:16px;height:100%;min-height:360px;display:flex}.vf-left[data-v-79177f5f]{border:1px solid #f0f0f0;border-radius:6px;flex-direction:column;flex-shrink:0;width:240px;padding:8px;display:flex;overflow:hidden}.vf-left .vf-section-title[data-v-79177f5f]{margin-bottom:8px;font-size:13px;font-weight:600}.vf-left .vf-field-search[data-v-79177f5f]{flex-shrink:0;margin-bottom:8px}.vf-left .vf-field-pool[data-v-79177f5f]{flex:1;min-height:0;overflow-y:auto}.vf-left .vf-field-item[data-v-79177f5f]{cursor:grab;-webkit-user-select:none;user-select:none;border:1px solid #f0f0f0;border-radius:4px;align-items:center;gap:6px;margin-bottom:4px;padding:6px 8px;font-size:13px;transition:all .2s;display:flex}.vf-left .vf-field-item[data-v-79177f5f]:hover{background:#f0f7ff;border-color:#1890ff}.vf-left .vf-field-item[data-v-79177f5f]:active{cursor:grabbing}.vf-left .vf-field-item .vf-field-icon[data-v-79177f5f]{color:#1890ff;font-size:12px}.vf-left .vf-field-item .vf-field-label[data-v-79177f5f]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.vf-left .vf-field-group[data-v-79177f5f]{cursor:default;background:#fafafa;font-weight:600}.vf-left .vf-field-group[data-v-79177f5f]:hover{background:#fafafa;border-color:#f0f0f0}.vf-left .vf-field-branch-dot[data-v-79177f5f]{background:#d9d9d9;border-radius:50%;flex-shrink:0;width:8px;height:8px;display:inline-block}.vf-left .vf-empty[data-v-79177f5f]{text-align:center;color:#999;padding:20px 0;font-size:12px}.vf-right[data-v-79177f5f]{flex-direction:column;flex:1;gap:12px;min-width:0;display:flex;overflow-y:auto}.vf-switch-row[data-v-79177f5f]{align-items:center;gap:8px;display:flex}.vf-switch-row .vf-switch-label[data-v-79177f5f]{color:#333;font-size:13px}.vf-single[data-v-79177f5f]{flex-direction:column;gap:8px;display:flex}.vf-single .vf-single-drop[data-v-79177f5f]{border:2px dashed #d9d9d9;border-radius:6px;align-items:center;gap:8px;min-height:40px;padding:0 10px;transition:all .2s;display:flex}.vf-single .vf-single-drop.drag-over[data-v-79177f5f]{background:#f0f7ff;border-color:#1890ff}.vf-single .vf-single-drop .vf-single-field[data-v-79177f5f]{color:#1890ff;font-size:13px;font-weight:600}.vf-single .vf-single-drop .vf-single-placeholder[data-v-79177f5f]{color:#bbb;font-size:12px}.vf-single .vf-single-drop .vf-single-remove[data-v-79177f5f]{color:#999;cursor:pointer}.vf-single .vf-single-drop .vf-single-remove[data-v-79177f5f]:hover{color:#ff4d4f}.vf-single .vf-single-select[data-v-79177f5f]{max-width:320px}.vf-single .vf-tip[data-v-79177f5f]{color:#999;font-size:12px}.vf-collapse[data-v-79177f5f]{background:0 0}.vf-collapse[data-v-79177f5f] .ant-collapse-item{background:#fff;border:1px solid #f0f0f0;border-radius:6px;margin-bottom:12px;overflow:hidden}.vf-collapse[data-v-79177f5f] .ant-collapse-header{font-size:13px;font-weight:600}.column-edit-view-wrapper[data-v-f4dad853]{height:100%;padding:0 8px}.tab-content-scroll[data-v-f4dad853]{height:100%;overflow-y:auto}[data-v-f4dad853] .ant-tabs,[data-v-f4dad853] .ant-tabs-content{height:100%}.ant-pro-table-list-toolbar-container[data-v-6b272373]{height:30px;padding:0 8px;line-height:30px}.ant-pro-table-list-toolbar-setting-item[data-v-6b272373]{font-size:14px}.current-view-name[data-v-6b272373]{text-overflow:ellipsis;white-space:nowrap;max-width:150px;display:inline-block;overflow:hidden}.current-view-container[data-v-6b272373]{gap:4px;height:100%;padding:2px;display:flex}.view-menu[data-v-6b272373]{cursor:pointer;background:#fafafa;border:1px solid #f0f0f0;border-radius:4px;padding:0 4px;font-size:12px;font-weight:400;line-height:26px}.popup-divider[data-v-d0b9bee1] .ant-divider-horizontal{margin-top:1px;margin-bottom:1px}.btn-wraper[data-v-d40ed682]{justify-content:flex-end;display:flex}.table-wraper[data-v-d40ed682]{height:100%;overflow:hidden}.modify-row-height[data-v-d40ed682] .surely-table-header,.modify-row-height[data-v-d40ed682] .surely-table-header-cell,.modify-row-height[data-v-d40ed682] .surely-table-summary{height:var(--row-heigth)!important}.popup-divider[data-v-d40ed682] .ant-divider-horizontal{margin-top:1px;margin-bottom:1px}.highlight[data-v-d40ed682]{background-color:#ffc069;padding:0}.my-card[data-v-25d1dc13],.my-card[data-v-52b515e0]{background-color:#f6f7f9;padding:20px}.card[data-v-d12629e4]{background:#f2f5f7;max-height:300px;overflow:auto}.condition-group[data-v-d12629e4]{padding:5px}.range[data-v-d12629e4]{margin-top:5px}.close-icon[data-v-d12629e4]{color:red;width:15px;margin-top:5px;margin-left:5px}.search-bar[data-v-d12629e4]{text-align:right;background:#f2f5f7}[data-v-d12629e4] .divider .ant-divider{margin:0}.num{display:inline-block}.dropdown{display:none}.table:hover .dropdown{display:inline-block}.table:hover .num{display:none}.pivot-table-wraper[data-v-ba30d240]{height:100%;overflow:hidden}.pivot-vtable-container[data-v-ba30d240]{width:100%;position:relative;overflow:hidden}.pivot-vtable-container .pivot-vtable-loading[data-v-ba30d240]{z-index:10;background:#fff9;flex-direction:column;justify-content:center;align-items:center;gap:16px;width:100%;height:100%;display:flex;position:absolute;top:0;left:0}.pivot-vtable-container .pivot-vtable-loading .pivot-progress[data-v-ba30d240]{width:200px}.pivot-vtable-container .pivot-empty-tip[data-v-ba30d240]{color:#999;justify-content:center;align-items:center;height:100%;font-size:14px;display:flex}.pivot-charts-wraper[data-v-3ca6164d]{height:100%;overflow:hidden}.pivot-echarts-container[data-v-3ca6164d]{width:100%;position:relative;overflow:hidden}.pivot-echarts-container .pivot-echarts-loading[data-v-3ca6164d]{z-index:10;background:#fff9;justify-content:center;align-items:center;width:100%;height:100%;display:flex;position:absolute;top:0;left:0}.pivot-echarts-container .echarts-dom[data-v-3ca6164d]{width:100%;height:100%}.pivot-echarts-container .pivot-empty-tip[data-v-3ca6164d]{color:#999;justify-content:center;align-items:center;height:100%;font-size:14px;display:flex}.full-layout[data-v-744a0d2d]{height:calc(100vh - var(--current-top,0px));margin:-24px -24px 0;position:relative;overflow:auto}.vue-grid-item{transition:left,top,right}.vue-grid-item.no-touch{-ms-touch-action:none;touch-action:none}.vue-grid-item.cssTransforms{transition-property:transform;left:0;right:auto}.vue-grid-item.cssTransforms.render-rtl{left:auto;right:0}.vue-grid-item.resizing{z-index:3;opacity:.6}.vue-grid-item.vue-draggable-dragging{z-index:3;transition:none}.vue-grid-item.vue-grid-placeholder{z-index:2;-webkit-user-select:none;user-select:none;-o-user-select:none;background:pink;transition-duration:.1s}.vue-grid-item>.vue-resizable-handle{box-sizing:border-box;cursor:se-resize;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pg08IS0tIEdlbmVyYXRvcjogQWRvYmUgRmlyZXdvcmtzIENTNiwgRXhwb3J0IFNWRyBFeHRlbnNpb24gYnkgQWFyb24gQmVhbGwgKGh0dHA6Ly9maXJld29ya3MuYWJlYWxsLmNvbSkgLiBWZXJzaW9uOiAwLjYuMSAgLS0+DTwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DTxzdmcgaWQ9IlVudGl0bGVkLVBhZ2UlMjAxIiB2aWV3Qm94PSIwIDAgNiA2IiBzdHlsZT0iYmFja2dyb3VuZC1jb2xvcjojZmZmZmZmMDAiIHZlcnNpb249IjEuMSINCXhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbDpzcGFjZT0icHJlc2VydmUiDQl4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjZweCIgaGVpZ2h0PSI2cHgiDT4NCTxnIG9wYWNpdHk9IjAuMzAyIj4NCQk8cGF0aCBkPSJNIDYgNiBMIDAgNiBMIDAgNC4yIEwgNCA0LjIgTCA0LjIgNC4yIEwgNC4yIDAgTCA2IDAgTCA2IDYgTCA2IDYgWiIgZmlsbD0iIzAwMDAwMCIvPg0JPC9nPg08L3N2Zz4=) 100% 100% no-repeat content-box border-box;width:20px;height:20px;padding:0 3px 3px 0;position:absolute;bottom:0;right:0}.vue-grid-item>.vue-rtl-resizable-handle{cursor:sw-resize;background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAuMDAwMDAwMDAwMDAwMDAyIiBoZWlnaHQ9IjEwLjAwMDAwMDAwMDAwMDAwMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KIDwhLS0gQ3JlYXRlZCB3aXRoIE1ldGhvZCBEcmF3IC0gaHR0cDovL2dpdGh1Yi5jb20vZHVvcGl4ZWwvTWV0aG9kLURyYXcvIC0tPgogPGc+CiAgPHRpdGxlPmJhY2tncm91bmQ8L3RpdGxlPgogIDxyZWN0IGZpbGw9Im5vbmUiIGlkPSJjYW52YXNfYmFja2dyb3VuZCIgaGVpZ2h0PSIxMiIgd2lkdGg9IjEyIiB5PSItMSIgeD0iLTEiLz4KICA8ZyBkaXNwbGF5PSJub25lIiBvdmVyZmxvdz0idmlzaWJsZSIgeT0iMCIgeD0iMCIgaGVpZ2h0PSIxMDAlIiB3aWR0aD0iMTAwJSIgaWQ9ImNhbnZhc0dyaWQiPgogICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWRwYXR0ZXJuKSIgc3Ryb2tlLXdpZHRoPSIwIiB5PSIwIiB4PSIwIiBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIi8+CiAgPC9nPgogPC9nPgogPGc+CiAgPHRpdGxlPkxheWVyIDE8L3RpdGxlPgogIDxsaW5lIGNhbnZhcz0iI2ZmZmZmZiIgY2FudmFzLW9wYWNpdHk9IjEiIHN0cm9rZS1saW5lY2FwPSJ1bmRlZmluZWQiIHN0cm9rZS1saW5lam9pbj0idW5kZWZpbmVkIiBpZD0ic3ZnXzEiIHkyPSItNzAuMTc4NDA3IiB4Mj0iMTI0LjQ2NDA3NSIgeTE9Ii0zOC4zOTI3MzciIHgxPSIxNDQuODIxMjg5IiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlPSIjMDAwIiBmaWxsPSJub25lIi8+CiAgPGxpbmUgc3Ryb2tlPSIjNjY2NjY2IiBzdHJva2UtbGluZWNhcD0idW5kZWZpbmVkIiBzdHJva2UtbGluZWpvaW49InVuZGVmaW5lZCIgaWQ9InN2Z181IiB5Mj0iOS4xMDY5NTciIHgyPSIwLjk0NzI0NyIgeTE9Ii0wLjAxODEyOCIgeDE9IjAuOTQ3MjQ3IiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiLz4KICA8bGluZSBzdHJva2UtbGluZWNhcD0idW5kZWZpbmVkIiBzdHJva2UtbGluZWpvaW49InVuZGVmaW5lZCIgaWQ9InN2Z183IiB5Mj0iOSIgeDI9IjEwLjA3MzUyOSIgeTE9IjkiIHgxPSItMC42NTU2NCIgc3Ryb2tlLXdpZHRoPSIwIiBzdHJva2U9IiM2NjY2NjYiIGZpbGw9Im5vbmUiLz4KIDwvZz4KPC9zdmc+) 0 100% no-repeat content-box border-box;padding-left:3px;bottom:0;left:0;right:auto}.vue-grid-item.disable-userselect{-webkit-user-select:none;user-select:none}.vue-grid-layout,.item[data-v-668f099b]{position:relative}.border[data-v-668f099b]{border:1px solid #ccc}.item-content[data-v-668f099b]{background:#fff;border-radius:2px;width:100%;height:100%;overflow:hidden}.grid-page-wraper{width:100%;height:100%;padding:5px}.grid-page-content{border-radius:4px;width:100%;height:100%}.view-item-row[data-v-47b7eabd]{cursor:pointer;justify-content:space-between;align-items:center;width:100%;display:flex}.view-item-row .view-name-container[data-v-47b7eabd]{flex:1;align-items:center;min-width:0;padding:4px 0;display:flex}.view-item-row .view-name-container .view-name[data-v-47b7eabd]{text-overflow:ellipsis;white-space:nowrap;flex:0 auto;overflow:hidden}.view-item-row .view-name-container .view-name[data-v-47b7eabd]:hover{color:#1890ff}.view-item-row .view-name-container .view-default-tag[data-v-47b7eabd]{flex:none;margin-left:4px}.view-item-container[data-v-47b7eabd]{position:relative}.view-item-container .view-actions[data-v-47b7eabd]{opacity:0;background:#f9f9f9;border-radius:4px;align-items:center;gap:4px;height:30px;transition:opacity .2s;display:flex;position:absolute;top:0;right:0}.view-item-container .view-actions.current[data-v-47b7eabd]{background:#b9defd}.view-item-container:hover .view-actions[data-v-47b7eabd]{opacity:1}.collapses .ant-collapse-item .ant-collapse-content .ant-collapse-content-box{padding:0}.config-container[data-v-681bc6f1]{background:#fff;flex-direction:column;justify-content:space-between;height:100%;display:flex}.config-container[data-v-681bc6f1] .ant-tabs{flex:1;padding:0;overflow:hidden}.config-container[data-v-681bc6f1] .ant-tabs .ant-tabs-content-top{height:100%}.config-container[data-v-681bc6f1] .ant-tabs .ant-tabs-nav{padding:0 10px}.left-extra[data-v-681bc6f1]{margin-right:10px}[data-v-681bc6f1] .ant-tabs-nav{margin-bottom:0}.global-filter-loading[data-v-a7f4228e]{z-index:3000;background:#ffffffa6;flex-direction:column;justify-content:center;align-items:center;gap:16px;display:flex;position:fixed;inset:0}.global-filter-loading__text[data-v-a7f4228e]{color:#333;font-size:14px}.table-wrapper[data-v-4fd73b2f]{flex-direction:column;flex:1;height:100%;display:flex;overflow:hidden}.toggle-button[data-v-4fd73b2f]{cursor:pointer;height:46px;font-size:20px;line-height:33px}.toggle-button[data-v-4fd73b2f]:hover{color:#1890ff;filter:drop-shadow(2px 2px 2px #bddfff)}.filter-message[data-v-4fd73b2f]{gap:14px;display:flex}.pri-page[data-v-76801f0e]{height:100%;padding-top:4px;padding-left:4px;padding-right:4px}.pri-wrapper[data-v-76801f0e]{flex-direction:row;justify-content:space-between;gap:4px;height:100%;display:flex;overflow:hidden}.left-slide-outer[data-v-76801f0e]{background-color:#fff;width:220px;height:100%;overflow:hidden}.left-wrapper[data-v-76801f0e]{background-color:#fff;width:220px;height:100%;padding-left:4px;padding-right:4px;overflow:hidden}.left-slide-enter-active[data-v-76801f0e],.left-slide-leave-active[data-v-76801f0e]{transition:width .3s,opacity .3s;overflow:hidden}.left-slide-enter-from[data-v-76801f0e],.left-slide-leave-to[data-v-76801f0e]{opacity:0;width:0}.left-slide-leave-from[data-v-76801f0e],.left-slide-enter-to[data-v-76801f0e]{opacity:1;width:220px}.right-wrapper[data-v-76801f0e]{background-color:#fff;flex-direction:row;flex:1;justify-content:space-between;height:100%;display:flex;overflow:hidden}.left-space[data-v-76801f0e]{width:0;transition:width .2s}.left-space.setting-open[data-v-76801f0e]{width:calc(var(--drawer_width) - var(--x))}.right-space[data-v-76801f0e]{width:0;transition:width .2s}.right-space.detail-open[data-v-76801f0e]{width:calc(var(--detail_width))}.table-modal[data-v-9a04fe22]{flex-direction:column;gap:8px;display:flex}.table-modal .header[data-v-9a04fe22]{padding:4px}.field-extra[data-v-02b9ac99]{color:#999;margin-top:2px;font-size:12px;line-height:1.4}.field-hint[data-v-0c465e84]{color:#999;margin-bottom:8px;font-size:12px}.pl-item[data-v-0c465e84]{align-items:flex-start;gap:8px;margin-bottom:8px;display:flex}.pl-subtitle[data-v-0c465e84]{color:#000000d9;margin:4px 0 8px;font-size:13px;font-weight:500}.field-card[data-v-0c465e84]{margin-bottom:12px}.import-col-toolbar[data-v-0c465e84]{align-items:center;gap:8px;margin-bottom:12px;display:flex}.import-col-label[data-v-0c465e84]{color:#000000d9;font-size:13px}.modal-footer[data-v-0c465e84]{flex-direction:column;display:flex}.footer-error[data-v-0c465e84]{margin-bottom:8px}.footer-buttons[data-v-0c465e84]{justify-content:flex-end;gap:8px;display:flex}.field-name[data-v-0c465e84]{color:#1890ff;font-weight:500}.qb-group[data-v-1c5e0123]{border-left:2px solid #f0f0f0;padding-left:8px}.qb-group-head[data-v-1c5e0123]{gap:8px;margin-bottom:8px;display:flex}.qb-group-body[data-v-1c5e0123]{flex-direction:column;gap:6px;display:flex}.qb-rule[data-v-1c5e0123]{align-items:center;gap:8px;display:flex}.qb-subgroup[data-v-1c5e0123]{border-left:2px dashed #f0f0f0;padding:6px 0 6px 8px}.qb-group[data-v-1f8cf6f5]{border-left:2px solid #f0f0f0;padding-left:8px}.qb-group-head[data-v-1f8cf6f5]{gap:8px;margin-bottom:8px;display:flex}.qb-group-body[data-v-1f8cf6f5]{flex-direction:column;gap:6px;display:flex}.qb-rule[data-v-1f8cf6f5]{align-items:center;gap:8px;display:flex}.qb-subgroup[data-v-1f8cf6f5]{border-left:2px dashed #f0f0f0;padding:6px 0 6px 8px}.conditions-scroll[data-v-1f8cf6f5]{max-height:200px;padding-right:8px;overflow-y:auto}.time-range-row[data-v-1f8cf6f5]{align-items:center;gap:8px;margin-top:8px;display:flex}.field-label[data-v-1f8cf6f5]{color:#000000d9;font-weight:500}.mark-container{color:#2d3748;overflow-wrap:break-word;word-break:break-word;box-sizing:border-box;background-color:#fff;margin:0 auto;padding:1rem 0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;font-size:16px;line-height:1.6}.mark-container h1,.mark-container h2,.mark-container h3,.mark-container h4,.mark-container h5,.mark-container h6{margin-top:2.5rem;margin-bottom:1.5rem;padding-bottom:.5rem;font-weight:700;position:relative}.mark-container h1{color:#4299e1;font-size:2.25rem}.mark-container h2{border-bottom:2px solid #e2e8f0;font-size:1.75rem}.mark-container h3{color:#4299e1;font-size:1.5rem}.mark-container h4{color:#4299e1;font-size:1.25rem}.mark-container h5,.mark-container h6{color:#4299e1;font-size:1rem}.mark-container p{color:#4a5568;margin-bottom:1.25rem}.mark-container ul,.mark-container ol{margin-bottom:1.25rem;padding-left:2rem}.mark-container li,.mark-container li>p{margin-bottom:.5rem}.mark-container pre{background-color:#f0f4f8;border-radius:.5rem;margin:1.5rem 0;padding:1.5rem;font-family:Fira Code,Consolas,monospace;font-size:.95rem;line-height:1.5;overflow-x:auto;box-shadow:0 4px 6px -1px #0000001a}.mark-container pre code{font-size:inherit;line-height:inherit;color:inherit;background-color:#0000;padding:0}.mark-container blockquote{color:#4a5568;background-color:#4299e10d;border-left:.25rem solid #4299e1;border-radius:0 .5rem .5rem 0;margin:1.5rem 0;padding:1rem 1.5rem}.mark-container table{border-collapse:collapse;width:100%;margin:1.5rem 0}.mark-container th,.mark-container td{text-align:left;border:1px solid #e2e8f0;padding:.75rem 1rem}.mark-container th{background-color:#f8fafc;font-weight:600}.mark-container a{color:#4299e1;text-decoration:none}.mark-container a:hover{color:#2b6cb0;text-decoration:underline}.mark-container hr{border:0;border-top:1px solid #e2e8f0;margin:2rem 0}.mark-container code{color:#2d3748;background-color:#f0f4f8;border-radius:.25rem;padding:.2rem .4rem;font-family:Fira Code,Consolas,monospace;font-size:.95rem}.mark-container strong{color:#4299e1;font-weight:600}@media (width<=768px){.mark-container{padding:1.5rem;font-size:15px}.mark-container h1{font-size:1.8rem}.mark-container h2{font-size:1.4rem}}.mark-container .mark-code-block{position:relative}.mark-container .md-copy-btn{z-index:2;color:#4a5568;cursor:pointer;-webkit-user-select:none;user-select:none;background:#fff;border:1px solid #cbd5e0;border-radius:.25rem;padding:2px 10px;font-size:12px;line-height:1.6;position:absolute;top:.6rem;right:.6rem}.mark-container .md-copy-btn:hover{color:#4299e1;border-color:#4299e1}.mark-container .md-copy-btn:active{background:#f0f4f8}.batch-toolbar[data-v-aecb1aff]{align-items:center;gap:8px;margin-bottom:12px;display:flex}.batch-tip[data-v-aecb1aff]{color:#999;margin-left:auto;font-size:12px}
|
|
2
2
|
/*$vite$:1*/
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FieldRender-BbKYSJCn.js","names":[],"sources":["../src/components/FormRender/FieldRender.vue","../src/components/FormRender/FieldRender.vue"],"sourcesContent":["<template>\n <a-form-item\n v-if=\"field.type !== 'divider' && (field?.is_search_show !== false || field_render_show)\"\n :extra=\"field.extra\"\n :label=\"\n is_show_label ? (field.label_i18n == undefined ? field.label : t(field.label_i18n)) : null\n \"\n :name=\"field.name\"\n v-bind=\"validateInfos ? validateInfos[field.name] : null\"\n >\n <div\n v-if=\"field.type === 'kong'\"\n style=\"height: 62px; width: 100%\"\n ></div>\n <!-- 展示内容-->\n <div v-if=\"field.type === 'tag'\">\n <a-tag\n :color=\"field.color ? field.color(field, model) : 'green'\"\n :style=\"field.style\"\n v-if=\"(field.content && field.content(field, model)) || model\"\n @click=\"field.cb ? field.cb(field, model) : ''\"\n >\n <span v-if=\"field.content\">\n {{ field.content(field, model) }}\n </span>\n <span v-else>{{ model }}</span>\n </a-tag>\n </div>\n <!-- 表单占位组件-->\n <!-- 默认 【表单空位 高62px; 名称空位 高30px;】 如遇个别特殊表单,根据实际情况自行调节 高度-->\n <!-- height 属性必填-->\n <div\n v-if=\"field.type === 'kong_title'\"\n :style=\"'height: ' + field.height + 'px'\"\n ></div>\n <div\n v-if=\"field.type === 'title'\"\n style=\"height: 30px; position: relative\"\n >\n <span\n style=\"\n position: absolute;\n bottom: 0;\n padding: 0;\n margin: 0;\n font-weight: bolder;\n font-size: 17px;\n \"\n >\n {{ field.name }}\n </span>\n </div>\n <a-rate\n v-if=\"field.type === 'rate'\"\n v-model:value=\"model\"\n :disabled=\"field.disabled\"\n allow-half\n />\n <a-input\n v-if=\"field.type === 'input'\"\n v-model:value=\"model\"\n :addon-after=\"field.addonAfter\"\n :addon-before=\"field.addonBefore\"\n :allow-clear=\"field.allowClear == undefined ? true : field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :maxlength=\"field.maxlength\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n :type=\"field.type ? field.type : 'input'\"\n size=\"small\"\n />\n <a-input\n v-if=\"field.type === 'volume'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :maxlength=\"field.maxlength\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n addon-after=\"L\"\n size=\"small\"\n type=\"number\"\n />\n <a-input\n v-if=\"field.type === 'weight'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :maxlength=\"field.maxlength\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n addon-after=\"Kg\"\n size=\"small\"\n type=\"number\"\n />\n <attribute-table\n v-if=\"field.type === 'attributetable'\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :init_model=\"field.init_model\"\n size=\"small\"\n />\n <attribute-nom-table\n v-if=\"field.type === 'attributenomtable'\"\n size=\"small\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :init_model=\"field.init_model\"\n />\n\n <a-textarea\n v-if=\"field.type === 'textarea'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autoSize=\"{\n minRows: field.minRows ? field.minRows : 5,\n maxRows: field.maxRows ? field.maxRows : null,\n }\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :disabled=\"field.disabled\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n />\n <json-str\n v-if=\"field.type === 'jsonstr'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :disabled=\"field.disabled\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n />\n <json-obj\n v-if=\"field.type === 'jsonobj'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :disabled=\"field.disabled\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n />\n <a-input-number\n v-if=\"field.type === 'number'\"\n v-model:value=\"model\"\n :addon-after=\"field.addonAfter\"\n :addon-before=\"field.addonBefore\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :formatter=\"field.formatter\"\n :max=\"field.max\"\n :min=\"field.min\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n :precision=\"field.precision\"\n :step=\"field.step\"\n size=\"small\"\n style=\"width: 100%\"\n />\n <a-input-password\n v-if=\"field.type === 'password'\"\n v-model:value=\"model\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :formatter=\"field.formatter\"\n :max=\"field.max\"\n :min=\"field.min\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n :precision=\"field.precision\"\n :step=\"field.step\"\n size=\"small\"\n style=\"width: 100%\"\n />\n <template v-if=\"field.type === 'select'\">\n <a-select\n v-if=\"field.mode === 'default'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :maxTagCount=\"field.maxTagCount ? field.maxTagCount : 'responsive'\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-search=\"!!field.show_search\"\n size=\"small\"\n style=\"min-width: 150px\"\n >\n <a-select-option\n v-for=\"option in options\"\n :key=\"option[field.valueKey ? field.valueKey : 'value']\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n {{ option[field.labelKey ? field.labelKey : 'label'] }}\n </a-select-option>\n </a-select>\n <a-select\n v-else\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :maxTagCount=\"field.maxTagCount ? field.maxTagCount : 'responsive'\"\n :mode=\"field.mode\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-search=\"!!field.show_search\"\n size=\"small\"\n style=\"min-width: 150px\"\n >\n <a-select-option\n v-for=\"(option, index) in options\"\n :key=\"index\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n {{ option[field.labelKey ? field.labelKey : 'label'] }}\n </a-select-option>\n </a-select>\n </template>\n <template v-if=\"field.type === 'groupselect'\">\n <a-select\n v-if=\"field.mode === 'default'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :getPopupContainer=\"field.getPopupContainer == undefined ? null : field.getPopupContainer\"\n :labelInValue=\"field.labelInValue === true\"\n :maxTagCount=\"field.maxTagCount ? field.maxTagCount : 'responsive'\"\n :options=\"options\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-search=\"!!field.show_search\"\n size=\"small\"\n style=\"min-width: 150px\"\n ></a-select>\n <a-select\n v-else\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :getPopupContainer=\"field.getPopupContainer == undefined ? null : field.getPopupContainer\"\n :labelInValue=\"field.labelInValue === true\"\n :maxTagCount=\"field.maxTagCount ? field.maxTagCount : 'responsive'\"\n :mode=\"field.mode\"\n :options=\"options\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-search=\"!!field.show_search\"\n size=\"small\"\n style=\"min-width: 150px\"\n ></a-select>\n </template>\n\n <remote-select-pro\n v-if=\"field.type === 'remoteselectpro'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :outModel=\"outModel\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :init_watch=\"field.init_watch\"\n :label-key=\"field.labelKey\"\n :label-key-type=\"field.labelKeyType\"\n :label-key-list=\"field.labelKeyList\"\n :label-space=\"field.labelSpace\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n :is_input=\"field.is_input\"\n :placeholder=\"\n field.placeholder_i18n == undefined\n ? field.placeholder\n ? field.placeholder\n : t('请选择') + field.label\n : t(field.placeholder_i18n)\n \"\n />\n <a-cascader\n v-if=\"field.type === 'cascader'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :changeOnSelect=\"field.changeOnSelect\"\n :options=\"field.getOptionsData ? field.getOptionsData(options, model) : options\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n size=\"small\"\n />\n <remote-cascader\n v-if=\"field.type === 'remotecascader'\"\n v-model:value=\"model\"\n v-model:label=\"labelModel\"\n :field=\"field\"\n :formModel=\"formModel\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :label-key=\"field.labelKey\"\n :label-key-list=\"field.labelKeyList\"\n :label-space=\"field.labelSpace\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n />\n\n <a-month-picker\n v-if=\"field.type === 'monthpicker'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :format=\"field.format\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-time=\"field.showTime\"\n :value-format=\"field.valueFormat\"\n size=\"small\"\n style=\"width: 100%\"\n />\n <a-date-picker\n v-if=\"field.type === 'datepicker'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :format=\"field.format\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-time=\"field.showTime\"\n :value-format=\"field.valueFormat\"\n :picker=\"field.picker ? field.picker : 'date'\"\n size=\"small\"\n style=\"width: 100%\"\n />\n\n <a-range-picker\n v-if=\"field.type === 'rangepicker'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :format=\"field.format\"\n :placeholder=\"field.placeholder ? field.placeholder : [$t('开始时间'), $t('结束时间')]\"\n :show-time=\"field.showTime\"\n :value-format=\"field.valueFormat\"\n :picker=\"field.picker ? field.picker : 'date'\"\n size=\"small\"\n style=\"width: 100%\"\n />\n\n <a-time-picker\n v-if=\"field.type === 'timepicker'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :format=\"field.format ? field.format : 'HH:mm'\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :value-format=\"field.valueFormat ? field.valueFormat : 'HH:mm'\"\n size=\"small\"\n style=\"width: 100%\"\n />\n <a-radio-group\n v-if=\"field.type === 'radio'\"\n v-model:value=\"model\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n size=\"small\"\n >\n <a-radio\n v-for=\"option in options\"\n :key=\"option[field.valueKey ? field.valueKey : 'value']\"\n :disabled=\"option.disabled\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n {{ option[field.labelKey ? field.labelKey : 'label'] }}\n </a-radio>\n </a-radio-group>\n\n <a-checkbox-group\n v-if=\"field.type === 'checkbox'\"\n v-model:value=\"model\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n size=\"small\"\n >\n <a-checkbox\n v-for=\"option in options\"\n :key=\"option[field.valueKey ? field.valueKey : 'value']\"\n :disabled=\"option.disabled\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n {{ option[field.labelKey ? field.labelKey : 'label'] }}\n </a-checkbox>\n </a-checkbox-group>\n\n <a-tree-select\n v-if=\"field.type === 'treeselect'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :tree-checkable=\"field.multiple\"\n :tree-data=\"options\"\n :tree-label-prop=\"field.labelKey\"\n :tree-node-filter-prop=\"field.valueKey\"\n size=\"small\"\n />\n <remote-filter-select\n v-if=\"field.type === 'remotefilterselect'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :label-key=\"field.labelKey\"\n :label-key-list=\"field.labelKeyList\"\n :label-space=\"field.labelSpace\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n />\n <remote-select\n v-if=\"field.type === 'remoteselect'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :label-key=\"field.labelKey\"\n :label-key-list=\"field.labelKeyList\"\n :label-space=\"field.labelSpace\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n />\n <remote-tree-select\n v-if=\"field.type === 'remotetreeselect'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :field=\"field\"\n :formModel=\"formModel\"\n :get-data=\"field.getData\"\n :label-key=\"field.labelKey\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n />\n <remote-modal\n v-if=\"field.type === 'remotemodal'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :columns=\"field.columns\"\n :field=\"field\"\n :field_status=\"field.field_status\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :modalType=\"field.modalType\"\n :search_config=\"field.search_config\"\n :watch=\"field.watch\"\n />\n <remote-table\n v-if=\"field.type === 'remotetable'\"\n v-model:value=\"model\"\n :columns=\"field.columns\"\n :formModel=\"formModel\"\n :field=\"field\"\n :field_status=\"field.field_status\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :modalType=\"field.modalType\"\n :search_config=\"field.search_config\"\n :watch=\"field.watch\"\n />\n <remote-table-2\n v-if=\"field.type === 'remotetable2'\"\n v-model:value=\"model\"\n :columns=\"field.columns\"\n :formModel=\"formModel\"\n :field=\"field\"\n :field_status=\"field.field_status\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :modalType=\"field.modalType\"\n :search_config=\"field.search_config\"\n :watch=\"field.watch\"\n />\n <remote-text\n v-if=\"field.type === 'remotetext'\"\n v-model:value=\"model\"\n :columns=\"field.columns\"\n :formModel=\"formModel\"\n :field=\"field\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :modalType=\"field.modalType\"\n :search_config=\"field.search_config\"\n :watch=\"field.watch\"\n />\n <a-radio-group\n v-if=\"field.type === 'radio-color'\"\n v-model:value=\"model\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n size=\"small\"\n >\n <a-radio\n v-for=\"option in options\"\n :key=\"option[field.valueKey ? field.valueKey : 'value']\"\n :disabled=\"option.disabled\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n <div\n :style=\"{\n width: '20px',\n height: '20px',\n backgroundColor: option[field.valueKey ? field.valueKey : 'value'],\n }\"\n ></div>\n </a-radio>\n </a-radio-group>\n <div v-if=\"field.type === 'button'\">\n <a-button :type=\"field.btn_type\" :size=\"field.size\" @click=\"field.cb(formModel)\">{{ field.btn_text }}</a-button>\n </div>\n </a-form-item>\n\n <a-divider\n v-if=\"field.type === 'divider'\"\n :orientation=\"field.orientation\"\n >\n {{ field.label }}\n </a-divider>\n</template>\n<script lang=\"ts\">\nimport RemoteSelect from 'liyu-pc-base/components/FormRender/RemoteSelect/RemoteSelect.vue';\nimport RemoteCascader from 'liyu-pc-base/components/FormRender/RemoteCascader/RemoteCascader.vue';\nimport RemoteModal from 'liyu-pc-base/components/FormRender/RemoteModal/RemoteModal.vue';\nimport RemoteTreeSelect from 'liyu-pc-base/components/FormRender/RemoteTreeSelect/RemoteTreeSelect.vue';\nimport RemoteTable from 'liyu-pc-base/components/FormRender/RemoteTable/RemoteTable.vue';\nimport { defineComponent } from 'vue';\nimport RemoteFilterSelect from 'liyu-pc-base/components/FormRender/RemoteFilterSelect/RemoteFilterSelect.vue';\nimport AttributeNomTable from 'liyu-pc-base/components/FormRender/AttributeNomTable/index.vue';\nimport AttributeTable from 'liyu-pc-base/components/FormRender/AttributeTable/index.vue';\nimport JsonStr from 'liyu-pc-base/components/FormRender/JsonStr/index.vue';\nimport JsonObj from 'liyu-pc-base/components/FormRender/JsonObj/index.vue';\nimport RemoteText from 'liyu-pc-base/components/FormRender/RemoteText/RemoteText.vue';\nimport RemoteTable2 from 'liyu-pc-base/components/FormRender/RemoteTable2/RemoteTable2.vue';\nimport RemoteSelectPro from 'liyu-pc-base/components/FormRender/RemoteSelectPro/RemoteSelectPro.vue';\nimport { useI18n } from 'vue-i18n';\n\nexport default defineComponent({\n name: 'FieldRender',\n props: {\n field: {\n type: Object,\n required: true,\n },\n value: {\n required: true,\n },\n label: {\n required: false,\n },\n options: {\n type: Array,\n default: () => [],\n },\n validateInfos: {\n type: Object,\n default: () => {},\n },\n formModel: {\n type: Object,\n default: () => {},\n },\n outModel: {\n type: Object,\n default: () => {},\n },\n field_render_show: {\n type: Boolean,\n default: true,\n },\n is_show_label: {\n type: Boolean,\n default: true,\n },\n },\n setup() {\n const { t } = useI18n();\n return {\n t,\n };\n },\n data() {\n const rangeDate = (v: any) => {\n if (typeof v == 'string' && v.indexOf(',') >= 0) {\n return v.split(',');\n }\n return v;\n };\n return {\n rangeDate,\n model: this.field.type == 'rangepicker' ? rangeDate(this.value) : this.value,\n labelModel: this.label,\n };\n },\n watch: {\n model: {\n handler(newValue) {\n this.$emit('update:value', newValue);\n },\n },\n value: {\n handler(newValue) {\n if (this.field.type === 'input' && newValue) {\n this.model = newValue.toString().replace(/(^\\s*)|(\\s*$)/g, '');\n } else {\n this.model = newValue;\n }\n },\n },\n labelModel: {\n handler(newValue) {\n this.$emit('update:label', newValue);\n },\n },\n label: {\n handler(newValue) {\n this.labelModel = newValue;\n },\n },\n },\n created() {},\n components: {\n RemoteSelectPro,\n AttributeTable,\n AttributeNomTable,\n RemoteFilterSelect,\n RemoteModal,\n RemoteSelect,\n RemoteCascader,\n RemoteTreeSelect,\n RemoteTable,\n JsonStr,\n JsonObj,\n RemoteText,\n RemoteTable2,\n },\n});\n</script>\n\n<style scoped>\n.ant-calendar-picker {\n width: 100% !important;\n}\n</style>\n","<template>\n <a-form-item\n v-if=\"field.type !== 'divider' && (field?.is_search_show !== false || field_render_show)\"\n :extra=\"field.extra\"\n :label=\"\n is_show_label ? (field.label_i18n == undefined ? field.label : t(field.label_i18n)) : null\n \"\n :name=\"field.name\"\n v-bind=\"validateInfos ? validateInfos[field.name] : null\"\n >\n <div\n v-if=\"field.type === 'kong'\"\n style=\"height: 62px; width: 100%\"\n ></div>\n <!-- 展示内容-->\n <div v-if=\"field.type === 'tag'\">\n <a-tag\n :color=\"field.color ? field.color(field, model) : 'green'\"\n :style=\"field.style\"\n v-if=\"(field.content && field.content(field, model)) || model\"\n @click=\"field.cb ? field.cb(field, model) : ''\"\n >\n <span v-if=\"field.content\">\n {{ field.content(field, model) }}\n </span>\n <span v-else>{{ model }}</span>\n </a-tag>\n </div>\n <!-- 表单占位组件-->\n <!-- 默认 【表单空位 高62px; 名称空位 高30px;】 如遇个别特殊表单,根据实际情况自行调节 高度-->\n <!-- height 属性必填-->\n <div\n v-if=\"field.type === 'kong_title'\"\n :style=\"'height: ' + field.height + 'px'\"\n ></div>\n <div\n v-if=\"field.type === 'title'\"\n style=\"height: 30px; position: relative\"\n >\n <span\n style=\"\n position: absolute;\n bottom: 0;\n padding: 0;\n margin: 0;\n font-weight: bolder;\n font-size: 17px;\n \"\n >\n {{ field.name }}\n </span>\n </div>\n <a-rate\n v-if=\"field.type === 'rate'\"\n v-model:value=\"model\"\n :disabled=\"field.disabled\"\n allow-half\n />\n <a-input\n v-if=\"field.type === 'input'\"\n v-model:value=\"model\"\n :addon-after=\"field.addonAfter\"\n :addon-before=\"field.addonBefore\"\n :allow-clear=\"field.allowClear == undefined ? true : field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :maxlength=\"field.maxlength\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n :type=\"field.type ? field.type : 'input'\"\n size=\"small\"\n />\n <a-input\n v-if=\"field.type === 'volume'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :maxlength=\"field.maxlength\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n addon-after=\"L\"\n size=\"small\"\n type=\"number\"\n />\n <a-input\n v-if=\"field.type === 'weight'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :maxlength=\"field.maxlength\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n addon-after=\"Kg\"\n size=\"small\"\n type=\"number\"\n />\n <attribute-table\n v-if=\"field.type === 'attributetable'\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :init_model=\"field.init_model\"\n size=\"small\"\n />\n <attribute-nom-table\n v-if=\"field.type === 'attributenomtable'\"\n size=\"small\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :init_model=\"field.init_model\"\n />\n\n <a-textarea\n v-if=\"field.type === 'textarea'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autoSize=\"{\n minRows: field.minRows ? field.minRows : 5,\n maxRows: field.maxRows ? field.maxRows : null,\n }\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :disabled=\"field.disabled\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n />\n <json-str\n v-if=\"field.type === 'jsonstr'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :disabled=\"field.disabled\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n />\n <json-obj\n v-if=\"field.type === 'jsonobj'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :disabled=\"field.disabled\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n />\n <a-input-number\n v-if=\"field.type === 'number'\"\n v-model:value=\"model\"\n :addon-after=\"field.addonAfter\"\n :addon-before=\"field.addonBefore\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :formatter=\"field.formatter\"\n :max=\"field.max\"\n :min=\"field.min\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n :precision=\"field.precision\"\n :step=\"field.step\"\n size=\"small\"\n style=\"width: 100%\"\n />\n <a-input-password\n v-if=\"field.type === 'password'\"\n v-model:value=\"model\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :formatter=\"field.formatter\"\n :max=\"field.max\"\n :min=\"field.min\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请输入') + field.label\"\n :precision=\"field.precision\"\n :step=\"field.step\"\n size=\"small\"\n style=\"width: 100%\"\n />\n <template v-if=\"field.type === 'select'\">\n <a-select\n v-if=\"field.mode === 'default'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :maxTagCount=\"field.maxTagCount ? field.maxTagCount : 'responsive'\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-search=\"!!field.show_search\"\n size=\"small\"\n style=\"min-width: 150px\"\n >\n <a-select-option\n v-for=\"option in options\"\n :key=\"option[field.valueKey ? field.valueKey : 'value']\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n {{ option[field.labelKey ? field.labelKey : 'label'] }}\n </a-select-option>\n </a-select>\n <a-select\n v-else\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :maxTagCount=\"field.maxTagCount ? field.maxTagCount : 'responsive'\"\n :mode=\"field.mode\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-search=\"!!field.show_search\"\n size=\"small\"\n style=\"min-width: 150px\"\n >\n <a-select-option\n v-for=\"(option, index) in options\"\n :key=\"index\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n {{ option[field.labelKey ? field.labelKey : 'label'] }}\n </a-select-option>\n </a-select>\n </template>\n <template v-if=\"field.type === 'groupselect'\">\n <a-select\n v-if=\"field.mode === 'default'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :getPopupContainer=\"field.getPopupContainer == undefined ? null : field.getPopupContainer\"\n :labelInValue=\"field.labelInValue === true\"\n :maxTagCount=\"field.maxTagCount ? field.maxTagCount : 'responsive'\"\n :options=\"options\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-search=\"!!field.show_search\"\n size=\"small\"\n style=\"min-width: 150px\"\n ></a-select>\n <a-select\n v-else\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :getPopupContainer=\"field.getPopupContainer == undefined ? null : field.getPopupContainer\"\n :labelInValue=\"field.labelInValue === true\"\n :maxTagCount=\"field.maxTagCount ? field.maxTagCount : 'responsive'\"\n :mode=\"field.mode\"\n :options=\"options\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-search=\"!!field.show_search\"\n size=\"small\"\n style=\"min-width: 150px\"\n ></a-select>\n </template>\n\n <remote-select-pro\n v-if=\"field.type === 'remoteselectpro'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :outModel=\"outModel\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :init_watch=\"field.init_watch\"\n :label-key=\"field.labelKey\"\n :label-key-type=\"field.labelKeyType\"\n :label-key-list=\"field.labelKeyList\"\n :label-space=\"field.labelSpace\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n :is_input=\"field.is_input\"\n :placeholder=\"\n field.placeholder_i18n == undefined\n ? field.placeholder\n ? field.placeholder\n : t('请选择') + field.label\n : t(field.placeholder_i18n)\n \"\n />\n <a-cascader\n v-if=\"field.type === 'cascader'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :changeOnSelect=\"field.changeOnSelect\"\n :options=\"field.getOptionsData ? field.getOptionsData(options, model) : options\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n size=\"small\"\n />\n <remote-cascader\n v-if=\"field.type === 'remotecascader'\"\n v-model:value=\"model\"\n v-model:label=\"labelModel\"\n :field=\"field\"\n :formModel=\"formModel\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :label-key=\"field.labelKey\"\n :label-key-list=\"field.labelKeyList\"\n :label-space=\"field.labelSpace\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n />\n\n <a-month-picker\n v-if=\"field.type === 'monthpicker'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :format=\"field.format\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-time=\"field.showTime\"\n :value-format=\"field.valueFormat\"\n size=\"small\"\n style=\"width: 100%\"\n />\n <a-date-picker\n v-if=\"field.type === 'datepicker'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :autocomplete=\"field.autocomplete == undefined ? 'off' : field.autocomplete\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :format=\"field.format\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :show-time=\"field.showTime\"\n :value-format=\"field.valueFormat\"\n :picker=\"field.picker ? field.picker : 'date'\"\n size=\"small\"\n style=\"width: 100%\"\n />\n\n <a-range-picker\n v-if=\"field.type === 'rangepicker'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :format=\"field.format\"\n :placeholder=\"field.placeholder ? field.placeholder : [$t('开始时间'), $t('结束时间')]\"\n :show-time=\"field.showTime\"\n :value-format=\"field.valueFormat\"\n :picker=\"field.picker ? field.picker : 'date'\"\n size=\"small\"\n style=\"width: 100%\"\n />\n\n <a-time-picker\n v-if=\"field.type === 'timepicker'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :format=\"field.format ? field.format : 'HH:mm'\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :value-format=\"field.valueFormat ? field.valueFormat : 'HH:mm'\"\n size=\"small\"\n style=\"width: 100%\"\n />\n <a-radio-group\n v-if=\"field.type === 'radio'\"\n v-model:value=\"model\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n size=\"small\"\n >\n <a-radio\n v-for=\"option in options\"\n :key=\"option[field.valueKey ? field.valueKey : 'value']\"\n :disabled=\"option.disabled\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n {{ option[field.labelKey ? field.labelKey : 'label'] }}\n </a-radio>\n </a-radio-group>\n\n <a-checkbox-group\n v-if=\"field.type === 'checkbox'\"\n v-model:value=\"model\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n size=\"small\"\n >\n <a-checkbox\n v-for=\"option in options\"\n :key=\"option[field.valueKey ? field.valueKey : 'value']\"\n :disabled=\"option.disabled\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n {{ option[field.labelKey ? field.labelKey : 'label'] }}\n </a-checkbox>\n </a-checkbox-group>\n\n <a-tree-select\n v-if=\"field.type === 'treeselect'\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :dropdownMatchSelectWidth=\"false\"\n :placeholder=\"field.placeholder ? field.placeholder : $t('请选择') + field.label\"\n :tree-checkable=\"field.multiple\"\n :tree-data=\"options\"\n :tree-label-prop=\"field.labelKey\"\n :tree-node-filter-prop=\"field.valueKey\"\n size=\"small\"\n />\n <remote-filter-select\n v-if=\"field.type === 'remotefilterselect'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :label-key=\"field.labelKey\"\n :label-key-list=\"field.labelKeyList\"\n :label-space=\"field.labelSpace\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n />\n <remote-select\n v-if=\"field.type === 'remoteselect'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :field=\"field\"\n :formModel=\"formModel\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :label-key=\"field.labelKey\"\n :label-key-list=\"field.labelKeyList\"\n :label-space=\"field.labelSpace\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n />\n <remote-tree-select\n v-if=\"field.type === 'remotetreeselect'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :allow-clear=\"field.allowClear\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n :field=\"field\"\n :formModel=\"formModel\"\n :get-data=\"field.getData\"\n :label-key=\"field.labelKey\"\n :search_config=\"field.search_config\"\n :value-key=\"field.valueKey\"\n />\n <remote-modal\n v-if=\"field.type === 'remotemodal'\"\n v-model:label=\"labelModel\"\n v-model:value=\"model\"\n :columns=\"field.columns\"\n :field=\"field\"\n :field_status=\"field.field_status\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :modalType=\"field.modalType\"\n :search_config=\"field.search_config\"\n :watch=\"field.watch\"\n />\n <remote-table\n v-if=\"field.type === 'remotetable'\"\n v-model:value=\"model\"\n :columns=\"field.columns\"\n :formModel=\"formModel\"\n :field=\"field\"\n :field_status=\"field.field_status\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :modalType=\"field.modalType\"\n :search_config=\"field.search_config\"\n :watch=\"field.watch\"\n />\n <remote-table-2\n v-if=\"field.type === 'remotetable2'\"\n v-model:value=\"model\"\n :columns=\"field.columns\"\n :formModel=\"formModel\"\n :field=\"field\"\n :field_status=\"field.field_status\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :modalType=\"field.modalType\"\n :search_config=\"field.search_config\"\n :watch=\"field.watch\"\n />\n <remote-text\n v-if=\"field.type === 'remotetext'\"\n v-model:value=\"model\"\n :columns=\"field.columns\"\n :formModel=\"formModel\"\n :field=\"field\"\n :get-data=\"field.getData\"\n :init_model=\"field.init_model\"\n :modalType=\"field.modalType\"\n :search_config=\"field.search_config\"\n :watch=\"field.watch\"\n />\n <a-radio-group\n v-if=\"field.type === 'radio-color'\"\n v-model:value=\"model\"\n :default-value=\"field.defaultValue\"\n :disabled=\"field.disabled\"\n size=\"small\"\n >\n <a-radio\n v-for=\"option in options\"\n :key=\"option[field.valueKey ? field.valueKey : 'value']\"\n :disabled=\"option.disabled\"\n :value=\"option[field.valueKey ? field.valueKey : 'value']\"\n >\n <div\n :style=\"{\n width: '20px',\n height: '20px',\n backgroundColor: option[field.valueKey ? field.valueKey : 'value'],\n }\"\n ></div>\n </a-radio>\n </a-radio-group>\n <div v-if=\"field.type === 'button'\">\n <a-button :type=\"field.btn_type\" :size=\"field.size\" @click=\"field.cb(formModel)\">{{ field.btn_text }}</a-button>\n </div>\n </a-form-item>\n\n <a-divider\n v-if=\"field.type === 'divider'\"\n :orientation=\"field.orientation\"\n >\n {{ field.label }}\n </a-divider>\n</template>\n<script lang=\"ts\">\nimport RemoteSelect from 'liyu-pc-base/components/FormRender/RemoteSelect/RemoteSelect.vue';\nimport RemoteCascader from 'liyu-pc-base/components/FormRender/RemoteCascader/RemoteCascader.vue';\nimport RemoteModal from 'liyu-pc-base/components/FormRender/RemoteModal/RemoteModal.vue';\nimport RemoteTreeSelect from 'liyu-pc-base/components/FormRender/RemoteTreeSelect/RemoteTreeSelect.vue';\nimport RemoteTable from 'liyu-pc-base/components/FormRender/RemoteTable/RemoteTable.vue';\nimport { defineComponent } from 'vue';\nimport RemoteFilterSelect from 'liyu-pc-base/components/FormRender/RemoteFilterSelect/RemoteFilterSelect.vue';\nimport AttributeNomTable from 'liyu-pc-base/components/FormRender/AttributeNomTable/index.vue';\nimport AttributeTable from 'liyu-pc-base/components/FormRender/AttributeTable/index.vue';\nimport JsonStr from 'liyu-pc-base/components/FormRender/JsonStr/index.vue';\nimport JsonObj from 'liyu-pc-base/components/FormRender/JsonObj/index.vue';\nimport RemoteText from 'liyu-pc-base/components/FormRender/RemoteText/RemoteText.vue';\nimport RemoteTable2 from 'liyu-pc-base/components/FormRender/RemoteTable2/RemoteTable2.vue';\nimport RemoteSelectPro from 'liyu-pc-base/components/FormRender/RemoteSelectPro/RemoteSelectPro.vue';\nimport { useI18n } from 'vue-i18n';\n\nexport default defineComponent({\n name: 'FieldRender',\n props: {\n field: {\n type: Object,\n required: true,\n },\n value: {\n required: true,\n },\n label: {\n required: false,\n },\n options: {\n type: Array,\n default: () => [],\n },\n validateInfos: {\n type: Object,\n default: () => {},\n },\n formModel: {\n type: Object,\n default: () => {},\n },\n outModel: {\n type: Object,\n default: () => {},\n },\n field_render_show: {\n type: Boolean,\n default: true,\n },\n is_show_label: {\n type: Boolean,\n default: true,\n },\n },\n setup() {\n const { t } = useI18n();\n return {\n t,\n };\n },\n data() {\n const rangeDate = (v: any) => {\n if (typeof v == 'string' && v.indexOf(',') >= 0) {\n return v.split(',');\n }\n return v;\n };\n return {\n rangeDate,\n model: this.field.type == 'rangepicker' ? rangeDate(this.value) : this.value,\n labelModel: this.label,\n };\n },\n watch: {\n model: {\n handler(newValue) {\n this.$emit('update:value', newValue);\n },\n },\n value: {\n handler(newValue) {\n if (this.field.type === 'input' && newValue) {\n this.model = newValue.toString().replace(/(^\\s*)|(\\s*$)/g, '');\n } else {\n this.model = newValue;\n }\n },\n },\n labelModel: {\n handler(newValue) {\n this.$emit('update:label', newValue);\n },\n },\n label: {\n handler(newValue) {\n this.labelModel = newValue;\n },\n },\n },\n created() {},\n components: {\n RemoteSelectPro,\n AttributeTable,\n AttributeNomTable,\n RemoteFilterSelect,\n RemoteModal,\n RemoteSelect,\n RemoteCascader,\n RemoteTreeSelect,\n RemoteTable,\n JsonStr,\n JsonObj,\n RemoteText,\n RemoteTable2,\n },\n});\n</script>\n\n<style scoped>\n.ant-calendar-picker {\n width: 100% !important;\n}\n</style>\n"],"mappings":"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"}
|