mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-11 19:56:37 +08:00
feat: 前后端联调代码生成接口
This commit is contained in:
@@ -224,7 +224,7 @@ import {
|
||||
updateData,
|
||||
delData,
|
||||
getType
|
||||
} from "@/api/webfirst/fieldApi";
|
||||
} from "@/api/code/fieldApi";
|
||||
import { computed, onMounted, defineProps, ref } from "vue";
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
@@ -267,7 +267,8 @@ const data = reactive({
|
||||
const { queryParams, form, rules } = toRefs(data);
|
||||
|
||||
const getFieldTypeEnum=(field)=>{
|
||||
return fieldList.value.filter(x=>x.value==field)[0].lable;
|
||||
return field;
|
||||
// return fieldList.value.filter(x=>x.value==field)[0]?.lable??'未知';
|
||||
}
|
||||
|
||||
watch(
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {listData} from "@/api/webfirst/tableApi.js"
|
||||
import {listData} from "@/api/code/tableApi.js"
|
||||
|
||||
const useTable=()=>{
|
||||
const dataList=ref([]);
|
||||
|
||||
Reference in New Issue
Block a user