@vipl520/dk-ui 1.0.75 → 1.0.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +0 -3
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/index.min.mjs +1 -1
- package/dist/index.min.mjs.map +1 -1
- package/dist/index.mjs +0 -3
- package/dist/web-types.json +1 -1
- package/es/style-custom-input/src/style-custom-input.vue2.mjs +0 -1
- package/es/style-custom-input/src/style-custom-input.vue2.mjs.map +1 -1
- package/es/style-input/src/style-input.vue2.mjs +0 -2
- package/es/style-input/src/style-input.vue2.mjs.map +1 -1
- package/lib/style-custom-input/src/style-custom-input.vue2.js +0 -1
- package/lib/style-custom-input/src/style-custom-input.vue2.js.map +1 -1
- package/lib/style-input/src/style-input.vue2.js +0 -2
- package/lib/style-input/src/style-input.vue2.js.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
@@ -5920,8 +5920,6 @@ var _sfc_main$$ = /* @__PURE__ */ defineComponent({
|
|
5920
5920
|
});
|
5921
5921
|
obj[customComponent.name] = customParamsObj;
|
5922
5922
|
}
|
5923
|
-
console.log("props.modelValue", props.modelValue);
|
5924
|
-
console.log(obj);
|
5925
5923
|
values.value = obj;
|
5926
5924
|
loading.value = false;
|
5927
5925
|
};
|
@@ -9273,7 +9271,6 @@ var _sfc_main$R = /* @__PURE__ */ defineComponent({
|
|
9273
9271
|
};
|
9274
9272
|
const input = () => {
|
9275
9273
|
const value = tidyValue();
|
9276
|
-
console.log("value", value);
|
9277
9274
|
emit("update:modelValue", value);
|
9278
9275
|
emit("change", value);
|
9279
9276
|
};
|
package/dist/web-types.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"style-custom-input.vue2.mjs","sources":["../../../src/style-custom-input/src/style-custom-input.vue"],"sourcesContent":["<script lang=\"ts\">\nimport { defineComponent as __MACROS_defineComponent } from \"vue\";\nexport default /*#__PURE__*/ __MACROS_defineComponent({\n name: 'DkStyleCustomInput',\n});\n</script>\n<template>\n <div>\n <el-table :data=\"styles\" border :size=\"'small'\" style=\"width: 100%\">\n <template v-for=\"(col, idx) in column\" :key=\"col.label + idx\">\n <el-table-column :label=\"col.label\">\n <template #default=\"scope\">\n <el-input\n :size=\"'small'\"\n :model-value=\"scope.row[col.key] || ''\"\n @update:modelValue=\"(n: any) => (scope.row[col.key] = n)\"\n @input=\"onInput(scope.row)\"\n ></el-input>\n </template>\n </el-table-column>\n </template>\n <el-table-column width=\"70\" align=\"center\" fixed=\"right\" label=\"操作\">\n <template #default=\"scope\">\n <dk-icon icon=\"Delete\" @click=\"del(scope.$index)\"></dk-icon>\n </template>\n </el-table-column>\n </el-table>\n <div style=\"\">\n <el-button circle type=\"primary\" link size=\"small\" style=\"margin-left: 20px\" @click=\"add()\">\n <dk-icon icon=\"CirclePlusFilled\"></dk-icon>\n 添加\n </el-button>\n </div>\n </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { styleCustomInputProps } from './props'\nimport { reactive, watch } from 'vue'\n\n\n\nconst props = defineProps(styleCustomInputProps)\n\nconst emit = defineEmits(['update:modelValue', 'change'])\n\nconst column = [\n { label: '键名', key: 'label' },\n { label: '值', key: 'value' },\n]\n\nconst tidyModelValue = () => {\n return Object.keys(props.modelValue || {}).map((label) => {\n return { label, value: props.modelValue[label] }\n })\n}\nconst styles: any = reactive(tidyModelValue())\nconst onInput = (item: any) => {\n const flag = column.every((v) => {\n return item[v.key] !== undefined && item[v.key] !== '' && item[v.key] !== null\n })\n console.log('f', flag)\n if (flag) {\n input()\n }\n}\n\nconst tidyValue = () => {\n const obj: any = {}\n styles.forEach((v: any) => {\n if (v.label && v.value) {\n obj[v.label] = v.value\n }\n })\n return obj\n}\n\nconst input = () => {\n const value = tidyValue()\n
|
1
|
+
{"version":3,"file":"style-custom-input.vue2.mjs","sources":["../../../src/style-custom-input/src/style-custom-input.vue"],"sourcesContent":["<script lang=\"ts\">\nimport { defineComponent as __MACROS_defineComponent } from \"vue\";\nexport default /*#__PURE__*/ __MACROS_defineComponent({\n name: 'DkStyleCustomInput',\n});\n</script>\n<template>\n <div>\n <el-table :data=\"styles\" border :size=\"'small'\" style=\"width: 100%\">\n <template v-for=\"(col, idx) in column\" :key=\"col.label + idx\">\n <el-table-column :label=\"col.label\">\n <template #default=\"scope\">\n <el-input\n :size=\"'small'\"\n :model-value=\"scope.row[col.key] || ''\"\n @update:modelValue=\"(n: any) => (scope.row[col.key] = n)\"\n @input=\"onInput(scope.row)\"\n ></el-input>\n </template>\n </el-table-column>\n </template>\n <el-table-column width=\"70\" align=\"center\" fixed=\"right\" label=\"操作\">\n <template #default=\"scope\">\n <dk-icon icon=\"Delete\" @click=\"del(scope.$index)\"></dk-icon>\n </template>\n </el-table-column>\n </el-table>\n <div style=\"\">\n <el-button circle type=\"primary\" link size=\"small\" style=\"margin-left: 20px\" @click=\"add()\">\n <dk-icon icon=\"CirclePlusFilled\"></dk-icon>\n 添加\n </el-button>\n </div>\n </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { styleCustomInputProps } from './props'\nimport { reactive, watch } from 'vue'\n\n\n\nconst props = defineProps(styleCustomInputProps)\n\nconst emit = defineEmits(['update:modelValue', 'change'])\n\nconst column = [\n { label: '键名', key: 'label' },\n { label: '值', key: 'value' },\n]\n\nconst tidyModelValue = () => {\n return Object.keys(props.modelValue || {}).map((label) => {\n return { label, value: props.modelValue[label] }\n })\n}\nconst styles: any = reactive(tidyModelValue())\nconst onInput = (item: any) => {\n const flag = column.every((v) => {\n return item[v.key] !== undefined && item[v.key] !== '' && item[v.key] !== null\n })\n console.log('f', flag)\n if (flag) {\n input()\n }\n}\n\nconst tidyValue = () => {\n const obj: any = {}\n styles.forEach((v: any) => {\n if (v.label && v.value) {\n obj[v.label] = v.value\n }\n })\n return obj\n}\n\nconst input = () => {\n const value = tidyValue()\n emit('update:modelValue', value)\n emit('change', value)\n}\n\nconst del = (idx: any) => {\n styles.splice(idx, 1)\n input()\n}\n\nconst add = () => {\n styles.push(\n column.reduce((initial: any, v: any) => {\n initial[v.key] = ''\n return initial\n }, {})\n )\n}\n</script>\n"],"names":["__MACROS_defineComponent"],"mappings":";;;;AAEA,MAA6B,cAAAA,eAAyB,CAAA;AAAA,EACpD,IAAM,EAAA,oBAAA;AACR,CAAC,CAAA,CAAA;;;;;;;AA0CD,IAAA,MAAM,MAAS,GAAA;AAAA,MACb,EAAE,KAAA,EAAO,cAAM,EAAA,GAAA,EAAK,OAAQ,EAAA;AAAA,MAC5B,EAAE,KAAA,EAAO,QAAK,EAAA,GAAA,EAAK,OAAQ,EAAA;AAAA,KAC7B,CAAA;AAEA,IAAA,MAAM,iBAAiB,MAAM;AAC3B,MAAO,OAAA,MAAA,CAAO,KAAK,KAAM,CAAA,UAAA,IAAc,EAAE,CAAA,CAAE,GAAI,CAAA,CAAC,KAAU,KAAA;AACxD,QAAA,OAAO,EAAE,KAAO,EAAA,KAAA,EAAO,KAAM,CAAA,UAAA,CAAW,KAAK,CAAE,EAAA,CAAA;AAAA,OAChD,CAAA,CAAA;AAAA,KACH,CAAA;AACA,IAAM,MAAA,MAAA,GAAc,QAAS,CAAA,cAAA,EAAgB,CAAA,CAAA;AAC7C,IAAM,MAAA,OAAA,GAAU,CAAC,IAAc,KAAA;AAC7B,MAAA,MAAM,IAAO,GAAA,MAAA,CAAO,KAAM,CAAA,CAAC,CAAM,KAAA;AAC/B,QAAA,OAAO,IAAK,CAAA,CAAA,CAAE,GAAG,CAAA,KAAM,KAAa,CAAA,IAAA,IAAA,CAAK,CAAE,CAAA,GAAG,CAAM,KAAA,EAAA,IAAM,IAAK,CAAA,CAAA,CAAE,GAAG,CAAM,KAAA,IAAA,CAAA;AAAA,OAC3E,CAAA,CAAA;AACD,MAAQ,OAAA,CAAA,GAAA,CAAI,KAAK,IAAI,CAAA,CAAA;AACrB,MAAA,IAAI,IAAM,EAAA;AACR,QAAM,KAAA,EAAA,CAAA;AAAA,OACR;AAAA,KACF,CAAA;AAEA,IAAA,MAAM,YAAY,MAAM;AACtB,MAAA,MAAM,MAAW,EAAC,CAAA;AAClB,MAAO,MAAA,CAAA,OAAA,CAAQ,CAAC,CAAW,KAAA;AACzB,QAAI,IAAA,CAAA,CAAE,KAAS,IAAA,CAAA,CAAE,KAAO,EAAA;AACtB,UAAI,GAAA,CAAA,CAAA,CAAE,KAAK,CAAA,GAAI,CAAE,CAAA,KAAA,CAAA;AAAA,SACnB;AAAA,OACD,CAAA,CAAA;AACD,MAAO,OAAA,GAAA,CAAA;AAAA,KACT,CAAA;AAEA,IAAA,MAAM,QAAQ,MAAM;AAClB,MAAA,MAAM,QAAQ,SAAU,EAAA,CAAA;AACxB,MAAA,IAAA,CAAK,qBAAqB,KAAK,CAAA,CAAA;AAC/B,MAAA,IAAA,CAAK,UAAU,KAAK,CAAA,CAAA;AAAA,KACtB,CAAA;AAEA,IAAM,MAAA,GAAA,GAAM,CAAC,GAAa,KAAA;AACxB,MAAO,MAAA,CAAA,MAAA,CAAO,KAAK,CAAC,CAAA,CAAA;AACpB,MAAM,KAAA,EAAA,CAAA;AAAA,KACR,CAAA;AAEA,IAAA,MAAM,MAAM,MAAM;AAChB,MAAO,MAAA,CAAA,IAAA;AAAA,QACL,MAAO,CAAA,MAAA,CAAO,CAAC,OAAA,EAAc,CAAW,KAAA;AACtC,UAAQ,OAAA,CAAA,CAAA,CAAE,GAAG,CAAI,GAAA,EAAA,CAAA;AACjB,UAAO,OAAA,OAAA,CAAA;AAAA,SACT,EAAG,EAAE,CAAA;AAAA,OACP,CAAA;AAAA,KACF,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"style-input.vue2.mjs","sources":["../../../src/style-input/src/style-input.vue"],"sourcesContent":["<script lang=\"ts\">\nimport { defineComponent as __MACROS_defineComponent } from \"vue\";\nexport default /*#__PURE__*/ __MACROS_defineComponent({\n name: 'DkStyleInput',\n});\n</script>\n<template>\n <div class=\"dk-style-input\">\n <div v-if=\"!loading\" class=\"p-5px\">\n <el-collapse v-if=\"!props.isDrawer\" v-model=\"activeNames\">\n <el-collapse-item v-for=\"(item, key) in _components\" :key=\"key\" title=\"\" :name=\"key\">\n <template #title>\n {{ item.title }}\n </template>\n <component\n :is=\"item.name\"\n v-if=\"activeNames.includes(key)\"\n v-model=\"values[item.name]\"\n v-bind=\"item.props\"\n @change=\"onChange\"\n />\n </el-collapse-item>\n </el-collapse>\n <div v-else>\n <el-button type=\"primary\" plain style=\"width: 100%\" size=\"small\" @click=\"drawer = true\">\n {{ props.drawerText }}\n </el-button>\n <el-drawer v-model=\"drawer\" v-bind=\"props.drawerProps\">\n <el-collapse v-model=\"activeNames\">\n <el-collapse-item v-for=\"(item, key) in _components\" :key=\"key\" title=\"\" :name=\"key\">\n <template #title>\n {{ item.title }}\n </template>\n <component\n :is=\"item.name\"\n v-if=\"activeNames.includes(key)\"\n v-model=\"values[item.name]\"\n v-bind=\"item.props\"\n @change=\"onChange\"\n />\n </el-collapse-item>\n </el-collapse>\n </el-drawer>\n </div>\n </div>\n </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { styleInputProps } from './props'\nimport { onMounted, ref, watch } from 'vue'\n\n\nconst props = defineProps(styleInputProps)\nconst drawer = ref(false)\nconst activeNames = ref([0])\nconst values: any = ref({})\nconst loading = ref(true)\n\nconst emit = defineEmits(['update:modelValue'])\nconst onChange = () => {\n const obj: any = {}\n Object.keys(values.value).forEach((key) => {\n Object.keys(values.value[key]).forEach((k) => {\n obj[k] = values.value[key][k]\n })\n })\n emit('update:modelValue', obj)\n}\n\nconst _components: any = ref([])\n\nconst init = () => {\n // 初始化已使用的参数集合\n const usedParams = new Set<string>()\n\n // 过滤隐藏组件并初始化_components\n _components.value = props.components.filter((item: any) => {\n return !props.hideComponents.includes(item.name)\n })\n\n const obj: Record<string, Record<string, any>> = {}\n\n // 遍历非自定义组件以填充obj和usedParams\n _components.value.forEach((item: any) => {\n if (item.name !== 'DkStyleCustomInput') {\n const paramsObj: Record<string, any> = {}\n item.params.forEach((param: string) => {\n if (props.modelValue[param] !== undefined) {\n paramsObj[param] = props.modelValue[param]\n usedParams.add(param) // 标记为已使用\n }\n })\n obj[item.name] = paramsObj\n }\n })\n\n // 处理 DkStyleCustomInput 组件\n const customComponent = _components.value.find((item: any) => item.name === 'DkStyleCustomInput')\n\n if (customComponent) {\n const customParamsObj: Record<string, any> = {}\n Object.keys(props.modelValue).forEach((key) => {\n if (!usedParams.has(key)) {\n customParamsObj[key] = props.modelValue[key]\n }\n })\n obj[customComponent.name] = customParamsObj\n }\n
|
1
|
+
{"version":3,"file":"style-input.vue2.mjs","sources":["../../../src/style-input/src/style-input.vue"],"sourcesContent":["<script lang=\"ts\">\nimport { defineComponent as __MACROS_defineComponent } from \"vue\";\nexport default /*#__PURE__*/ __MACROS_defineComponent({\n name: 'DkStyleInput',\n});\n</script>\n<template>\n <div class=\"dk-style-input\">\n <div v-if=\"!loading\" class=\"p-5px\">\n <el-collapse v-if=\"!props.isDrawer\" v-model=\"activeNames\">\n <el-collapse-item v-for=\"(item, key) in _components\" :key=\"key\" title=\"\" :name=\"key\">\n <template #title>\n {{ item.title }}\n </template>\n <component\n :is=\"item.name\"\n v-if=\"activeNames.includes(key)\"\n v-model=\"values[item.name]\"\n v-bind=\"item.props\"\n @change=\"onChange\"\n />\n </el-collapse-item>\n </el-collapse>\n <div v-else>\n <el-button type=\"primary\" plain style=\"width: 100%\" size=\"small\" @click=\"drawer = true\">\n {{ props.drawerText }}\n </el-button>\n <el-drawer v-model=\"drawer\" v-bind=\"props.drawerProps\">\n <el-collapse v-model=\"activeNames\">\n <el-collapse-item v-for=\"(item, key) in _components\" :key=\"key\" title=\"\" :name=\"key\">\n <template #title>\n {{ item.title }}\n </template>\n <component\n :is=\"item.name\"\n v-if=\"activeNames.includes(key)\"\n v-model=\"values[item.name]\"\n v-bind=\"item.props\"\n @change=\"onChange\"\n />\n </el-collapse-item>\n </el-collapse>\n </el-drawer>\n </div>\n </div>\n </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { styleInputProps } from './props'\nimport { onMounted, ref, watch } from 'vue'\n\n\nconst props = defineProps(styleInputProps)\nconst drawer = ref(false)\nconst activeNames = ref([0])\nconst values: any = ref({})\nconst loading = ref(true)\n\nconst emit = defineEmits(['update:modelValue'])\nconst onChange = () => {\n const obj: any = {}\n Object.keys(values.value).forEach((key) => {\n Object.keys(values.value[key]).forEach((k) => {\n obj[k] = values.value[key][k]\n })\n })\n emit('update:modelValue', obj)\n}\n\nconst _components: any = ref([])\n\nconst init = () => {\n // 初始化已使用的参数集合\n const usedParams = new Set<string>()\n\n // 过滤隐藏组件并初始化_components\n _components.value = props.components.filter((item: any) => {\n return !props.hideComponents.includes(item.name)\n })\n\n const obj: Record<string, Record<string, any>> = {}\n\n // 遍历非自定义组件以填充obj和usedParams\n _components.value.forEach((item: any) => {\n if (item.name !== 'DkStyleCustomInput') {\n const paramsObj: Record<string, any> = {}\n item.params.forEach((param: string) => {\n if (props.modelValue[param] !== undefined) {\n paramsObj[param] = props.modelValue[param]\n usedParams.add(param) // 标记为已使用\n }\n })\n obj[item.name] = paramsObj\n }\n })\n\n // 处理 DkStyleCustomInput 组件\n const customComponent = _components.value.find((item: any) => item.name === 'DkStyleCustomInput')\n\n if (customComponent) {\n const customParamsObj: Record<string, any> = {}\n Object.keys(props.modelValue).forEach((key) => {\n if (!usedParams.has(key)) {\n customParamsObj[key] = props.modelValue[key]\n }\n })\n obj[customComponent.name] = customParamsObj\n }\n values.value = obj\n loading.value = false\n}\n\n// const init = () => {\n// _components.value = props.components.filter((item: any) => {\n// return !props.hideComponents.includes(item.name)\n// })\n// const obj: any = {}\n// _components.value.forEach((item: any) => {\n// const params = item.params\n// const paramsObj: any = {}\n// Object.keys(params).forEach((key) => {\n// const param = params[key]\n// if (props.modelValue[param]) {\n// paramsObj[param] = props.modelValue[param]\n// }\n// })\n// obj[item.name] = paramsObj\n// })\n// console.log('props.modelValue', props.modelValue)\n// console.log(obj)\n// values.value = obj\n// loading.value = false\n// }\n\nwatch(\n () => props.modelValue,\n () => {\n init()\n },\n {\n deep: true,\n }\n)\n\nonMounted(() => {\n init()\n})\n</script>\n"],"names":["__MACROS_defineComponent"],"mappings":"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"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"style-custom-input.vue2.js","sources":["../../../src/style-custom-input/src/style-custom-input.vue"],"sourcesContent":["<script lang=\"ts\">\nimport { defineComponent as __MACROS_defineComponent } from \"vue\";\nexport default /*#__PURE__*/ __MACROS_defineComponent({\n name: 'DkStyleCustomInput',\n});\n</script>\n<template>\n <div>\n <el-table :data=\"styles\" border :size=\"'small'\" style=\"width: 100%\">\n <template v-for=\"(col, idx) in column\" :key=\"col.label + idx\">\n <el-table-column :label=\"col.label\">\n <template #default=\"scope\">\n <el-input\n :size=\"'small'\"\n :model-value=\"scope.row[col.key] || ''\"\n @update:modelValue=\"(n: any) => (scope.row[col.key] = n)\"\n @input=\"onInput(scope.row)\"\n ></el-input>\n </template>\n </el-table-column>\n </template>\n <el-table-column width=\"70\" align=\"center\" fixed=\"right\" label=\"操作\">\n <template #default=\"scope\">\n <dk-icon icon=\"Delete\" @click=\"del(scope.$index)\"></dk-icon>\n </template>\n </el-table-column>\n </el-table>\n <div style=\"\">\n <el-button circle type=\"primary\" link size=\"small\" style=\"margin-left: 20px\" @click=\"add()\">\n <dk-icon icon=\"CirclePlusFilled\"></dk-icon>\n 添加\n </el-button>\n </div>\n </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { styleCustomInputProps } from './props'\nimport { reactive, watch } from 'vue'\n\n\n\nconst props = defineProps(styleCustomInputProps)\n\nconst emit = defineEmits(['update:modelValue', 'change'])\n\nconst column = [\n { label: '键名', key: 'label' },\n { label: '值', key: 'value' },\n]\n\nconst tidyModelValue = () => {\n return Object.keys(props.modelValue || {}).map((label) => {\n return { label, value: props.modelValue[label] }\n })\n}\nconst styles: any = reactive(tidyModelValue())\nconst onInput = (item: any) => {\n const flag = column.every((v) => {\n return item[v.key] !== undefined && item[v.key] !== '' && item[v.key] !== null\n })\n console.log('f', flag)\n if (flag) {\n input()\n }\n}\n\nconst tidyValue = () => {\n const obj: any = {}\n styles.forEach((v: any) => {\n if (v.label && v.value) {\n obj[v.label] = v.value\n }\n })\n return obj\n}\n\nconst input = () => {\n const value = tidyValue()\n
|
1
|
+
{"version":3,"file":"style-custom-input.vue2.js","sources":["../../../src/style-custom-input/src/style-custom-input.vue"],"sourcesContent":["<script lang=\"ts\">\nimport { defineComponent as __MACROS_defineComponent } from \"vue\";\nexport default /*#__PURE__*/ __MACROS_defineComponent({\n name: 'DkStyleCustomInput',\n});\n</script>\n<template>\n <div>\n <el-table :data=\"styles\" border :size=\"'small'\" style=\"width: 100%\">\n <template v-for=\"(col, idx) in column\" :key=\"col.label + idx\">\n <el-table-column :label=\"col.label\">\n <template #default=\"scope\">\n <el-input\n :size=\"'small'\"\n :model-value=\"scope.row[col.key] || ''\"\n @update:modelValue=\"(n: any) => (scope.row[col.key] = n)\"\n @input=\"onInput(scope.row)\"\n ></el-input>\n </template>\n </el-table-column>\n </template>\n <el-table-column width=\"70\" align=\"center\" fixed=\"right\" label=\"操作\">\n <template #default=\"scope\">\n <dk-icon icon=\"Delete\" @click=\"del(scope.$index)\"></dk-icon>\n </template>\n </el-table-column>\n </el-table>\n <div style=\"\">\n <el-button circle type=\"primary\" link size=\"small\" style=\"margin-left: 20px\" @click=\"add()\">\n <dk-icon icon=\"CirclePlusFilled\"></dk-icon>\n 添加\n </el-button>\n </div>\n </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { styleCustomInputProps } from './props'\nimport { reactive, watch } from 'vue'\n\n\n\nconst props = defineProps(styleCustomInputProps)\n\nconst emit = defineEmits(['update:modelValue', 'change'])\n\nconst column = [\n { label: '键名', key: 'label' },\n { label: '值', key: 'value' },\n]\n\nconst tidyModelValue = () => {\n return Object.keys(props.modelValue || {}).map((label) => {\n return { label, value: props.modelValue[label] }\n })\n}\nconst styles: any = reactive(tidyModelValue())\nconst onInput = (item: any) => {\n const flag = column.every((v) => {\n return item[v.key] !== undefined && item[v.key] !== '' && item[v.key] !== null\n })\n console.log('f', flag)\n if (flag) {\n input()\n }\n}\n\nconst tidyValue = () => {\n const obj: any = {}\n styles.forEach((v: any) => {\n if (v.label && v.value) {\n obj[v.label] = v.value\n }\n })\n return obj\n}\n\nconst input = () => {\n const value = tidyValue()\n emit('update:modelValue', value)\n emit('change', value)\n}\n\nconst del = (idx: any) => {\n styles.splice(idx, 1)\n input()\n}\n\nconst add = () => {\n styles.push(\n column.reduce((initial: any, v: any) => {\n initial[v.key] = ''\n return initial\n }, {})\n )\n}\n</script>\n"],"names":["__MACROS_defineComponent","reactive"],"mappings":";;;;;;;;AAEA,MAA6B,cAAAA,mBAAyB,CAAA;AAAA,EACpD,IAAM,EAAA,oBAAA;AACR,CAAC,CAAA,CAAA;;;;;;;AA0CD,IAAA,MAAM,MAAS,GAAA;AAAA,MACb,EAAE,KAAA,EAAO,cAAM,EAAA,GAAA,EAAK,OAAQ,EAAA;AAAA,MAC5B,EAAE,KAAA,EAAO,QAAK,EAAA,GAAA,EAAK,OAAQ,EAAA;AAAA,KAC7B,CAAA;AAEA,IAAA,MAAM,iBAAiB,MAAM;AAC3B,MAAO,OAAA,MAAA,CAAO,KAAK,KAAM,CAAA,UAAA,IAAc,EAAE,CAAA,CAAE,GAAI,CAAA,CAAC,KAAU,KAAA;AACxD,QAAA,OAAO,EAAE,KAAO,EAAA,KAAA,EAAO,KAAM,CAAA,UAAA,CAAW,KAAK,CAAE,EAAA,CAAA;AAAA,OAChD,CAAA,CAAA;AAAA,KACH,CAAA;AACA,IAAM,MAAA,MAAA,GAAcC,YAAS,CAAA,cAAA,EAAgB,CAAA,CAAA;AAC7C,IAAM,MAAA,OAAA,GAAU,CAAC,IAAc,KAAA;AAC7B,MAAA,MAAM,IAAO,GAAA,MAAA,CAAO,KAAM,CAAA,CAAC,CAAM,KAAA;AAC/B,QAAA,OAAO,IAAK,CAAA,CAAA,CAAE,GAAG,CAAA,KAAM,KAAa,CAAA,IAAA,IAAA,CAAK,CAAE,CAAA,GAAG,CAAM,KAAA,EAAA,IAAM,IAAK,CAAA,CAAA,CAAE,GAAG,CAAM,KAAA,IAAA,CAAA;AAAA,OAC3E,CAAA,CAAA;AACD,MAAQ,OAAA,CAAA,GAAA,CAAI,KAAK,IAAI,CAAA,CAAA;AACrB,MAAA,IAAI,IAAM,EAAA;AACR,QAAM,KAAA,EAAA,CAAA;AAAA,OACR;AAAA,KACF,CAAA;AAEA,IAAA,MAAM,YAAY,MAAM;AACtB,MAAA,MAAM,MAAW,EAAC,CAAA;AAClB,MAAO,MAAA,CAAA,OAAA,CAAQ,CAAC,CAAW,KAAA;AACzB,QAAI,IAAA,CAAA,CAAE,KAAS,IAAA,CAAA,CAAE,KAAO,EAAA;AACtB,UAAI,GAAA,CAAA,CAAA,CAAE,KAAK,CAAA,GAAI,CAAE,CAAA,KAAA,CAAA;AAAA,SACnB;AAAA,OACD,CAAA,CAAA;AACD,MAAO,OAAA,GAAA,CAAA;AAAA,KACT,CAAA;AAEA,IAAA,MAAM,QAAQ,MAAM;AAClB,MAAA,MAAM,QAAQ,SAAU,EAAA,CAAA;AACxB,MAAA,IAAA,CAAK,qBAAqB,KAAK,CAAA,CAAA;AAC/B,MAAA,IAAA,CAAK,UAAU,KAAK,CAAA,CAAA;AAAA,KACtB,CAAA;AAEA,IAAM,MAAA,GAAA,GAAM,CAAC,GAAa,KAAA;AACxB,MAAO,MAAA,CAAA,MAAA,CAAO,KAAK,CAAC,CAAA,CAAA;AACpB,MAAM,KAAA,EAAA,CAAA;AAAA,KACR,CAAA;AAEA,IAAA,MAAM,MAAM,MAAM;AAChB,MAAO,MAAA,CAAA,IAAA;AAAA,QACL,MAAO,CAAA,MAAA,CAAO,CAAC,OAAA,EAAc,CAAW,KAAA;AACtC,UAAQ,OAAA,CAAA,CAAA,CAAE,GAAG,CAAI,GAAA,EAAA,CAAA;AACjB,UAAO,OAAA,OAAA,CAAA;AAAA,SACT,EAAG,EAAE,CAAA;AAAA,OACP,CAAA;AAAA,KACF,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"style-input.vue2.js","sources":["../../../src/style-input/src/style-input.vue"],"sourcesContent":["<script lang=\"ts\">\nimport { defineComponent as __MACROS_defineComponent } from \"vue\";\nexport default /*#__PURE__*/ __MACROS_defineComponent({\n name: 'DkStyleInput',\n});\n</script>\n<template>\n <div class=\"dk-style-input\">\n <div v-if=\"!loading\" class=\"p-5px\">\n <el-collapse v-if=\"!props.isDrawer\" v-model=\"activeNames\">\n <el-collapse-item v-for=\"(item, key) in _components\" :key=\"key\" title=\"\" :name=\"key\">\n <template #title>\n {{ item.title }}\n </template>\n <component\n :is=\"item.name\"\n v-if=\"activeNames.includes(key)\"\n v-model=\"values[item.name]\"\n v-bind=\"item.props\"\n @change=\"onChange\"\n />\n </el-collapse-item>\n </el-collapse>\n <div v-else>\n <el-button type=\"primary\" plain style=\"width: 100%\" size=\"small\" @click=\"drawer = true\">\n {{ props.drawerText }}\n </el-button>\n <el-drawer v-model=\"drawer\" v-bind=\"props.drawerProps\">\n <el-collapse v-model=\"activeNames\">\n <el-collapse-item v-for=\"(item, key) in _components\" :key=\"key\" title=\"\" :name=\"key\">\n <template #title>\n {{ item.title }}\n </template>\n <component\n :is=\"item.name\"\n v-if=\"activeNames.includes(key)\"\n v-model=\"values[item.name]\"\n v-bind=\"item.props\"\n @change=\"onChange\"\n />\n </el-collapse-item>\n </el-collapse>\n </el-drawer>\n </div>\n </div>\n </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { styleInputProps } from './props'\nimport { onMounted, ref, watch } from 'vue'\n\n\nconst props = defineProps(styleInputProps)\nconst drawer = ref(false)\nconst activeNames = ref([0])\nconst values: any = ref({})\nconst loading = ref(true)\n\nconst emit = defineEmits(['update:modelValue'])\nconst onChange = () => {\n const obj: any = {}\n Object.keys(values.value).forEach((key) => {\n Object.keys(values.value[key]).forEach((k) => {\n obj[k] = values.value[key][k]\n })\n })\n emit('update:modelValue', obj)\n}\n\nconst _components: any = ref([])\n\nconst init = () => {\n // 初始化已使用的参数集合\n const usedParams = new Set<string>()\n\n // 过滤隐藏组件并初始化_components\n _components.value = props.components.filter((item: any) => {\n return !props.hideComponents.includes(item.name)\n })\n\n const obj: Record<string, Record<string, any>> = {}\n\n // 遍历非自定义组件以填充obj和usedParams\n _components.value.forEach((item: any) => {\n if (item.name !== 'DkStyleCustomInput') {\n const paramsObj: Record<string, any> = {}\n item.params.forEach((param: string) => {\n if (props.modelValue[param] !== undefined) {\n paramsObj[param] = props.modelValue[param]\n usedParams.add(param) // 标记为已使用\n }\n })\n obj[item.name] = paramsObj\n }\n })\n\n // 处理 DkStyleCustomInput 组件\n const customComponent = _components.value.find((item: any) => item.name === 'DkStyleCustomInput')\n\n if (customComponent) {\n const customParamsObj: Record<string, any> = {}\n Object.keys(props.modelValue).forEach((key) => {\n if (!usedParams.has(key)) {\n customParamsObj[key] = props.modelValue[key]\n }\n })\n obj[customComponent.name] = customParamsObj\n }\n
|
1
|
+
{"version":3,"file":"style-input.vue2.js","sources":["../../../src/style-input/src/style-input.vue"],"sourcesContent":["<script lang=\"ts\">\nimport { defineComponent as __MACROS_defineComponent } from \"vue\";\nexport default /*#__PURE__*/ __MACROS_defineComponent({\n name: 'DkStyleInput',\n});\n</script>\n<template>\n <div class=\"dk-style-input\">\n <div v-if=\"!loading\" class=\"p-5px\">\n <el-collapse v-if=\"!props.isDrawer\" v-model=\"activeNames\">\n <el-collapse-item v-for=\"(item, key) in _components\" :key=\"key\" title=\"\" :name=\"key\">\n <template #title>\n {{ item.title }}\n </template>\n <component\n :is=\"item.name\"\n v-if=\"activeNames.includes(key)\"\n v-model=\"values[item.name]\"\n v-bind=\"item.props\"\n @change=\"onChange\"\n />\n </el-collapse-item>\n </el-collapse>\n <div v-else>\n <el-button type=\"primary\" plain style=\"width: 100%\" size=\"small\" @click=\"drawer = true\">\n {{ props.drawerText }}\n </el-button>\n <el-drawer v-model=\"drawer\" v-bind=\"props.drawerProps\">\n <el-collapse v-model=\"activeNames\">\n <el-collapse-item v-for=\"(item, key) in _components\" :key=\"key\" title=\"\" :name=\"key\">\n <template #title>\n {{ item.title }}\n </template>\n <component\n :is=\"item.name\"\n v-if=\"activeNames.includes(key)\"\n v-model=\"values[item.name]\"\n v-bind=\"item.props\"\n @change=\"onChange\"\n />\n </el-collapse-item>\n </el-collapse>\n </el-drawer>\n </div>\n </div>\n </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { styleInputProps } from './props'\nimport { onMounted, ref, watch } from 'vue'\n\n\nconst props = defineProps(styleInputProps)\nconst drawer = ref(false)\nconst activeNames = ref([0])\nconst values: any = ref({})\nconst loading = ref(true)\n\nconst emit = defineEmits(['update:modelValue'])\nconst onChange = () => {\n const obj: any = {}\n Object.keys(values.value).forEach((key) => {\n Object.keys(values.value[key]).forEach((k) => {\n obj[k] = values.value[key][k]\n })\n })\n emit('update:modelValue', obj)\n}\n\nconst _components: any = ref([])\n\nconst init = () => {\n // 初始化已使用的参数集合\n const usedParams = new Set<string>()\n\n // 过滤隐藏组件并初始化_components\n _components.value = props.components.filter((item: any) => {\n return !props.hideComponents.includes(item.name)\n })\n\n const obj: Record<string, Record<string, any>> = {}\n\n // 遍历非自定义组件以填充obj和usedParams\n _components.value.forEach((item: any) => {\n if (item.name !== 'DkStyleCustomInput') {\n const paramsObj: Record<string, any> = {}\n item.params.forEach((param: string) => {\n if (props.modelValue[param] !== undefined) {\n paramsObj[param] = props.modelValue[param]\n usedParams.add(param) // 标记为已使用\n }\n })\n obj[item.name] = paramsObj\n }\n })\n\n // 处理 DkStyleCustomInput 组件\n const customComponent = _components.value.find((item: any) => item.name === 'DkStyleCustomInput')\n\n if (customComponent) {\n const customParamsObj: Record<string, any> = {}\n Object.keys(props.modelValue).forEach((key) => {\n if (!usedParams.has(key)) {\n customParamsObj[key] = props.modelValue[key]\n }\n })\n obj[customComponent.name] = customParamsObj\n }\n values.value = obj\n loading.value = false\n}\n\n// const init = () => {\n// _components.value = props.components.filter((item: any) => {\n// return !props.hideComponents.includes(item.name)\n// })\n// const obj: any = {}\n// _components.value.forEach((item: any) => {\n// const params = item.params\n// const paramsObj: any = {}\n// Object.keys(params).forEach((key) => {\n// const param = params[key]\n// if (props.modelValue[param]) {\n// paramsObj[param] = props.modelValue[param]\n// }\n// })\n// obj[item.name] = paramsObj\n// })\n// console.log('props.modelValue', props.modelValue)\n// console.log(obj)\n// values.value = obj\n// loading.value = false\n// }\n\nwatch(\n () => props.modelValue,\n () => {\n init()\n },\n {\n deep: true,\n }\n)\n\nonMounted(() => {\n init()\n})\n</script>\n"],"names":["__MACROS_defineComponent","ref","watch","onMounted"],"mappings":"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"}
|