| | |
| | | <template> |
| | | <el-dialog v-model="visible" title="收款/退款" width="90%" append-to-body> |
| | | <FormDialog v-model="visible" title="收款/退款" width="90%" @confirm="submit" @cancel="visible=false"> |
| | | <div class="section"> |
| | | <div class="section-title descriptions">基础资料</div> |
| | | <el-form :model="form" label-width="100px"> |
| | |
| | | <el-button type="primary" @click="submit">确认</el-button> |
| | | <el-button @click="visible=false">取消</el-button> |
| | | </template> |
| | | </el-dialog> |
| | | </FormDialog> |
| | | </template> |
| | | |
| | | <script setup> |
| | | import { ref } from 'vue'; |
| | | import { getToken } from '@/utils/auth'; |
| | | import FormDialog from "@/components/Dialog/FormDialog.vue"; |
| | | |
| | | const visible = ref(false); |
| | | const form = ref({ |