fix code build error
This commit is contained in:
parent
52f89c16f1
commit
040a191573
7 changed files with 65 additions and 164 deletions
|
|
@ -2,7 +2,7 @@
|
|||
import { ref } from "vue";
|
||||
import http from "@/plugins/http";
|
||||
import config from "@/app.config";
|
||||
import type { QForm } from "quasar";
|
||||
import type { QForm, QTableProps } from "quasar";
|
||||
import { useCounterMixin } from "@/stores/mixin";
|
||||
import { useQuasar } from "quasar";
|
||||
import { useRouter } from "vue-router";
|
||||
|
|
@ -10,7 +10,7 @@ import type {
|
|||
history,
|
||||
ColumnData,
|
||||
DataOptionInsigniaType,
|
||||
} from "../interface/index/Main.ts";
|
||||
} from "@/modules/10_order/interface/index/Main";
|
||||
|
||||
const myForm = ref<QForm>();
|
||||
const mixin = useCounterMixin();
|
||||
|
|
@ -30,7 +30,7 @@ const reportType = ref<string>("");
|
|||
const reportYear = ref<number | null>();
|
||||
const reportNo = ref<string>("");
|
||||
|
||||
const columns = ref<ColumnData[]>([
|
||||
const columns = ref<QTableProps["columns"]>([
|
||||
{
|
||||
name: "no",
|
||||
label: "ลำดับ",
|
||||
|
|
@ -227,7 +227,6 @@ const paginationLabel = (start: number, end: number, total: number) => {
|
|||
"
|
||||
:label="`${'ปีงบประมาณ'}`"
|
||||
:rules="[(val:string) => !!val || `${'กรุณาเลือก ปี'}`]"
|
||||
clearable
|
||||
>
|
||||
</q-input>
|
||||
</template>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue