新增请求配置,对接登录接口

This commit is contained in:
gyq
2024-02-26 11:46:21 +08:00
parent 5298ff2569
commit 9744a968bb
13 changed files with 457 additions and 261 deletions

View 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>