This commit is contained in:
Viet An
2026-07-02 09:07:59 +07:00
parent 1fc8532ed8
commit e91f0d22c4
52 changed files with 131 additions and 159 deletions

View File

@@ -1,5 +1,4 @@
<script setup>
const { $dayjs } = useNuxtApp();
const props = defineProps({
date: String,
});

View File

@@ -21,7 +21,7 @@
</template>
<script setup>
const emit = defineEmits(["close"]);
const { $store, $getdata, $patchapi, $updatepage } = useNuxtApp();
const { $getdata, $patchapi, $updatepage } = useNuxtApp();
const props = defineProps({
row: Object,
pagename: String,

View File

@@ -1,6 +1,5 @@
<script setup>
const props = defineProps(["row", "pagename"]);
const { $copyToClipboard } = useNuxtApp();
const phone = props.row.customer__phone || props.row.party__phone || props.row.phone;
const format = (s) => `${s.slice(0, 3)} ${s.slice(3, 6)} ${s.slice(6, 20)}`;