新增请求配置,对接登录接口
This commit is contained in:
13
src/components/takeFoodCode.vue
Normal file
13
src/components/takeFoodCode.vue
Normal file
@@ -0,0 +1,13 @@
|
||||
<!-- 取餐号组件 -->
|
||||
<template>
|
||||
<el-dialog title="修改取餐号" v-model="dialogVisible">
|
||||
<el-input v-model="number" placeholder="请输入取餐号"></el-input>
|
||||
</el-dialog>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref } from 'vue';
|
||||
|
||||
const dialogVisible = ref(false)
|
||||
const number = ref('')
|
||||
</script>
|
||||
Reference in New Issue
Block a user