flat: 暂存

This commit is contained in:
Apcallover
2024-04-25 17:01:14 +08:00
parent 90258f3179
commit c3cd8d69b0
5 changed files with 329 additions and 225 deletions

View File

@@ -0,0 +1,38 @@
<template>
<div>
<basic-container>
12312
</basic-container>
<basic-container>
<avue-crud
:option="option"
:table-loading="loading"
:data="data"
ref="crud"
v-model="form"
></avue-crud>
</basic-container>
</div>
</template>
<script>
export default {
name: 'supplyDemand',
data() {
return {
loading: false,
data: [],
form: {},
}
},
computed: {
option() {
return {}
}
}
}
</script>
<style>
</style>