Files
tms-erp-web/src/views/util/crud-form.vue
b2894lxlx 433c611195 1、完善发货模板
2、完善运输计划
3、完善运单管理
2026-08-05 15:52:24 +08:00

53 lines
991 B
Vue

<template>
<basic-container>
<h3>点击新增或编辑跳转到新的页面</h3>
<avue-crud :option="option" :data="data">
<template #menu-left>
<el-button type="primary" @click="handleForm()" icon="el-icon-plus">add</el-button>
</template>
<template #menu="{ row }">
<el-link type="primary" @click="handleForm(row.id)"
>edit
</el-link>
</template>
</avue-crud>
</basic-container>
</template>
<script>
export default {
data() {
return {
option: {
addBtn: false,
editBtn: false,
column: [
{
label: '姓名',
prop: 'name',
},
],
},
data: [
{
id: 1,
name: 'small',
},
],
};
},
methods: {
handleForm(id) {
this.$router.push({
path: '/form-detail/index',
query: {
id: id,
},
});
},
},
};
</script>
<style></style>