解决了所有警告
This commit is contained in:
parent
a817bc2891
commit
1d0b8f2043
@ -162,11 +162,17 @@ export default defineComponent({
|
||||
const paytype = ref(1);
|
||||
const paytypeforign = ref(1);
|
||||
|
||||
const onChange: (e: any) => void = (e: any) => {
|
||||
interface Changes {
|
||||
target: {
|
||||
value: number;
|
||||
};
|
||||
}
|
||||
|
||||
const onChange: (e: Changes) => void = (e: Changes) => {
|
||||
console.log("radio checked", e.target.value);
|
||||
paytype.value = e.target.value;
|
||||
};
|
||||
const onChange1: (e: any) => void = (e: any) => {
|
||||
const onChange1: (e: Changes) => void = (e: Changes) => {
|
||||
console.log("radio checked", e.target.value);
|
||||
paytypeforign.value = e.target.value;
|
||||
};
|
||||
|
@ -64,7 +64,7 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent, ref } from "vue";
|
||||
import { defineComponent } from "vue";
|
||||
import NavBottom from "@/components/NavBottom.vue";
|
||||
export default defineComponent({
|
||||
name: "Cashoutdetail",
|
||||
|
@ -80,7 +80,7 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent, ref } from "vue";
|
||||
import { defineComponent } from "vue";
|
||||
import NavBottom from "@/components/NavBottom.vue";
|
||||
export default defineComponent({
|
||||
name: "Transaction",
|
||||
|
@ -45,7 +45,7 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent, ref } from "vue";
|
||||
import { defineComponent } from "vue";
|
||||
import NavBottom from "@/components/NavBottom.vue";
|
||||
export default defineComponent({
|
||||
name: "Transactiondetail",
|
||||
|
@ -201,7 +201,7 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent, ref } from "vue";
|
||||
import { defineComponent } from "vue";
|
||||
import NavBottom from "@/components/NavBottom.vue";
|
||||
import router from '@/router';
|
||||
export default defineComponent({
|
||||
|
Loading…
Reference in New Issue
Block a user