submit
This commit is contained in:
parent
dddfeb947c
commit
23a2438a88
@ -1,5 +1,4 @@
|
||||
<template>
|
||||
|
||||
<tm-tabbar :autoSelect="false" v-model:active="acc">
|
||||
<tm-tabbar-item
|
||||
@click="acc = 0"
|
||||
|
@ -7,16 +7,12 @@ type HttpMethod =
|
||||
| 'put'
|
||||
| "DELETE"
|
||||
| 'delete'
|
||||
| "PATCH"
|
||||
| 'patch'
|
||||
| "CONNECT"
|
||||
| 'connect'
|
||||
| "OPTIONS"
|
||||
| 'options'
|
||||
| "HEAD"
|
||||
| 'head'
|
||||
| "TRACE"
|
||||
| 'trace'
|
||||
| "CONNECT"
|
||||
| 'connect';
|
||||
| 'trace';
|
||||
interface RequestOptions {
|
||||
baseUrl?: string;
|
||||
url: string;
|
||||
|
@ -15,7 +15,7 @@
|
||||
</div>
|
||||
<div class="wrap2" @click="goSetUp">
|
||||
<div class="wrap2_1">
|
||||
<image src="../../static/zu609@3x (1).png" alt=""/>
|
||||
<image src="../../static/zu609@3x.png" alt=""/>
|
||||
</div>
|
||||
<div class="wrap2_2">设置</div>
|
||||
</div>
|
||||
@ -44,8 +44,8 @@
|
||||
<div class="wrap1_2_2">预约日期:2023.12.30</div>
|
||||
<div class="wrap1_2_2">预约类型:1</div>
|
||||
</div>
|
||||
<div class="wrap1_3">
|
||||
<image src="../../static/zu762@3x (1).png" alt=""/>
|
||||
<div class="wrap1_3" @click="goViewVenues">
|
||||
<image src="../../static/zu762@3x.png" alt=""/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap1">
|
||||
@ -57,7 +57,7 @@
|
||||
<div class="wrap1_2_2">预约类型:1</div>
|
||||
</div>
|
||||
<div class="wrap1_3" @click="goViewVenues">
|
||||
<image src="../../static/zu762@3x (1).png" alt=""/>
|
||||
<image src="../../static/zu762@3x.png" alt=""/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -81,7 +81,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<tm-button @click="reservation" color="#000000" :width="436" :height="60" :round="25">预约</tm-button>
|
||||
<select-day :show.sync="show"></select-day>
|
||||
<select-day v-model:show="show"></select-day>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@ -160,7 +160,8 @@ const reservation = () => {
|
||||
}
|
||||
}
|
||||
const showHandle = () => {
|
||||
show.value = false
|
||||
show.value = true
|
||||
console.log(show.value,'show.value')
|
||||
}
|
||||
</script>
|
||||
|
||||
|
@ -1,22 +1,18 @@
|
||||
<template>
|
||||
<div>
|
||||
<tm-drawer placement="bottom" okText='确认' v-model:show="show" @close="close">
|
||||
<tm-drawer placement="bottom" okText='确认' :show="show" @close="close">
|
||||
</tm-drawer>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { defineProps, onMounted, defineEmits, watch } from 'vue'
|
||||
import { defineProps, defineEmits } from 'vue'
|
||||
const props = defineProps({
|
||||
show: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
}
|
||||
})
|
||||
|
||||
const emits = defineEmits(["update:show"]);
|
||||
|
||||
|
||||
const close = () => {
|
||||
emits("update:show", false);
|
||||
}
|
||||
|
@ -2,11 +2,11 @@
|
||||
<div class="large-container">
|
||||
<div class="content1">
|
||||
<div class="wrap1" @click="dialog=true">
|
||||
<image src="../../static/zu1041@3x (1).png"></image>
|
||||
<image src="../../static/zu1041@3x.png"></image>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content2">
|
||||
<div class="grid-cell red">
|
||||
<div class="grid-cell red" @click="showWin=true">
|
||||
<image src="../../static/zu1067@3x.png"></image>
|
||||
</div>
|
||||
<div class="grid-cell black"> <image src="../../static/zu1063@3x.png"></image></div>
|
||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
Loading…
Reference in New Issue
Block a user