remove old sys
This commit is contained in:
parent
00db6b6619
commit
1f76194664
254 changed files with 88 additions and 98844 deletions
|
|
@ -9,7 +9,6 @@ import http from "@/plugins/http";
|
|||
import config from "@/app.config";
|
||||
|
||||
import type { QTableProps, QForm } from "quasar";
|
||||
import type { InformationOps } from "@/modules/04_registry/interface/index/Main";
|
||||
import type {
|
||||
ResponseTitle,
|
||||
DataProfile,
|
||||
|
|
@ -18,9 +17,10 @@ import type {
|
|||
Information,
|
||||
DataOption,
|
||||
DataOptioninfo,
|
||||
docList,
|
||||
} from "@/modules/04_registry/components/profileType";
|
||||
import { defaultInformation } from "@/modules/04_registry/components/profileType";
|
||||
DocList,
|
||||
InformationOps,
|
||||
} from "@/modules/05_placement/interface/index/ProfileType";
|
||||
import { defaultInformation } from "@/modules/05_placement/interface/index/ProfileType";
|
||||
|
||||
import CardProfile from "@/components/CardProfile.vue";
|
||||
|
||||
|
|
@ -54,7 +54,7 @@ const status = ref<string>("");
|
|||
const myForm = ref<QForm | null>(null);
|
||||
const edit = ref<boolean>(false); //การแก้ไข
|
||||
const informaData = ref<Information>(defaultInformation); //ข้อมูลส่วนตัว
|
||||
const rows = ref<docList[]>([]); //เอกสารเพิ่มเติม
|
||||
const rows = ref<DocList[]>([]); //เอกสารเพิ่มเติม
|
||||
const columns = ref<QTableProps["columns"]>([
|
||||
{
|
||||
name: "no",
|
||||
|
|
@ -204,9 +204,9 @@ async function getData() {
|
|||
.then(async (res: any) => {
|
||||
const data = res.data.result;
|
||||
dataProfile.value = res.data.result as unknown as DataProfile;
|
||||
let list: docList[] = [];
|
||||
let list: DocList[] = [];
|
||||
if (data.docs.length > 0) {
|
||||
data.docs.map((doc: docList) => {
|
||||
data.docs.map((doc: DocList) => {
|
||||
list.push({
|
||||
pathName: doc.pathName ?? "",
|
||||
fileName: doc.fileName ?? "",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue