Browse Source

table模板修复

main
pixel 4 years ago
parent
commit
ef653431d0
  1. 10
      server/resource/template/fe/table.vue.tpl

10
server/resource/template/fe/table.vue.tpl

@ -61,10 +61,10 @@
<script> <script>
import { import {
create{{.StructName}}
delete{{.StructName}}
update{{.StructName}}
find{{.StructName}}
create{{.StructName}},
delete{{.StructName}},
update{{.StructName}},
find{{.StructName}},
get{{.StructName}}List get{{.StructName}}List
} from "@/api/{{.StructName}}"; // 此处请自行替换地址 } from "@/api/{{.StructName}}"; // 此处请自行替换地址
import { formatTimeToStr } from "@/utils/data"; import { formatTimeToStr } from "@/utils/data";
@ -96,7 +96,7 @@ export default {
}, },
methods: { methods: {
async update{{.StructName}}(row) { async update{{.StructName}}(row) {
const res = await get{{.StructName}}({ ID: row.ID });
const res = await find{{.StructName}}({ ID: row.ID });
this.type = "update"; this.type = "update";
if (res.code == 0) { if (res.code == 0) {
this.form = res.data.re{{.Abbreviation}}; this.form = res.data.re{{.Abbreviation}};

Loading…
Cancel
Save