ui ==> Workflow

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-10-15 16:16:59 +07:00
parent 2b59c01fdf
commit af3deafa03
6 changed files with 626 additions and 370 deletions

View file

@ -5,6 +5,7 @@ import http from "@/plugins/http";
import config from "@/app.config";
/** importType*/
import type { PropType } from "vue";
import type { FormProfile } from "@/interface/main";
import type { DataProfile } from "@/modules/05_placement/interface/index/Main";
@ -15,12 +16,11 @@ import PopupPersonal from "@/components/Dialogs/PopupPersonalNew.vue";
import { useCounterMixin } from "@/stores/mixin";
/** use*/
const $q = useQuasar();
const { messageError, findOrgNameOld, findOrgName } = useCounterMixin();
const { findOrgNameOld, findOrgName } = useCounterMixin();
/** propsDataProfile*/
const props = defineProps({
data: { type: Object, required: true },
data: { type: Object as PropType<DataProfile>, required: true },
type: { type: String, default: "" },
});