初始化项目

This commit is contained in:
18500206848
2024-02-02 15:04:47 +08:00
parent 12664d0204
commit 7aec486f06
718 changed files with 152280 additions and 1 deletions

View File

@@ -0,0 +1,40 @@
<template>
<basic-container>
<h3>{{$route.query.id?'编辑':'新增'}}</h3>
<avue-form :option="option"
v-model="form">
<template slot="menuForm">
<el-button icon="el-icon-back"
@click="handleBack()"> </el-button>
</template>
</avue-form>
</basic-container>
</template>
<script>
export default {
data() {
return {
form: {},
option: {
labelWidth: 110,
column: [
{
label: "姓名",
prop: "name"
}
]
}
};
},
methods: {
handleBack() {
this.$router.$avueRouter.closeTag();
this.$router.back();
}
}
};
</script>
<style>
</style>