style(api): 统一代码风格并修复语法问题
- 统一import语句的空格格式 - 修复分号缺失问题 - 调整函数参数换行格式以符合规范 - 删除多余空行保持代码整洁 - 修复字符串拼接的换行格式问题
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
import SelectData from './components/select-data.vue';
|
||||
import { Environment } from '@/api/system/environment/model';
|
||||
|
||||
const props = withDefaults(
|
||||
const props = withDefaults(
|
||||
defineProps<{
|
||||
value?: any;
|
||||
placeholder?: string;
|
||||
@@ -46,7 +46,7 @@ const props = withDefaults(
|
||||
const showEdit = ref(false);
|
||||
// 当前编辑数据
|
||||
const current = ref<Environment | null>(null);
|
||||
const content = ref<any>(props.value)
|
||||
const content = ref<any>(props.value);
|
||||
|
||||
/* 打开编辑弹窗 */
|
||||
const openEdit = (row?: Environment) => {
|
||||
|
||||
Reference in New Issue
Block a user