style: 修复样式

This commit is contained in:
TsMask
2024-11-23 15:16:52 +08:00
parent f310ae4f38
commit cb510d9fdb
11 changed files with 259 additions and 122 deletions

View File

@@ -1,7 +1,7 @@
import { editPtNeConfigData } from '@/api/pt/neConfig';
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
import { SizeType } from 'ant-design-vue/es/config-provider';
import message from 'ant-design-vue/es/message';
import { message } from 'ant-design-vue/es';
import { reactive, toRaw } from 'vue';
/**
@@ -48,6 +48,13 @@ export default function useConfigList({ t, treeState, ruleVerification }: any) {
/**单列表编辑 */
function listEdit(row: Record<string, any>) {
if (
listState.confirmLoading ||
['read-only', 'read', 'ro'].includes(row.access)
) {
return;
}
listState.editRecord = Object.assign({}, row);
}
@@ -84,7 +91,7 @@ export default function useConfigList({ t, treeState, ruleVerification }: any) {
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
message.success({
content: t('views.configManage.configParamForm.updateValue', {
content: t('views.ne.neConfig.updateValue', {
num: from['display'],
}),
duration: 3,
@@ -98,7 +105,7 @@ export default function useConfigList({ t, treeState, ruleVerification }: any) {
}
} else {
message.warning({
content: t('views.configManage.configParamForm.updateValueErr'),
content: t('views.ne.neConfig.updateValueErr'),
duration: 3,
});
}