jiangchengfeiyi-Web/src/views/CostumeAppointments/ReservationInstructions.vue
2024-12-19 18:57:12 +08:00

36 lines
750 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div>
<span style="float: left;">预约须知</span>
<el-input
v-model="textarea"
style="width: 500px; float: left;"
:rows="2"
type="textarea"
autosize
placeholder="预约须知"
/>
</div>
<button @click="dy" style="display: inline-block">打印</button>
<el-button type="primary" @click="onSubmit" style="margin-left: 10px">提交</el-button>
<el-button type="primary" @click="resetForm" style="margin-left: 10px">重置</el-button>
</template>
<script lang="ts" setup>
import { ref } from 'vue'
const textarea = ref('')
const dy =()=>{
console.log(textarea.value)
}
//提交
const onSubmit=()=>{
}
//重置
const resetForm=()=>{
}
</script>
<style>
</style>