39 lines
526 B
Vue
39 lines
526 B
Vue
|
|
<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>
|