<script lang="ts" setup>
|
import { computed, nextTick, reactive } from 'vue';
|
|
import { useMessage } from '@jnpf/hooks';
|
import { BasicModal, useModalInner } from '@jnpf/ui/modal';
|
import { buildBitUUID, isUrl } from '@jnpf/utils';
|
|
import { useDebounceFn } from '@vueuse/core';
|
import { cloneDeep } from 'lodash-es';
|
import Sortablejs from 'sortablejs';
|
|
import { getDataInterfaceInfo } from '#/api/systemData/dataInterface';
|
|
import { linkTypeList, typeList } from '../helper/dataMap';
|
|
interface State {
|
list: any[];
|
menuList: any[];
|
appMenuList: any[];
|
showType: string;
|
dataType: string;
|
allOptions: any[];
|
options: any[];
|
interfaceId: string;
|
}
|
const emit = defineEmits(['register', 'change']);
|
const state = reactive<State>({
|
list: [],
|
menuList: [],
|
appMenuList: [],
|
showType: '',
|
dataType: 'static',
|
allOptions: [],
|
options: [],
|
interfaceId: '',
|
});
|
const { createMessage } = useMessage();
|
const [registerModal, { closeModal }] = useModalInner(init);
|
const debounceOnSearch = useDebounceFn(onSearch, 300);
|
|
const getColumns = computed(() => {
|
const fontColumns = [
|
{ title: '拖动', dataIndex: 'drag', key: 'drag', align: 'center', width: 50 },
|
{ title: '名称', dataIndex: 'fullName', key: 'fullName', width: 160 },
|
];
|
const behindColumns = [
|
{ title: '单位名称', dataIndex: 'unit', key: 'unit', width: 80 },
|
{ title: '图标', dataIndex: 'icon', key: 'icon', width: 180 },
|
{ title: '图标颜色', dataIndex: 'iconColor', key: 'iconColor', width: 80 },
|
{ title: '链接类型', dataIndex: 'linkType', key: 'linkType', width: 360 },
|
{ title: '操作', dataIndex: 'action', key: 'action', width: 50, fixed: 'right' },
|
];
|
const num = { title: '数值', dataIndex: 'num', key: 'num', width: 160 };
|
const field = { title: '字段', dataIndex: 'field', key: 'field', width: 160 };
|
return [...fontColumns, state.dataType == 'static' ? num : field, ...behindColumns];
|
});
|
|
function init(data) {
|
state.list = cloneDeep(data.data);
|
state.menuList = data.menuList || [];
|
state.appMenuList = data.appMenuList || [];
|
state.showType = data.showType || 'pc';
|
state.dataType = data.dataType || 'static';
|
state.interfaceId = data.interfaceId || '';
|
nextTick(() => {
|
initSort();
|
initFieldData();
|
});
|
}
|
function initSort() {
|
const searchTable: any = document.querySelector(`.carousel-table .ant-table-tbody`);
|
Sortablejs.create(searchTable, {
|
handle: '.drag-handler',
|
animation: 150,
|
easing: 'cubic-bezier(1, 0, 0, 1)',
|
onStart: () => {},
|
onEnd: ({ newIndex, oldIndex }: any) => {
|
const currRow = state.list.splice(oldIndex - 1, 1)[0];
|
state.list.splice(newIndex - 1, 0, currRow);
|
},
|
});
|
}
|
function getSelectVal(_val, item, index) {
|
state.list[index].type = item.type;
|
state.list[index].urlAddress = item.urlAddress;
|
if (item.linkTarget) state.list[index].linkTarget = item.linkTarget;
|
if (item.propertyJson) state.list[index].propertyJson = item.propertyJson;
|
}
|
function handleAdd() {
|
const item = {
|
fullName: '',
|
moduleId: '',
|
linkType: '',
|
urlAddress: '',
|
linkTarget: '_self',
|
unit: '',
|
num: '',
|
field: '',
|
icon: 'icon-ym icon-ym-webDesign',
|
iconColor: 'rgb(74, 184, 255)',
|
type: 2,
|
id: buildBitUUID(),
|
};
|
state.list.push(item);
|
}
|
function handleDel(index) {
|
state.list.splice(index, 1);
|
}
|
function handleSubmit() {
|
for (let i = 0; i < state.list.length; i++) {
|
const element = state.list[i];
|
if (!element.fullName) return createMessage.warning('名称不能为空');
|
if (state.dataType == 'dynamic' && !element.field) return createMessage.warning('字段不能为空');
|
if (state.dataType == 'static' && !element.num) return createMessage.warning('数值不能为空');
|
if (!element.icon) return createMessage.warning('请选择图标');
|
if (!element.iconColor) return createMessage.warning('请选择图标颜色');
|
if (element.linkType == 1 && !element.urlAddress && !element.moduleId) return createMessage.warning('请选择菜单');
|
if (element.linkType == 2 && !element.urlAddress) return createMessage.warning('链接地址不能为空');
|
if (element.linkType == 2 && !isUrl(element.urlAddress)) return createMessage.warning('请输入正确的链接地址');
|
}
|
emit('change', state.list);
|
nextTick(() => closeModal());
|
}
|
function initFieldData() {
|
if (!state.interfaceId) return (state.allOptions = []);
|
getDataInterfaceInfo(state.interfaceId).then((res) => {
|
const data = res.data;
|
const list = data.fieldJson ? JSON.parse(data.fieldJson) : [];
|
state.allOptions = list.map((o) => ({ ...o, value: o.defaultValue }));
|
});
|
}
|
function onSearch(searchText: string) {
|
state.options = state.allOptions.filter((o) => o.value.toLowerCase().includes(searchText.toLowerCase()));
|
}
|
function onFocus(searchText) {
|
onSearch(searchText);
|
}
|
</script>
|
<template>
|
<BasicModal v-bind="$attrs" width="1000px" class="jnpf-modal-portal" @register="registerModal" title="选项设置" @ok="handleSubmit" destroy-on-close>
|
<a-table :data-source="state.list" :columns="getColumns" size="small" :pagination="false" row-key="id" :scroll="{ x: 1200, y: 478 }" class="carousel-table">
|
<template #headerCell="{ column }">
|
<template v-if="column.key === 'linkType'">
|
链接类型<BasicHelp text="地址以http://或https://开头,例:https://xxx.com?xxx=${field},参数可选" />
|
</template>
|
</template>
|
<template #bodyCell="{ column, record, index }">
|
<template v-if="column.key === 'drag'">
|
<i class="drag-handler icon-ym icon-ym-darg" title="点击拖动"></i>
|
</template>
|
<template v-if="column.key === 'fullName'">
|
<jnpf-i18n-input v-model:value="record.fullName" v-model:i18n="record.fullNameI18nCode" placeholder="请输入" allow-clear :maxlength="50" />
|
</template>
|
<template v-if="column.key === 'num'">
|
<a-input v-model:value="record.num" placeholder="请输入" :maxlength="10" allow-clear />
|
</template>
|
<template v-if="column.key === 'field'">
|
<a-auto-complete
|
v-model:value="record.field"
|
placeholder="请输入"
|
:options="state.options"
|
allow-clear
|
@focus="onFocus(record.field)"
|
@search="debounceOnSearch(record.field)" />
|
</template>
|
<template v-if="column.key === 'unit'">
|
<a-input v-model:value="record[column.key]" placeholder="请输入" :maxlength="5" allow-clear />
|
</template>
|
<template v-if="column.key === 'icon'">
|
<JnpfIconPicker v-model:value="record.icon" />
|
</template>
|
<template v-if="column.key === 'iconColor'">
|
<jnpf-color-picker v-model:value="record.iconColor" size="small" color-format="rgb" />
|
</template>
|
<template v-if="column.key === 'linkType'">
|
<div class="flex items-center">
|
<jnpf-select class="!mr-[10px] !w-[160px]" v-model:value="record[column.key]" :options="linkTypeList" show-search allow-clear />
|
<div class="flex-1">
|
<jnpf-tree-select
|
v-if="record.linkType == 1"
|
v-model:value="record.moduleId"
|
placeholder="请选择"
|
last-level
|
allow-clear
|
show-search
|
:options="state.showType == 'pc' ? state.menuList : state.appMenuList"
|
@change="(val, data) => getSelectVal(val, data, index)" />
|
<a-input v-if="record.linkType == 2" v-model:value="record.urlAddress" placeholder="请输入">
|
<template #addonAfter v-if="state.showType == 'pc'">
|
<jnpf-select v-model:value="record.linkTarget" :options="typeList" class="!w-[90px]" />
|
</template>
|
</a-input>
|
</div>
|
</div>
|
</template>
|
<template v-if="column.key === 'action'">
|
<a-button class="action-btn" type="link" color="error" @click="handleDel(index)" size="small">删除</a-button>
|
</template>
|
</template>
|
</a-table>
|
<div class="table-add-action" @click="handleAdd()">
|
<a-button type="link" pre-icon="icon-ym icon-ym-btn-add">添加</a-button>
|
</div>
|
</BasicModal>
|
</template>
|