diff --git a/packages/ui-vue/components/dynamic-form/src/component/dynamic-form-group/dynamic-form-group.component.tsx b/packages/ui-vue/components/dynamic-form/src/component/dynamic-form-group/dynamic-form-group.component.tsx index 4bf3370a282cdfa49ead97cf04ea87b36558acd8..a54be8f3436cfed2cc6ed21143e9dbda92f5432d 100644 --- a/packages/ui-vue/components/dynamic-form/src/component/dynamic-form-group/dynamic-form-group.component.tsx +++ b/packages/ui-vue/components/dynamic-form/src/component/dynamic-form-group/dynamic-form-group.component.tsx @@ -56,11 +56,14 @@ export default defineComponent({ if (editorProps.id == null || editorProps.id === '') { editorProps.id = id.value; } - if (editorType === 'number-range' && editor.value.onBeginValueChange && typeof editor.value.onBeginValueChange === 'function') { - editorProps.onBeginValueChange = editor.value.onBeginValueChange; - } else if (editorType === 'number-range' && editor.value.onEndValueChange && typeof editor.value.onEndValueChange === 'function') { - editorProps.onEndValueChange = editor.value.onEndValueChange; - } else if (editorType === 'lookup' && editor.value['onUpdate:idValue'] && typeof editor.value['onUpdate:idValue'] === 'function') { + if(editorType === 'number-range' && editor.value.onBeginValueChange && typeof editor.value.onBeginValueChange === 'function') { + if(editor.value.onBeginValueChange && typeof editor.value.onBeginValueChange === 'function') { + editorProps.onBeginValueChange = editor.value.onBeginValueChange; + } + if(editor.value.onEndValueChange && typeof editor.value.onEndValueChange === 'function') { + editorProps.onEndValueChange = editor.value.onEndValueChange; + } + }else if(editorType === 'lookup' && editor.value['onUpdate:idValue'] && typeof editor.value['onUpdate:idValue'] === 'function') { editorProps['onUpdate:idValue'] = editor.value['onUpdate:idValue']; } return () => ; diff --git a/packages/ui-vue/components/number-range/src/composition/types.ts b/packages/ui-vue/components/number-range/src/composition/types.ts index eca12387565e0512dd3e5e53b7ee9ded456e1785..960448d851bb97a7827a32cc4be5f0a87731c47f 100644 --- a/packages/ui-vue/components/number-range/src/composition/types.ts +++ b/packages/ui-vue/components/number-range/src/composition/types.ts @@ -32,12 +32,12 @@ export interface NumberFormatOptions { export interface UseFormat { cleanFormat: (val: any) => string; - format: (val: any) => string; + format: (val: any, needValid?:boolean) => string; } export interface UseNumber { - getRealValue: (value: any) => string | number; + getRealValue: (value: any, needValid?:boolean) => string | number; getValidNumberObject: (numberObject: BigNumber) => BigNumber; diff --git a/packages/ui-vue/components/number-range/src/composition/use-format.ts b/packages/ui-vue/components/number-range/src/composition/use-format.ts index 850a3d97c9d1532fda6c4908d8a9089264ea73c2..33a743bf54e10f0fce147e89a15cb059a0b46e99 100644 --- a/packages/ui-vue/components/number-range/src/composition/use-format.ts +++ b/packages/ui-vue/components/number-range/src/composition/use-format.ts @@ -71,10 +71,13 @@ export function useFormat( return numberObject.toFormat(formatOptions); } - function format(numberString: string) { + function format(numberString: string, needValid: boolean = true) { const rawNumberString = cleanFormat(numberString); const initialNumberObject = new BigNumber(rawNumberString, 10); - const validNumberObject = getValidNumberObject(initialNumberObject); + let validNumberObject = initialNumberObject; + if(needValid) { + validNumberObject = getValidNumberObject(initialNumberObject); + } if (validNumberObject.valueOf() === '0' && !props.showZero) { return ''; } diff --git a/packages/ui-vue/components/number-range/src/composition/use-number.ts b/packages/ui-vue/components/number-range/src/composition/use-number.ts index 83e97d2496e8a585429654c11738f3179df9073d..c2df56280752c5a850ae624423180ae1ea4f6195 100644 --- a/packages/ui-vue/components/number-range/src/composition/use-number.ts +++ b/packages/ui-vue/components/number-range/src/composition/use-number.ts @@ -64,14 +64,17 @@ export function useNumber(props: NumberRangeProps, context: SetupContext): UseNu * @param val * @returns */ - function getRealValue(value: any) { + function getRealValue(value: any, needValid: boolean = true) { if (props.parser) { if (!isNaN(Number(value))) { return value; } return props.parser(value); } - let numberObject = getValidNumberObject(new BigNumber(value, 10)); + let numberObject = new BigNumber(value, 10); + if(needValid) { + numberObject = getValidNumberObject(numberObject); + } if (numberObject.isNaN()) { if (props.nullable) { return null; diff --git a/packages/ui-vue/components/number-range/src/number-range.component.tsx b/packages/ui-vue/components/number-range/src/number-range.component.tsx index 3dbd3adc4eced4ff0939e75f123465c523855ae6..454ac8dcf1ec0bb51a8427a1b8a1a0eabaa591e7 100644 --- a/packages/ui-vue/components/number-range/src/number-range.component.tsx +++ b/packages/ui-vue/components/number-range/src/number-range.component.tsx @@ -102,18 +102,18 @@ export default defineComponent({ const shouldShowSpinner = computed(() => !props.disabled && !props.readonly && props.showButton); onMounted(() => { - const beginValue = getRealValue(props.beginValue); - const endValue = getRealValue(props.endValue); - beginDisplayValue.value = format(beginValue); - endDisplayValue.value = format(endValue); + const beginValue = getRealValue(props.beginValue, false); + const endValue = getRealValue(props.endValue, false); + beginDisplayValue.value = format(beginValue, false); + endDisplayValue.value = format(endValue, false); }); watch( () => [props.beginValue], ([newValue]) => { if (!useBeginValueTextBoxComposition.isTextBoxFocused.value) { - const value = getRealValue(newValue); - beginDisplayValue.value = format(value); + const value = getRealValue(newValue, false); + beginDisplayValue.value = format(value, false); } } @@ -123,8 +123,8 @@ export default defineComponent({ () => [props.endValue], ([newValue]) => { if (!useEndValueTextBoxComposition.isTextBoxFocused.value) { - const value = getRealValue(newValue); - endDisplayValue.value = format(value); + const value = getRealValue(newValue, false); + endDisplayValue.value = format(value, false); } } ); diff --git a/packages/ui-vue/components/number-range/src/number-range.props.ts b/packages/ui-vue/components/number-range/src/number-range.props.ts index 76fe75000aaf9c72e4b3a7afc15bc5b92a6c2703..8e8b91abe9e5c5dbba9ee5b2d5f2640880f4817e 100644 --- a/packages/ui-vue/components/number-range/src/number-range.props.ts +++ b/packages/ui-vue/components/number-range/src/number-range.props.ts @@ -37,7 +37,7 @@ export const numberRangeProps = { /** * 下限值 */ - beginValue: { type: [Number, String], default: '0' }, + beginValue: { type: [Number, String], default: '' }, /** * 启用大数支持 */ @@ -66,7 +66,7 @@ export const numberRangeProps = { /** * 上限值 */ - endValue: { type: [Number, String], default: '0' }, + endValue: { type: [Number, String], default: '' }, /** * 格式化 formatter 和 parser 必须同时存在 * formatter: (val: number) => string; diff --git a/packages/ui-vue/components/number-range/src/schema/number-range.schema.json b/packages/ui-vue/components/number-range/src/schema/number-range.schema.json index 4a9b7555b2e19e1343dd63400273b87a10263c61..12e28340146b0bf50b18a735ced109a252ee1d20 100644 --- a/packages/ui-vue/components/number-range/src/schema/number-range.schema.json +++ b/packages/ui-vue/components/number-range/src/schema/number-range.schema.json @@ -68,13 +68,24 @@ }, "beginValue": { "description": "", - "type": "number", - "default": 0 + "type": "number" }, "endValue": { "description": "", - "type": "number", - "default": 0 + "type": "number" + }, + "nullable": { + "description": "", + "type": "boolean", + "default": false + }, + "min": { + "description": "", + "type": "string" + }, + "max": { + "description": "", + "type": "string" } }, "required": [ diff --git a/packages/ui-vue/components/number-spinner/src/composition/types.ts b/packages/ui-vue/components/number-spinner/src/composition/types.ts index 860f6d18ed847a7dfa7324bd5e46dc4b9186d6c2..53157c5ce7d36e354d32af7421d07b365071810d 100644 --- a/packages/ui-vue/components/number-spinner/src/composition/types.ts +++ b/packages/ui-vue/components/number-spinner/src/composition/types.ts @@ -32,7 +32,7 @@ export interface NumberFormatOptions { export interface UseFormat { cleanFormat: (val: any) => string; - format: (val: any) => string; + format: (val: any, needValid?:boolean) => string; } export interface UseNumber { @@ -40,7 +40,7 @@ export interface UseNumber { modelValue: Ref; - getRealValue: (value: any) => string | number; + getRealValue: (value: any, needValid?:boolean) => string | number; getValidNumberObject: (numberObject: BigNumber) => BigNumber; diff --git a/packages/ui-vue/components/number-spinner/src/composition/use-format.ts b/packages/ui-vue/components/number-spinner/src/composition/use-format.ts index b1a181c2259d3f60aac35b0832bfe657bd60a675..4be8ba823ee306578e38bbdb78fda8f881c3b45e 100644 --- a/packages/ui-vue/components/number-spinner/src/composition/use-format.ts +++ b/packages/ui-vue/components/number-spinner/src/composition/use-format.ts @@ -71,10 +71,13 @@ export function useFormat( return numberObject.toFormat(formatOptions); } - function format(numberString: string) { + function format(numberString: string, needValid: boolean = true) { const rawNumberString = cleanFormat(numberString); const initialNumberObject = new BigNumber(rawNumberString, 10); - const validNumberObject = getValidNumberObject(initialNumberObject); + let validNumberObject = initialNumberObject; + if(needValid) { + validNumberObject = getValidNumberObject(initialNumberObject); + } if (validNumberObject.valueOf() === '0' && !props.showZero) { return ''; } diff --git a/packages/ui-vue/components/number-spinner/src/composition/use-number.ts b/packages/ui-vue/components/number-spinner/src/composition/use-number.ts index 579416aa0ab5fa50a10f6a8ef154b481709d573b..0eb6bd86839230b79c01c05131f9573ee5ff81d9 100644 --- a/packages/ui-vue/components/number-spinner/src/composition/use-number.ts +++ b/packages/ui-vue/components/number-spinner/src/composition/use-number.ts @@ -42,16 +42,20 @@ export function useNumber(props: NumberSpinnerProps, context: SetupContext): Use /** * 获取实际数值 * @param val + * @param needValid 外部传进来的值直接进行展示,不做大小值校验 * @returns */ - function getRealValue(value: any) { + function getRealValue(value: any, needValid: boolean = true) { if (props.parser) { if (!isNaN(Number(value))) { return value; } return props.parser(value); } - let numberObject = getValidNumberObject(new BigNumber(value, 10)); + let numberObject = new BigNumber(value, 10); + if(needValid) { + numberObject = getValidNumberObject(numberObject); + } if (numberObject.isNaN()) { if (props.nullable) { return null; @@ -75,8 +79,11 @@ export function useNumber(props: NumberSpinnerProps, context: SetupContext): Use * @param realVal */ function onNumberValueChanged(likeNumberValue: number | string) { - const numberValue = Number(likeNumberValue); - modelValue.value = numberValue; + let numberValue:number | null = Number(likeNumberValue); + if(props.nullable && likeNumberValue === null) { + numberValue = null; + } + // modelValue.value = numberValue; context.emit('update:modelValue', numberValue); context.emit('valueChange', numberValue); context.emit('change', numberValue); diff --git a/packages/ui-vue/components/number-spinner/src/composition/use-text-box.ts b/packages/ui-vue/components/number-spinner/src/composition/use-text-box.ts index f4ffabe44eb4cb1878feb208db4f77f9bc6b49b2..930e99866997685d588e3997f87d93549f939c2e 100644 --- a/packages/ui-vue/components/number-spinner/src/composition/use-text-box.ts +++ b/packages/ui-vue/components/number-spinner/src/composition/use-text-box.ts @@ -28,7 +28,7 @@ export function useTextBox( inputValue = inputValue || 0; } const textValue = cleanFormat(inputValue); - displayValue.value = format(textValue); + displayValue.value = format(getRealValue(textValue)); onNumberValueChanged(getRealValue(textValue)); context.emit('blur', { event: $event, formatted: displayValue.value, value: modelValue.value }); } diff --git a/packages/ui-vue/components/number-spinner/src/number-spinner.component.tsx b/packages/ui-vue/components/number-spinner/src/number-spinner.component.tsx index d5ee0ad978e7a6ccf3d5d93c7e2ca85d563475c7..eabaab18309873f6e939ec568d8660a419fe6b65 100644 --- a/packages/ui-vue/components/number-spinner/src/number-spinner.component.tsx +++ b/packages/ui-vue/components/number-spinner/src/number-spinner.component.tsx @@ -40,16 +40,16 @@ export default defineComponent({ const shouldShowSpinner = computed(() => !props.disabled && !props.readonly && props.showButton); onMounted(() => { - const value = getRealValue(props.modelValue); - displayValue.value = format(value); + const value = getRealValue(props.modelValue, false); + displayValue.value = format(value, false); }); watch( () => [props.value], ([newValue]) => { - const value = getRealValue(newValue); + const value = getRealValue(newValue, false); modelValue.value = value; - displayValue.value = format(value); + displayValue.value = format(value, false); } ); @@ -58,7 +58,7 @@ export default defineComponent({ ([newModelValue]) => { if (newModelValue !== modelValue.value) { modelValue.value = newModelValue; - !isFocus.value && (displayValue.value = format(getRealValue(newModelValue))); + !isFocus.value && (displayValue.value = format(getRealValue(newModelValue, false), false)); } } ); @@ -66,7 +66,7 @@ export default defineComponent({ watch( () => [props.precision, props.useThousands, props.prefix, props.suffix, props.showZero], () => { - displayValue.value = format(modelValue.value); + displayValue.value = format(modelValue.value, false); } ); diff --git a/packages/ui-vue/components/number-spinner/src/schema/number-spinner.schema.json b/packages/ui-vue/components/number-spinner/src/schema/number-spinner.schema.json index 4588d9700a19e6ae9f3571ba8aa0693860ddd7fc..88cf6379abff7d13e75b6b118dbbeb35fc473492 100644 --- a/packages/ui-vue/components/number-spinner/src/schema/number-spinner.schema.json +++ b/packages/ui-vue/components/number-spinner/src/schema/number-spinner.schema.json @@ -105,7 +105,7 @@ "type": "sting", "default": "" }, - "showZero":{ + "showZero": { "description": "", "type": "boolean", "default": true diff --git a/packages/ui-vue/components/query-solution/src/components/manager/solution-manager.component.tsx b/packages/ui-vue/components/query-solution/src/components/manager/solution-manager.component.tsx new file mode 100644 index 0000000000000000000000000000000000000000..5d063dc6018539a580e3144a0079215e09658501 --- /dev/null +++ b/packages/ui-vue/components/query-solution/src/components/manager/solution-manager.component.tsx @@ -0,0 +1,96 @@ +/** + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { defineComponent, computed, ref, SetupContext, onMounted } from 'vue'; +import { solutionManagerProps, SolutionManagerProps } from './solution-manager.props'; +import { FDataGrid } from '@farris/ui-vue/components/data-grid'; + +export default defineComponent({ + name: 'FSolutionManager', + props: solutionManagerProps, + emits: ['changeDelete'] as (string[] & ThisType) | undefined, + setup(props: SolutionManagerProps, context: SetupContext) { + const columns = [ + { field: 'code', title: '名称', width: 80, resizable: true, dataType: 'string' }, + { + field: 'type', title: '类型', width: 200, dataType: 'string', + editor: { + type: 'combo-list', + data: [ + { id: 'private', name: '用户个人方案' } + // { id: 'public', name: '系统公共方案' }, + // { id: 'org', name: '组织公共方案' } + ] + } + }, + ]; + const querysolutionTypeRadios = { + private: '用户个人方案', + public: '系统公共方案', + org: '组织公共方案' + }; + const deleteSolutionIds = ref([]); + const showSolutions = ref([]); + + function handleShowSolutions() { + const data = props.solutions.filter(solution => { + return !deleteSolutionIds.value.includes(solution.id) && !solution.isSystem; + }).map(solution => { + return { + id: solution.id, + code: solution.code, + type: querysolutionTypeRadios[solution.type], + }; + }); + showSolutions.value = data; + } + + onMounted(() => { + handleShowSolutions(); + }); + + function deleteSolution(rawData) { + const solutionId = rawData.raw.id; + if (!deleteSolutionIds.value.includes(solutionId)) { + deleteSolutionIds.value = [...deleteSolutionIds.value, solutionId]; + context.emit('changeDelete', deleteSolutionIds.value); + handleShowSolutions(); + } + + } + function renderSolutionManager() { + const commandOption = { + enable: true, + commands: [ + { + text: '删除', + type: 'danger', + command: 'remove', + onClick(payload: MouseEvent, dataIndex: number, visualDataRow) { + deleteSolution(visualDataRow); + } + } + ] + }; + return ; + } + + return () => ( + + {renderSolutionManager()} + + ); + } +}); diff --git a/packages/ui-vue/components/query-solution/src/components/manager/solution-manager.props.ts b/packages/ui-vue/components/query-solution/src/components/manager/solution-manager.props.ts new file mode 100644 index 0000000000000000000000000000000000000000..faf3d46dfd2763fc79ac70fb699236194d7dbb69 --- /dev/null +++ b/packages/ui-vue/components/query-solution/src/components/manager/solution-manager.props.ts @@ -0,0 +1,24 @@ + +/** + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + import { ExtractPropTypes } from 'vue'; + import { QuerySolution } from '../../query-solution'; + + export const solutionManagerProps = { + solutions: { type: Array, default: [] }, + } as Record; + + export type SolutionManagerProps = ExtractPropTypes; diff --git a/packages/ui-vue/components/query-solution/src/composition/types.ts b/packages/ui-vue/components/query-solution/src/composition/types.ts index fc068ff4b6e9e0db288efa5d0966030e78644f59..c0605281f22c778b70bfc2c644ee1c25d716f2d7 100644 --- a/packages/ui-vue/components/query-solution/src/composition/types.ts +++ b/packages/ui-vue/components/query-solution/src/composition/types.ts @@ -105,7 +105,8 @@ export interface UseHttp { createSolution: (solution) => Promise>; loadSolution: () => Promise>; updateSolution: (solution) => Promise>; - getAuth: (type: string) => Promise>; + getAuth: () => Promise>; + batchUpdate: (solutions) => Promise>; } diff --git a/packages/ui-vue/components/query-solution/src/composition/use-header.tsx b/packages/ui-vue/components/query-solution/src/composition/use-header.tsx index 12367c6c4b9c807f1cb1e91396b359cbfe962c91..30a394ba4cefec6c11d4718d92b1edcff8f99c11 100644 --- a/packages/ui-vue/components/query-solution/src/composition/use-header.tsx +++ b/packages/ui-vue/components/query-solution/src/composition/use-header.tsx @@ -24,6 +24,8 @@ import { FInputGroup } from '@farris/ui-vue/components/input-group'; import FRadioGroup from '@farris/ui-vue/components/radio-group'; import { FNotifyService } from "@farris/ui-vue/components/notify"; import { cloneDeep } from 'lodash-es'; +import FSolutionManager from '../components/manager/solution-manager.component'; + export function useHeader( props: QuerySolutionProps, @@ -35,12 +37,18 @@ export function useHeader( fields: Ref ): UseHeader { + const querysolutionTypeRadios = [ + { id: 'private', text: '用户个人方案' } + // { id: 'public', text: '系统公共方案' }, + // { id: 'org', text: '组织公共方案' } + ]; const notifyService: any = new FNotifyService(); const newSolutionName = ref(''); const newSolutionAuth = ref('private'); + const deleteSolutionIds = ref([]); const configConditions = ref([]); const expanded = ref(props.expanded); - const { createSolution, updateSolution} = useHttpComposition; + const { createSolution, updateSolution, getAuth, batchUpdate } = useHttpComposition; const { getGuid, loadAllSolution, handleQuery } = useSolutionComposition; const modalService: FModalService | null = inject(F_MODAL_SERVICE_TOKEN, null); const title = computed(() => currentSolution.value ? currentSolution.value.name : ''); @@ -51,8 +59,12 @@ export function useHeader( 'dropdown-menu': true, show: shouldShowSolutionList.value })); + const solutionListCloseModakClass = computed(() => ({ + 'z-index': 99 + })); function onSelectionChange(solution: QuerySolution) { currentSolution.value = solution; + handleQuery(); } function query() { @@ -86,21 +98,24 @@ export function useHeader( } function save() { - if(!currentSolution.value){ + if (!currentSolution.value) { return; - } - const saveItem = cloneDeep(currentSolution.value); - saveItem.queryConditionString = JSON.stringify(saveItem.conditions); - updateSolution(saveItem).then(res => loadAllSolution()); - context.emit('save', currentSolution.value); + } + getAuth().then(authResponse => { + const { data } = authResponse; + const saveItem = cloneDeep(currentSolution.value) as QuerySolution; + if (!data['success'] && (saveItem.type === 'public' || saveItem.type === 'org')) { + notifyService.warning({ message: '您暂无权限修改公共类型方案。' }); + return; + } else { + saveItem.queryConditionString = JSON.stringify(saveItem.conditions); + updateSolution(saveItem).then(res => loadAllSolution()); + context.emit('save', currentSolution.value); + } + }); } function renderSaveAs() { - const querysolutionTypeRadios = [ - { id: 'private', text: '用户个人方案' }, - { id: 'public', text: '系统公共方案' }, - { id: 'org', text: '组织公共方案' } - ]; return @@ -109,29 +124,57 @@ export function useHeader( - + ; } function saveAsConfirm() { if(!currentSolution.value){ return; - } - const saveItem = cloneDeep(currentSolution.value); - saveItem.id = getGuid(); - saveItem.code = newSolutionName.value; - saveItem.name = newSolutionName.value; - saveItem.type = newSolutionAuth.value; - saveItem.queryConditionString = JSON.stringify(saveItem.conditions); - createSolution(saveItem).then(res => loadAllSolution()); - newSolutionAuth.value = 'private'; - newSolutionName.value = ''; - + } else if(!newSolutionName.value) { + notifyService.warning({ message: '请填写方案名称' }); + + return; + } + getAuth().then(authResponse => { + const { data } = authResponse; + if(!data['success'] && (newSolutionAuth.value === 'public' || newSolutionAuth.value === 'org')) { + notifyService.warning({ message: '您暂无权限修改公共类型方案。' }); + return; + } else { + const saveItem = cloneDeep(currentSolution.value) as QuerySolution; + saveItem.id = getGuid(); + saveItem.isSystem = false; + saveItem.code = newSolutionName.value; + saveItem.name = newSolutionName.value; + saveItem.type = newSolutionAuth.value; + saveItem.queryConditionString = JSON.stringify(saveItem.conditions); + createSolution(saveItem).then(res => loadAllSolution()); + newSolutionAuth.value = 'private'; + newSolutionName.value = ''; + } + }); } function saveAsCancel() { newSolutionAuth.value = 'private'; newSolutionName.value = ''; } + + function managerConfirm() { + const belongId = props.formId; + const deletedIds = deleteSolutionIds.value; + batchUpdate({belongId, deletedIds}).then((response) => { + loadAllSolution(); + }); + deleteSolutionIds.value = []; + } + + function managerCancel() { + deleteSolutionIds.value = []; + } + function changeDeleteSolutionIds(solutionIds) { + deleteSolutionIds.value = solutionIds; + } function saveAs() { modalService?.open({ width: 600, @@ -139,13 +182,28 @@ export function useHeader( title: '新增方案', acceptCallback: saveAsConfirm, rejectCallback: saveAsCancel, - // showButtons: false, render: () => { return renderSaveAs(); } }); context.emit('saveAs', currentSolution.value); } + + + function showSolutionManger() { + modalService?.open({ + width: 600, + height: 550, + fitContent: false, + title: '方案管理', + acceptCallback: managerConfirm, + rejectCallback: managerCancel, + render: () => { + return ; + } + }); + + } function renderSolutionList() { const solutionItems = solutions.value.map((solutionItem: any) => { return ( @@ -156,18 +214,24 @@ export function useHeader( }); solutionItems.push( - - 保存 - - + { + !currentSolution.value?.isSystem && + 保存 + + } + 另存为 + + 管理 + ); return {solutionItems}; } - function toggleSolutionList() { + function toggleSolutionList(event:MouseEvent) { + event.stopPropagation(); shouldShowSolutionList.value = !shouldShowSolutionList.value; } function renderSummary() { @@ -258,14 +322,14 @@ export function useHeader( {shouldShowClearButton.value && ( - + )} {expandStyle.value && - + } - + ); @@ -280,6 +344,10 @@ export function useHeader( {renderSolutionList()} + { + shouldShowSolutionList.value && + + } {renderSummary()} {renderSolutionToolbar()} @@ -295,7 +363,8 @@ export function useHeader( currentField.editor.type = field.controlType; } if(currentField.editor.type === 'number-spinner' || currentField.editor.type === 'number-range') { - currentField.editor.showZero = false; + currentField.editor.showZero = true; + currentField.editor.nullable = true; } return currentField; }); diff --git a/packages/ui-vue/components/query-solution/src/composition/use-http.ts b/packages/ui-vue/components/query-solution/src/composition/use-http.ts index 6c64d81c83de98b80b86bf8a346fe8fe7bf6003e..c73eb6b43df72afb88a2889e7453113d2282ce42 100644 --- a/packages/ui-vue/components/query-solution/src/composition/use-http.ts +++ b/packages/ui-vue/components/query-solution/src/composition/use-http.ts @@ -62,7 +62,20 @@ export function useHttp(props: QuerySolutionProps, context: SetupContext): UseHt return axios.put(url, solution, options); } - function getAuth(type: string) { + function batchUpdate(solutions) { + const headers = { + 'Content-Type': 'application/json', + 'sessionid': sessionid + }; + const options = { + headers: headers + }; + + const requestUrl = `${url}/batch`; + return axios.put(requestUrl, solutions, options); + } + + function getAuth() { const headers = { "Content-Type": "application/json", "sessionid": sessionid @@ -70,14 +83,15 @@ export function useHttp(props: QuerySolutionProps, context: SetupContext): UseHt const options = { headers: headers }; - const requestUrl = `${url}/componentType/${type}`; + const requestUrl = `${url}/componentType/QuerySolution`; return axios.get(requestUrl, options); } return { createSolution, loadSolution, updateSolution, - getAuth + getAuth, + batchUpdate }; } diff --git a/packages/ui-vue/components/query-solution/src/composition/use-solution.ts b/packages/ui-vue/components/query-solution/src/composition/use-solution.ts index 82cffd24cbd916007f92e300426c9cf611786497..59ef953ab69d3037b04d1fdaa7dc742b0fc9c910 100644 --- a/packages/ui-vue/components/query-solution/src/composition/use-solution.ts +++ b/packages/ui-vue/components/query-solution/src/composition/use-solution.ts @@ -56,13 +56,22 @@ export function useSolution(props: QuerySolutionProps, context: SetupContext, us mode: '1', type: 'preset', isDefault: false, - isSystem: false, + isSystem: true, conditions: props.presetFields.map((field: FieldConfig) => { return fieldToCondition(field); }) }; return defaultSolution; } + + function handleQuery() { + const queryItems = currentSolution.value?.conditions.filter(condition => { + return !condition.value?.isEmpty(); + }); + const querys = getFilterConditions(queryItems); + + context.emit('conditionChange', querys); + } function loadAllSolution() { loadSolution().then((res:any) => { @@ -92,6 +101,7 @@ export function useSolution(props: QuerySolutionProps, context: SetupContext, us } else { currentSolution.value = cloneDeep(solutions.value[0]); } + handleQuery(); } }).catch(() => { const defaultSolution:QuerySolution = getDefaultSolution(); @@ -100,15 +110,6 @@ export function useSolution(props: QuerySolutionProps, context: SetupContext, us }); } - function handleQuery() { - const queryItems = currentSolution.value?.conditions.filter(condition => { - return !condition.value?.isEmpty(); - }); - const querys = getFilterConditions(queryItems); - - context.emit('conditionChange', querys); - } - return { getDefaultSolution, loadAllSolution, diff --git a/packages/ui-vue/components/query-solution/src/designer/query-solution-config/composition/use-panel.tsx b/packages/ui-vue/components/query-solution/src/designer/query-solution-config/composition/use-panel.tsx index 36ebb984f90222c47d39c1b5ea9e93132d05b08c..6563bf79cdb5ddafd2ac63129a53214194967a9c 100644 --- a/packages/ui-vue/components/query-solution/src/designer/query-solution-config/composition/use-panel.tsx +++ b/packages/ui-vue/components/query-solution/src/designer/query-solution-config/composition/use-panel.tsx @@ -115,8 +115,8 @@ export function usePanel(props: QuerySolutionConfigProps, context: SetupContext, case 'date-range': case 'date-picker': resultSchema = { - format: 'yyyy-MM-dd', - returnFormat: 'yyyy-MM-dd', + valueFormat: 'yyyy-MM-dd', + displayFormat: 'yyyy-MM-dd', }; break; case 'radio-group': @@ -188,8 +188,8 @@ export function usePanel(props: QuerySolutionConfigProps, context: SetupContext, case 'date-range': case 'date-picker': resultSchema = { - format: 'yyyy-MM-dd', - returnFormat: 'yyyy-MM-dd', + valueFormat: 'yyyy-MM-dd', + displayFormat: 'yyyy-MM-dd', }; break; case 'radio-group': diff --git a/packages/ui-vue/components/query-solution/src/designer/query-solution-config/composition/use-property.ts b/packages/ui-vue/components/query-solution/src/designer/query-solution-config/composition/use-property.ts index 632e4271c79040d229fb045592c42fcabed37132..472743e8e73bd3c27f8795b2a422e79c3c1beefc 100644 --- a/packages/ui-vue/components/query-solution/src/designer/query-solution-config/composition/use-property.ts +++ b/packages/ui-vue/components/query-solution/src/designer/query-solution-config/composition/use-property.ts @@ -315,6 +315,13 @@ export function useProperty( } else if(controlType === "radio-group" || controlType === "combo-list") { const {enumValues} = getEnumControlConfig(propertyData); baseControlConfig.properties.data = enumValues; + } else if(controlType === "date-picker") { + const fieldConfig = props.fieldsConfig.find(fieldConfig => fieldConfig.id === propertyData.id); + if(fieldConfig && (fieldConfig.type.name === 'Date' || fieldConfig.type.name === 'DateTime')) { + const { valueFormat, ...dateProperties} = baseControlConfig.properties; + baseControlConfig.properties = dateProperties; + } + } return baseControlConfig; } diff --git a/packages/ui-vue/components/query-solution/src/designer/query-solution-config/property-config/query-solution-config-extend.json b/packages/ui-vue/components/query-solution/src/designer/query-solution-config/property-config/query-solution-config-extend.json index dffccd6d0e15c0854e74dadffbd13896735bd5d3..57f1ee5c355d19627b452c3e2bf026a8e07379ca 100644 --- a/packages/ui-vue/components/query-solution/src/designer/query-solution-config/property-config/query-solution-config-extend.json +++ b/packages/ui-vue/components/query-solution/src/designer/query-solution-config/property-config/query-solution-config-extend.json @@ -291,12 +291,12 @@ "title": "是否必填", "type": "boolean" }, - "returnFormat": { + "valueFormat": { "description": "查询格式", "title": "查询格式", "type": "string" }, - "format": { + "displayFormat": { "description": "显示格式", "title": "显示格式", "type": "string" diff --git a/packages/ui-vue/components/query-solution/src/query-solution.props.ts b/packages/ui-vue/components/query-solution/src/query-solution.props.ts index f2467fc8ec07d3513a2ade088fe4aae307e6f867..d35e498b8b4ca086b1a21e07a031aac3858df5b4 100644 --- a/packages/ui-vue/components/query-solution/src/query-solution.props.ts +++ b/packages/ui-vue/components/query-solution/src/query-solution.props.ts @@ -21,7 +21,6 @@ import { createPropsResolver } from '../../dynamic-resolver'; import { schemaMapper } from './schema/schema-mapper'; import querySolutionSchema from './schema/query-solution.schema.json'; import { schemaResolver } from './schema/schema-resolver'; -import { fieldConfigs, solutions } from './solutions'; export const querySolutionProps = { /** diff --git a/packages/ui-vue/components/query-solution/src/solutions.ts b/packages/ui-vue/components/query-solution/src/solutions.ts deleted file mode 100644 index e4a42fe7a08019b915216902315432c56b69dee7..0000000000000000000000000000000000000000 --- a/packages/ui-vue/components/query-solution/src/solutions.ts +++ /dev/null @@ -1,945 +0,0 @@ - -const fieldConfigs = [ - { - id: 'e605c9f9-a252-48ca-9c65-0bffb3427e86', - labelCode: 'id', - code: 'id', - name: '标识', - placeHolder: '', - editor: { - id: 'e605c9f9-a252-48ca-9c65-0bffb3427e86', - type: 'button-edit', - require: false, - modalConfig: { - modalCmp: null, - mapFields: null, - showHeader: true, - title: '', - showCloseButton: true, - showMaxButton: true, - width: 800, - height: 600, - showFooterButtons: true, - footerButtons: [] - } - } - }, - { - id: '2691b91b-1b5e-4eca-b802-ff5cc2ee7856', - labelCode: 'Version', - code: 'Version', - name: '版本', - placeHolder: '', - editor: { - id: '2691b91b-1b5e-4eca-b802-ff5cc2ee7856', - type: 'date-picker', - require: false, - format: 'yyyy-MM-dd', - weekSelect: false, - startFieldCode: 'Version', - endFieldCode: 'Version' - } - }, - { - id: '2e6a0b5c-dd36-4bfd-ab3c-e3035f3a8e5a', - labelCode: 'EmployeeID.EmployeeID', - code: 'EmployeeID', - name: '创建人', - placeHolder: '', - editor: { - type: 'lookup', - require: false, - uri: '', - textField: 'name', - valueField: 'id', - idField: 'id', - helpId: '915a0b20-975a-4df1-8cfd-888c3dda0009', - displayType: 'List', - loadTreeDataType: 'default', - enableFullTree: false, - editable: false, - mapFields: { code: 'employeeID.employeeID_code', name: 'employeeID.employeeID_name' }, - singleSelect: true, - pageSize: 20, - pageList: '10,20,30,50', - expandLevel: -1, - context: { - enableExtendLoadMethod: true - } - } - }, - { - id: '387679f1-4f61-40f3-8286-b3b55219a7aa', - labelCode: 'EmployeeID.EmployeeID_code', - code: 'code', - name: '创建人工号', - placeHolder: '', - editor: { - id: '387679f1-4f61-40f3-8286-b3b55219a7aa', - type: 'input-group', - require: false, - modalConfig: { - modalCmp: null, - mapFields: null, - showHeader: true, - title: '', - showCloseButton: true, - showMaxButton: true, - width: 800, - height: 600, - showFooterButtons: true, - footerButtons: [] - } - } - }, - { - id: 'f2878e6d-99a2-45e7-8678-3635b1e0ec2a', - labelCode: 'EmployeeID.EmployeeID_name', - code: 'name', - name: '创建人', - placeHolder: '', - editor: { - id: 'f2878e6d-99a2-45e7-8678-3635b1e0ec2a', - type: 'button-edit', - require: false, - modalConfig: { - modalCmp: null, - mapFields: null, - showHeader: true, - title: '', - showCloseButton: true, - showMaxButton: true, - width: 800, - height: 600, - showFooterButtons: true, - footerButtons: [] - } - } - }, - { - id: '393c7ac7-64b2-4888-83a9-c1d8b2755339', - labelCode: 'DomainID.DomainID', - code: 'DomainID', - name: '业务部门', - placeHolder: '', - editor: { - type: 'lookup', - require: false, - uri: '', - textField: 'name', - valueField: 'id', - idField: 'id', - helpId: 'b524a702-7323-4d46-998e-5ba0c6abcd49', - displayType: 'TreeList', - loadTreeDataType: 'default', - enableFullTree: false, - editable: false, - dialogTitle: '', - singleSelect: true, - enableCascade: false, - cascadeStatus: 'enable', - pageSize: 20, - pageList: '10,20,30,50', - nosearch: false, - expandLevel: -1, - context: { - enableExtendLoadMethod: true - }, - quickSelect: { - enable: false, - showMore: true, - showItemsCount: 10 - } - } - }, - { - id: '138082d4-9b07-4da2-9858-73861e0ac127', - labelCode: 'DomainID.DomainID_code', - code: 'code', - name: '部门编号', - placeHolder: '', - editor: { - id: '138082d4-9b07-4da2-9858-73861e0ac127', - type: 'input-group', - require: false, - modalConfig: { - modalCmp: null, - mapFields: null, - showHeader: true, - title: '', - showCloseButton: true, - showMaxButton: true, - width: 800, - height: 600, - showFooterButtons: true, - footerButtons: [] - } - } - }, - { - id: '99587da0-8c9d-4efb-a196-f5762ba6000e', - labelCode: 'DomainID.DomainID_name', - code: 'name', - name: '业务部门', - placeHolder: '', - editor: { - id: '99587da0-8c9d-4efb-a196-f5762ba6000e', - type: 'button-edit', - require: false, - modalConfig: { - modalCmp: null, - mapFields: null, - showHeader: true, - title: '', - showCloseButton: true, - showMaxButton: true, - width: 800, - height: 600, - showFooterButtons: true, - footerButtons: [] - } - } - }, - { - id: 'd9ace6f2-a77a-4b2b-9b3c-61154bb40848', - labelCode: 'BillCode', - code: 'BillCode', - name: '单据编号', - placeHolder: '', - editor: { - id: 'd9ace6f2-a77a-4b2b-9b3c-61154bb40848', - tpye: 'input-group', - require: false, - editable: true, - groupText: '', - usageMode: 'text', - modalConfig: { - modalCmp: null, - mapFields: null, - showHeader: true, - title: '', - showCloseButton: true, - showMaxButton: true, - width: 800, - height: 600, - showFooterButtons: true, - footerButtons: [] - }, - groupTextUseLang: true - } - }, - { - id: '3a8403c1-aa75-4091-947e-53f1d2bb8d4d', - labelCode: 'TotalSum', - code: 'TotalSum', - name: '订单金额', - placeHolder: '', - editor: { - id: '3a8403c1-aa75-4091-947e-53f1d2bb8d4d', - type: 'number-spinner', - require: false, - textAlign: 'left', - precision: 2, - isBigNumber: false, - maxValue: 100000, - minValue: -100000, - readonly: true - } - }, - { - id: 'c7dbe607-bddc-4391-92e2-16f0221765df', - labelCode: 'BillType', - code: 'BillType', - name: '订单类型', - placeHolder: '', - editor: { - type: 'combo-list', - require: false, - valueType: '1', - multiSelect: true, - data: [ - { - id: '1', - name: '1' - }, - { - id: '2', - name: '2' - }, - { - id: '3', - name: '3' - } - ] - } - }, - { - id: 'd152e48d-13d1-4553-94fa-525fa67d4f2b', - labelCode: 'BillDate', - code: 'BillDate', - name: '创建日期', - placeHolder: '', - editor: { - id: 'd152e48d-13d1-4553-94fa-525fa67d4f2b', - type: 'date-picker', - require: false, - format: 'yyyy-MM-dd', - weekSelect: false, - startFieldCode: 'BillDate', - endFieldCode: 'BillDate' - } - }, - { - id: 'abb7ef8e-ef19-4d83-99cc-1b7ff4f05345', - labelCode: 'SecID', - code: 'SecID', - name: '密级', - placeHolder: '', - editor: { - type: 'combo-list', - require: false, - valueType: '1', - multiSelect: true, - data: [ - { - value: 'a', - name: 'aaa' - }, - { - value: 'b', - name: 'bbb' - }, - { - value: 'c', - name: 'ccc' - }, - { - value: 'd', - name: 'ddd' - }, - { - value: 'e', - name: 'e' - } - ], - valueField: 'value', - idField: 'value' - } - }, - { - id: '219c9c45-3bfb-4482-8755-1ea0d3c9475c', - labelCode: 'SecLevel', - code: 'SecLevel', - name: '密级', - placeHolder: '', - editor: { - id: '219c9c45-3bfb-4482-8755-1ea0d3c9475c', - type: 'number-spinner', - require: false, - textAlign: 'left', - precision: 0, - isBigNumber: false - } - }, - { - id: '01ca22ef-fbd4-4322-8e88-503edb9e071c', - labelCode: 'ProjectID', - code: 'ProjectID', - name: '所属项目', - placeHolder: '', - editor: { - id: '01ca22ef-fbd4-4322-8e88-503edb9e071c', - type: 'button-edit', - require: false, - modalConfig: { - modalCmp: null, - mapFields: null, - showHeader: true, - title: '', - showCloseButton: true, - showMaxButton: true, - width: 800, - height: 600, - showFooterButtons: true, - footerButtons: [] - } - } - }, - { - id: 'd9b196a3-2bf0-46ba-8807-22f6ac62ad78', - labelCode: 'ProjectMrg', - code: 'ProjectMrg', - name: '项目经理', - placeHolder: '', - editor: { - id: 'd9b196a3-2bf0-46ba-8807-22f6ac62ad78', - type: 'input-group', - require: false, - modalConfig: { - modalCmp: null, - mapFields: null, - showHeader: true, - title: '', - showCloseButton: true, - showMaxButton: true, - width: 800, - height: 600, - showFooterButtons: true, - footerButtons: [] - } - } - }, - { - id: '6f1bf2f5-7afc-42c5-81ee-b547db370be9', - labelCode: 'AuditStatus', - code: 'AuditStatus', - name: '订单状态', - placeHolder: '', - editor: { - type: 'radio-group', - require: false, - valueType: '1', - horizontal: true, - showLabel: false, - enumData: [ - { - value: '1', - name: '1' - }, - { - value: '2', - name: '2' - } - ] - } - } -]; - -const solutions = [ - { - id: 'c5df9edf-0e74-04b2-efb5-54572e1ab2e9', - code: 'Default', - name: '默认筛选条件', - mode: '1', - type: 'preset', - conditions: [ - { - id: '2e6a0b5c-dd36-4bfd-ab3c-e3035f3a8e5a', - fieldCode: 'EmployeeID.EmployeeID', - fieldName: '制单人', - valueType: 0, - placeHolder: '', - beginPlaceHolder: '', - endPlaceHolder: '', - visible: true, - value: null, - valueConfig: { - type: 13, - content: { - valueField: 'id', - value: [ - { - id: '05701277-d0cf-bae1-a056-1d5ebe8ea9fa', - code: 'Sagi', - name: 'Sagi', - userGroup: '0', - sysOrgId: '001', - tenantId: 10000, - secLevel: '0', - userType: 0, - note: null - } - ], - textValue: 'Sagi' - } - } - }, - { - id: '393c7ac7-64b2-4888-83a9-c1d8b2755339', - fieldCode: 'DomainID.DomainID', - fieldName: '业务部门', - valueType: 0, - placeHolder: '', - beginPlaceHolder: '', - endPlaceHolder: '', - visible: true, - value: null, - valueConfig: { - type: 2, - content: { - value: [ - { - id: 'c4427472-95c6-e2c5-c3aa-ef6d537a1b33', - code: 'Inspur', - name: '浪潮集团', - treeinfo: { parentElement: '', sequence: 2, layer: 1, isDetail: false } - } - ], - valueField: 'id', - textValue: '浪潮集团', - isInputText: false - } - } - }, - { - id: 'd9ace6f2-a77a-4b2b-9b3c-61154bb40848', - fieldCode: 'BillCode', - fieldName: '单据编号', - valueType: 0, - placeHolder: '', - beginPlaceHolder: '', - endPlaceHolder: '', - visible: true, - value: null, - valueConfig: { type: 15, content: { value: [], textValue: '', isInputText: true } } - }, - { - id: 'c7dbe607-bddc-4391-92e2-16f0221765df', - fieldCode: 'BillType', - fieldName: '订单类型', - valueType: 0, - placeHolder: '', - beginPlaceHolder: '', - endPlaceHolder: '', - visible: true, - value: null, - valueConfig: { type: 3, content: { value: '2', key: '2' } } - }, - { - id: 'd152e48d-13d1-4553-94fa-525fa67d4f2b', - fieldCode: 'BillDate', - fieldName: '创建日期', - valueType: 0, - placeHolder: '', - beginPlaceHolder: '', - endPlaceHolder: '', - visible: true, - value: null, - valueConfig: { type: 1, content: { dateValue: '2023-09-01' } } - }, - { - id: 'abb7ef8e-ef19-4d83-99cc-1b7ff4f05345', - fieldCode: 'SecID', - fieldName: '密级', - valueType: 0, - placeHolder: '', - beginPlaceHolder: '', - endPlaceHolder: '', - visible: true, - value: null, - valueConfig: { - type: 3, - content: { - value: 'a,b', - key: 'a,b' - } - } - }, - { - id: '219c9c45-3bfb-4482-8755-1ea0d3c9475c', - fieldCode: 'SecLevel', - fieldName: '密级', - valueType: 0, - placeHolder: '', - beginPlaceHolder: '', - endPlaceHolder: '', - visible: true, - value: null, - valueConfig: { type: 5, content: { value: 1 } } - }, - { - id: '6f1bf2f5-7afc-42c5-81ee-b547db370be9', - fieldCode: 'AuditStatus', - fieldName: '订单状态', - valueType: 0, - placeHolder: '', - beginPlaceHolder: '', - endPlaceHolder: '', - visible: true, - value: null, - valueConfig: { type: 14, content: { value: '2' } } - }, - { - id: '01ca22ef-fbd4-4322-8e88-503edb9e071c', - fieldCode: 'ProjectID', - fieldName: '所属项目', - valueType: 0, - placeHolder: '', - beginPlaceHolder: '', - endPlaceHolder: '', - visible: true, - value: null, - valueConfig: { type: 0, content: { value: 'dsfd ' } } - }, - { - id: '3a8403c1-aa75-4091-947e-53f1d2bb8d4d', - fieldCode: 'TotalSum', - fieldName: '订单金额', - valueType: 0, - placeHolder: '', - beginPlaceHolder: '', - endPlaceHolder: '', - visible: true, - value: null, - valueConfig: { type: 6, content: { numValue: 21333 } } - }, - { - id: 'd9b196a3-2bf0-46ba-8807-22f6ac62ad78', - fieldCode: 'ProjectMrg', - fieldName: '项目经理', - valueType: 0, - placeHolder: '', - beginPlaceHolder: '', - endPlaceHolder: '', - visible: true, - value: null, - valueConfig: { type: 0, content: {} } - }, - { - id: '2691b91b-1b5e-4eca-b802-ff5cc2ee7856', - fieldCode: 'Version', - fieldName: '版本', - valueType: 0, - placeHolder: '', - beginPlaceHolder: '', - endPlaceHolder: '', - visible: true, - value: null, - valueConfig: { type: 4, content: { startTime: '2023-09-01', endTime: '2023-09-15' } } - } - ], - isPreset: true, - isDefault: true, - creatorCode: 'sagi', - creatorId: 'sagi', - creatorName: 'sagi', - }, - // { - // id: '3a491eb1-018e-e03e-d430-f05fccd894f3', - // code: 'Order of The Month', - // name: '本月订单', - // mode: '1', - // type: 'public', - // conditions: [ - // { - // id: '2e6a0b5c-dd36-4bfd-ab3c-e3035f3a8e5a', - // fieldCode: '制单人', - // fieldName: '', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // value: { type: 13, content: { valueField: '', value: [], textValue: 'help-text-value-null' } } - // }, - // { - // id: '393c7ac7-64b2-4888-83a9-c1d8b2755339', - // fieldCode: 'DomainID.DomainID', - // fieldName: '业务部门', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // value: { type: 2, content: { value: [], valueField: '', textValue: 'help-text-value-null', isInputText: false } } - // }, - // { - // id: 'd9ace6f2-a77a-4b2b-9b3c-61154bb40848', - // fieldCode: 'BillCode', - // fieldName: '单据编号', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // value: { type: 15, content: { value: [], textValue: '' } } - // }, - // { - // id: '3a8403c1-aa75-4091-947e-53f1d2bb8d4d', - // fieldCode: 'TotalSum', - // fieldName: '订单金额', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // value: { type: 5, content: { startValue: null, endValue: null } } - // }, - // { - // id: 'c7dbe607-bddc-4391-92e2-16f0221765df', - // fieldCode: 'BillType', - // fieldName: '订单类型', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // value: { type: 3, content: { value: [] } } - // }, - // { - // id: 'd152e48d-13d1-4553-94fa-525fa67d4f2b', - // fieldCode: 'BillDate', - // fieldName: '创建日期', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // value: { type: 1, content: { dateValue: '' } } - // }, - // { - // id: 'abb7ef8e-ef19-4d83-99cc-1b7ff4f05345', - // fieldCode: 'SecID', - // fieldName: '密级', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // value: { type: 3, content: { value: [] } } - // }, - // { - // id: '219c9c45-3bfb-4482-8755-1ea0d3c9475c', - // fieldCode: 'SecLevel', - // fieldName: '密级', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // value: { type: 5, content: { startValue: null, endValue: null } } - // }, - // { - // id: '6f1bf2f5-7afc-42c5-81ee-b547db370be9', - // fieldCode: 'AuditStatus', - // fieldName: '订单状态', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // value: { type: 14, content: {} } - // }, - // { - // id: '01ca22ef-fbd4-4322-8e88-503edb9e071c', - // fieldCode: 'ProjectID', - // fieldName: '所属项目', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // value: { type: 0, content: { value: '' } } - // } - // ], - // isPreset: false, - // isDefault: false, - // creatorCode: 'sagi', - // creatorId: 'sagi', - // creatorName: 'sagi', - // isControlInline: false - // }, - // { - // id: '2120021b-df0c-0eef-d1d5-feaa78b01d7e', - // code: 'Pending Orders of The Month', - // name: '本月待支付订单', - // mode: '2', - // type: 'private', - // conditions: [ - // { - // id: 'e605c9f9-a252-48ca-9c65-0bffb3427e86', - // fieldCode: 'id', - // fieldName: '标识', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // conditionId: 9, - // compareType: '0', - // relation: 1, - // value: { type: 0, content: { value: '123' } } - // }, - // { - // id: '6f1bf2f5-7afc-42c5-81ee-b547db370be9', - // fieldCode: 'AuditStatus', - // fieldName: '单据状态', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // conditionId: 6, - // compareType: '0', - // relation: 1, - // lBracket: '(', - // value: { type: 14, content: { value: '2' } } - // }, - // { - // id: '2e6a0b5c-dd36-4bfd-ab3c-e3035f3a8e5a', - // fieldCode: 'EmployeeID.EmployeeID', - // fieldName: '创建人', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // conditionId: 1, - // compareType: '0', - // relation: 1, - // lBracket: '((', - // value: { - // type: 13, - // content: { - // valueField: 'id', - // value: [ - // { - // id: '9e35953a-40fd-4a9a-922f-b9f59bf2a517', - // code: 'sagi', - // name: 'sagi', - // userGroup: '0', - // sysOrgId: '001', - // tenantId: 10000, - // secLevel: 'PUBLIC', - // userType: 3, - // note: null - // } - // ], - // textValue: 'sagi' - // } - // } - // }, - // { - // id: '393c7ac7-64b2-4888-83a9-c1d8b2755339', - // fieldCode: 'DomainID.DomainID', - // fieldName: '业务部门', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // conditionId: 2, - // compareType: '0', - // relation: 1, - // rBracket: ')', - // value: { - // type: 2, - // content: { - // value: [ - // { - // id: '1640d027-7531-2388-e5eb-6fe0ae8c9734', - // code: 'SCM', - // name: '采购部', - // treeinfo: { parentElement: '001', sequence: 2, layer: 2, isDetail: true } - // }, - // { - // id: '001', - // code: '001', - // name: '销售部', - // treeinfo: { parentElement: '', sequence: 1, layer: 1, isDetail: false } - // } - // ], - // valueField: 'id', - // textValue: '采购部,销售部', - // isInputText: false - // } - // } - // }, - // { - // id: 'd9ace6f2-a77a-4b2b-9b3c-61154bb40848', - // fieldCode: 'BillCode', - // fieldName: '单据编号', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // conditionId: 7, - // compareType: '0', - // relation: 1, - // lBracket: '(', - // value: { type: 15, content: { value: [], textValue: '123', isInputText: true } } - // }, - // { - // id: '3a8403c1-aa75-4091-947e-53f1d2bb8d4d', - // fieldCode: 'TotalSum', - // fieldName: '订单金额', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // conditionId: 8, - // compareType: '0', - // relation: 1, - // rBracket: ')))', - // value: { type: 6, content: { numValue: 5 } } - // }, - // { - // id: 'c7dbe607-bddc-4391-92e2-16f0221765df', - // fieldCode: 'BillType', - // fieldName: '订单类型', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // conditionId: 3, - // compareType: '0', - // relation: 1, - // lBracket: '(', - // value: { type: 3, content: { value: [{ value: '1', name: '1' }], key: '1' } } - // }, - // { - // id: 'd152e48d-13d1-4553-94fa-525fa67d4f2b', - // fieldCode: 'BillDate', - // fieldName: '创建日期', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // conditionId: 4, - // compareType: '0', - // relation: 1, - // lBracket: '(', - // value: { type: 1, content: { dateValue: '2023-09-01' } } - // }, - // { - // id: 'abb7ef8e-ef19-4d83-99cc-1b7ff4f05345', - // fieldCode: 'SecID', - // fieldName: '密级', - // valueType: 0, - // placeHolder: '', - // beginPlaceHolder: '', - // endPlaceHolder: '', - // visible: true, - // conditionId: 5, - // compareType: '0', - // relation: 1, - // rBracket: '))', - // value: { - // type: 3, - // content: { - // value: [ - // { value: 'a', name: 'a' }, - // { value: 'b', name: 'b' }, - // { value: 'c', name: 'c' } - // ], - // key: 'a,b,c' - // } - // } - // } - // ], - // isPreset: false, - // isDefault: false, - // creatorCode: 'sagi', - // creatorId: 'sagi', - // creatorName: 'sagi' - // } -]; - -export { - fieldConfigs, - solutions -}; diff --git a/packages/ui-vue/components/response-toolbar/src/components/dropdown/toolbar-dropdown-menu.component.tsx b/packages/ui-vue/components/response-toolbar/src/components/dropdown/toolbar-dropdown-menu.component.tsx index 1e4979b6eb6d6f9baae63bc43965bac13a69b835..b0df8dfb09d9a3f874ab0e517eb7acbb3b6ddbbb 100644 --- a/packages/ui-vue/components/response-toolbar/src/components/dropdown/toolbar-dropdown-menu.component.tsx +++ b/packages/ui-vue/components/response-toolbar/src/components/dropdown/toolbar-dropdown-menu.component.tsx @@ -2,7 +2,7 @@ import { getCurrentInstance } from 'vue'; import { ResponseToolbarDropDownItem } from '../../types/response-toolbar-dropdwon-item'; import { UseIcon } from '../../composition/types'; -export default function (useIconComposition: UseIcon) { +export default function (context, useIconComposition: UseIcon) { function dropdownMenuClass(item: ResponseToolbarDropDownItem) { const classObject = { 'dropdown-menu': true @@ -74,7 +74,13 @@ export default function (useIconComposition: UseIcon) { function onItemClick(event: MouseEvent, menuItem: ResponseToolbarDropDownItem) { document.body.click(); // 隐藏展开的下拉菜单 - menuItem.enable && menuItem.onClick(event, menuItem.id); + if(!menuItem.enable) { + return; + } + if (typeof menuItem.onClick === 'function') { + menuItem.onClick(event, menuItem.id); + } + context.emit('click', event, menuItem.id); } function renderDropdownMenuItem(item: ResponseToolbarDropDownItem) { diff --git a/packages/ui-vue/components/response-toolbar/src/components/dropdown/toolbar-dropdown.component.tsx b/packages/ui-vue/components/response-toolbar/src/components/dropdown/toolbar-dropdown.component.tsx index 4a78b7e1de03c2b4bd5d144e1cc26360f69e0c38..25d7ca944840c572dbf7d76e576bf82be3921f79 100644 --- a/packages/ui-vue/components/response-toolbar/src/components/dropdown/toolbar-dropdown.component.tsx +++ b/packages/ui-vue/components/response-toolbar/src/components/dropdown/toolbar-dropdown.component.tsx @@ -4,9 +4,9 @@ import { ResponseToolbarProps } from '../../response-toolbar.props'; import { ResponseToolbarDropDownItem } from '../../types/response-toolbar-dropdwon-item'; import getDropdownMenu from './toolbar-dropdown-menu.component'; -export default function (props: ResponseToolbarProps, useIconComposition: UseIcon) { +export default function (props: ResponseToolbarProps, context, useIconComposition: UseIcon) { const alignment = ref(props.alignment); - const { renderDropdownMenu, clearAllDropDownMenu } = getDropdownMenu(useIconComposition); + const { renderDropdownMenu, clearAllDropDownMenu } = getDropdownMenu(context, useIconComposition); function dropdownClass(item: ResponseToolbarDropDownItem) { const classObject = { diff --git a/packages/ui-vue/components/response-toolbar/src/response-toolbar.component.tsx b/packages/ui-vue/components/response-toolbar/src/response-toolbar.component.tsx index 9ac775dc27c261a46fac2e15ebcfbe820176e836..82e401c2dfde8d6ba2c5c45fcdea3fa3c05cdfc6 100644 --- a/packages/ui-vue/components/response-toolbar/src/response-toolbar.component.tsx +++ b/packages/ui-vue/components/response-toolbar/src/response-toolbar.component.tsx @@ -44,7 +44,7 @@ export default defineComponent({ return classObject; }); - const { renderToolbarDropdown, clearAllDropDown } = getDropdown(props, useIconComposition); + const { renderToolbarDropdown, clearAllDropDown } = getDropdown(props, context, useIconComposition); function collapseAllDropdownMenu() { toolbarItems.value