低代码平台完成

This commit is contained in:
aixianling
2022-06-22 16:55:31 +08:00
parent 6a8fa6135a
commit 9a2fac9e6f
8 changed files with 402 additions and 12 deletions

36
tpl/AppEntry.vue Normal file
View File

@@ -0,0 +1,36 @@
<template>
<section class="@appName">
<component :is="currentPage" v-bind="$props"/>
</section>
</template>
<script>
import List from "./list";
import Add from "./add";
export default {
name: "@appName",
components: {Add, List},
label: "@name",
props: {
instance: Function,
dict: Object,
permissions: Function
},
computed: {
currentPage() {
let {hash} = this.$route
return hash == "#add" ? Add : List
}
},
created() {
this.dict.load(@dicts)
}
}
</script>
<style lang="scss" scoped>
.@appName {
height: 100%;
}
</style>

77
tpl/add.vue Normal file
View File

@@ -0,0 +1,77 @@
<template>
<section class="add">
<ai-detail>
<ai-title slot="title" :title="pageTitle"/>
<template #content>
<el-form ref="AddForm" :model="form" size="small" label-width="120px" :rules="rules">
@content
</el-form>
</template>
<template #footer>
<el-button @click="back">取消</el-button>
<el-button type="primary" @click="submit">提交</el-button>
</template>
</ai-detail>
</section>
</template>
<script>
export default {
name: "add",
props: {
instance: Function,
dict: Object,
permissions: Function
},
computed: {
isEdit: v => !!v.$route.query.id,
pageTitle: v => v.isEdit ? "编辑@name" : "新增@name"
},
data() {
return {
form: {},
rules: {
@rules
},
}
},
methods: {
getDetail() {
let {id} = this.$route.query
id && this.instance.post("/node/@rightCode/detail", null, {
params: {id}
}).then(res => {
if (res?.data) {
this.form = res.data
}
})
},
back() {
this.$router.push({})
},
submit() {
this.$refs.AddForm.validate(v => {
if (v) {
this.instance.post("/node/@rightCode/addOrUpdate", this.form).then(res => {
if (res?.code == 0) {
this.$message.success("提交成功!")
this.back()
}
})
}
})
},
},
created() {
this.getDetail()
}
}
</script>
<style lang="scss" scoped>
.add {
.half {
width: 50%
}
}
</style>

82
tpl/list.vue Normal file
View File

@@ -0,0 +1,82 @@
<template>
<section class="list">
<ai-list>
<ai-title slot="title" title="@name" isShowBottomBorder/>
<template #content>
<ai-search-bar>
<template #left>
@searchProps
</template>
<template #right>
<el-input size="small" placeholder="搜索" v-model="search.name" clearable
@change="page.current=1,getTableData()"/>
</template>
</ai-search-bar>
@btns
<ai-table :tableData="tableData" :total="page.total" :current.sync="page.current" :size.sync="page.size"
@getList="getTableData" :col-configs="colConfigs" :dict="dict">
<el-table-column slot="options" label="操作" fixed="right" align="center" width="300">
<template slot-scope="{row}">
@tableBtns
</template>
</el-table-column>
</ai-table>
</template>
</ai-list>
</section>
</template>
<script>
export default {
name: "list",
props: {
instance: Function,
dict: Object,
permissions: Function
},
data() {
return {
search: {name: ""},
page: {current: 1, size: 10, total: 0},
tableData: [],
colConfigs: [@listProps],
}
},
methods: {
getTableData() {
this.instance.post("/node/@rightCode/list", null, {
params: {...this.page, ...this.search}
}).then(res => {
if (res?.data) {
this.tableData = res.data.records
this.page.total = res.data.total
}
})
},
handleAdd(id) {
this.$router.push({hash: "#add", query: {id}})
},
handleDelete(ids) {
this.$confirm("是否要删除?").then(() => {
this.instance.post("/node/@rightCode/delete", null, {
params: {ids}
}).then(res => {
if (res?.code == 0) {
this.$message.success("删除成功")
this.getTableData()
}
})
}).catch(() => 0)
}
},
created() {
this.getTableData()
}
}
</script>
<style lang="scss" scoped>
.list {
height: 100%;
}
</style>