remove old sys
This commit is contained in:
parent
00db6b6619
commit
1f76194664
254 changed files with 88 additions and 98844 deletions
|
|
@ -5,7 +5,7 @@ import { useCounterMixin } from "@/stores/mixin";
|
|||
import { useRoute } from "vue-router";
|
||||
import axios from "axios";
|
||||
|
||||
import HeaderTop from "@/modules/04_registry/components/Information/top.vue";
|
||||
import HeaderTop from "@/components/information/top.vue";
|
||||
import http from "@/plugins/http";
|
||||
import config from "@/app.config";
|
||||
|
||||
|
|
|
|||
|
|
@ -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 ?? "",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ import type {
|
|||
OpfillterTypeSt,
|
||||
} from "@/modules/05_placement/interface/request/Main";
|
||||
|
||||
import DialogHeader from "@/modules/04_registry/components/DialogHeader.vue";
|
||||
import DialogHeader from "@/components/DialogHeader.vue";
|
||||
import DialogOrder from "@/modules/05_placement/components/probation/DialogOrder.vue";
|
||||
|
||||
const $q = useQuasar(); //ใช้ noti quasar
|
||||
|
|
@ -577,7 +577,6 @@ onMounted(async () => {
|
|||
map-options
|
||||
:options="columns"
|
||||
option-value="name"
|
||||
|
||||
style="min-width: 140px"
|
||||
class="col-xs-12 col-sm-3 col-md-2"
|
||||
/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue