Browse Source

Merge pull request #535 from flipped-aurora/master

前端模板eslit修改
main
奇淼(piexlmax 3 years ago
committed by GitHub
parent
commit
60841b3089
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 37
      server/resource/template/web/api.js.tpl
  2. 109
      server/resource/template/web/form.vue.tpl
  3. 206
      server/resource/template/web/table.vue.tpl

37
server/resource/template/web/api.js.tpl

@ -10,12 +10,11 @@ import service from '@/utils/request'
// @Router /{{.Abbreviation}}/create{{.StructName}} [post] // @Router /{{.Abbreviation}}/create{{.StructName}} [post]
export const create{{.StructName}} = (data) => { export const create{{.StructName}} = (data) => {
return service({ return service({
url: "/{{.Abbreviation}}/create{{.StructName}}",
url: '/{{.Abbreviation}}/create{{.StructName}}',
method: 'post', method: 'post',
data data
}) })
}
}
// @Tags {{.StructName}} // @Tags {{.StructName}}
// @Summary 删除{{.StructName}} // @Summary 删除{{.StructName}}
@ -25,13 +24,13 @@ export const create{{.StructName}} = (data) => {
// @Param data body model.{{.StructName}} true "删除{{.StructName}}" // @Param data body model.{{.StructName}} true "删除{{.StructName}}"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" // @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}"
// @Router /{{.Abbreviation}}/delete{{.StructName}} [delete] // @Router /{{.Abbreviation}}/delete{{.StructName}} [delete]
export const delete{{.StructName}} = (data) => {
export const delete{{.StructName}} = (data) => {
return service({ return service({
url: "/{{.Abbreviation}}/delete{{.StructName}}",
url: '/{{.Abbreviation}}/delete{{.StructName}}',
method: 'delete', method: 'delete',
data data
}) })
}
}
// @Tags {{.StructName}} // @Tags {{.StructName}}
// @Summary 删除{{.StructName}} // @Summary 删除{{.StructName}}
@ -41,13 +40,13 @@ export const create{{.StructName}} = (data) => {
// @Param data body request.IdsReq true "批量删除{{.StructName}}" // @Param data body request.IdsReq true "批量删除{{.StructName}}"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" // @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}"
// @Router /{{.Abbreviation}}/delete{{.StructName}} [delete] // @Router /{{.Abbreviation}}/delete{{.StructName}} [delete]
export const delete{{.StructName}}ByIds = (data) => {
export const delete{{.StructName}}ByIds = (data) => {
return service({ return service({
url: "/{{.Abbreviation}}/delete{{.StructName}}ByIds",
url: '/{{.Abbreviation}}/delete{{.StructName}}ByIds',
method: 'delete', method: 'delete',
data data
}) })
}
}
// @Tags {{.StructName}} // @Tags {{.StructName}}
// @Summary 更新{{.StructName}} // @Summary 更新{{.StructName}}
@ -57,14 +56,13 @@ export const create{{.StructName}} = (data) => {
// @Param data body model.{{.StructName}} true "更新{{.StructName}}" // @Param data body model.{{.StructName}} true "更新{{.StructName}}"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}" // @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}"
// @Router /{{.Abbreviation}}/update{{.StructName}} [put] // @Router /{{.Abbreviation}}/update{{.StructName}} [put]
export const update{{.StructName}} = (data) => {
export const update{{.StructName}} = (data) => {
return service({ return service({
url: "/{{.Abbreviation}}/update{{.StructName}}",
url: '/{{.Abbreviation}}/update{{.StructName}}',
method: 'put', method: 'put',
data data
}) })
}
}
// @Tags {{.StructName}} // @Tags {{.StructName}}
// @Summary 用id查询{{.StructName}} // @Summary 用id查询{{.StructName}}
@ -74,14 +72,13 @@ export const create{{.StructName}} = (data) => {
// @Param data body model.{{.StructName}} true "用id查询{{.StructName}}" // @Param data body model.{{.StructName}} true "用id查询{{.StructName}}"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}" // @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}"
// @Router /{{.Abbreviation}}/find{{.StructName}} [get] // @Router /{{.Abbreviation}}/find{{.StructName}} [get]
export const find{{.StructName}} = (params) => {
export const find{{.StructName}} = (params) => {
return service({ return service({
url: "/{{.Abbreviation}}/find{{.StructName}}",
url: '/{{.Abbreviation}}/find{{.StructName}}',
method: 'get', method: 'get',
params params
}) })
}
}
// @Tags {{.StructName}} // @Tags {{.StructName}}
// @Summary 分页获取{{.StructName}}列表 // @Summary 分页获取{{.StructName}}列表
@ -91,10 +88,10 @@ export const create{{.StructName}} = (data) => {
// @Param data body request.PageInfo true "分页获取{{.StructName}}列表" // @Param data body request.PageInfo true "分页获取{{.StructName}}列表"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}" // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
// @Router /{{.Abbreviation}}/get{{.StructName}}List [get] // @Router /{{.Abbreviation}}/get{{.StructName}}List [get]
export const get{{.StructName}}List = (params) => {
export const get{{.StructName}}List = (params) => {
return service({ return service({
url: "/{{.Abbreviation}}/get{{.StructName}}List",
url: '/{{.Abbreviation}}/get{{.StructName}}List',
method: 'get', method: 'get',
params params
}) })
}
}

109
server/resource/template/web/form.vue.tpl

@ -1,35 +1,34 @@
<template> <template>
<div>
<div>
<el-form :model="formData" label-position="right" label-width="80px"> <el-form :model="formData" label-position="right" label-width="80px">
{{- range .Fields}} {{- range .Fields}}
<el-form-item label="{{.FieldDesc}}:"> <el-form-item label="{{.FieldDesc}}:">
{{- if eq .FieldType "bool" }}
{{ if eq .FieldType "bool" -}}
<el-switch active-color="#13ce66" inactive-color="#ff4949" active-text="是" inactive-text="否" v-model="formData.{{.FieldJson}}" clearable ></el-switch> <el-switch active-color="#13ce66" inactive-color="#ff4949" active-text="是" inactive-text="否" v-model="formData.{{.FieldJson}}" clearable ></el-switch>
{{ end -}} {{ end -}}
{{- if eq .FieldType "string" }}
<el-input v-model="formData.{{.FieldJson}}" clearable placeholder="请输入" ></el-input>
{{ if eq .FieldType "string" -}}
<el-input v-model="formData.{{.FieldJson}}" clearable placeholder="请输入" />
{{ end -}} {{ end -}}
{{- if eq .FieldType "int" }}
{{- if .DictType}}
{{ if eq .FieldType "int" -}}
{{ if .DictType -}}
<el-select v-model="formData.{{ .FieldJson }}" placeholder="请选择" clearable> <el-select v-model="formData.{{ .FieldJson }}" placeholder="请选择" clearable>
<el-option v-for="(item,key) in {{ .DictType }}Options" :key="key" :label="item.label" :value="item.value"></el-option> <el-option v-for="(item,key) in {{ .DictType }}Options" :key="key" :label="item.label" :value="item.value"></el-option>
</el-select> </el-select>
{{ else -}} {{ else -}}
<el-input v-model.number="formData.{{ .FieldJson }}" clearable placeholder="请输入"></el-input>
<el-input v-model.number="formData.{{ .FieldJson }}" clearable placeholder="请输入"/>
{{ end -}} {{ end -}}
{{ end -}} {{ end -}}
{{- if eq .FieldType "time.Time" }}
{{ if eq .FieldType "time.Time" }}
<el-date-picker type="date" placeholder="选择日期" v-model="formData.{{ .FieldJson }}" clearable></el-date-picker> <el-date-picker type="date" placeholder="选择日期" v-model="formData.{{ .FieldJson }}" clearable></el-date-picker>
{{ end -}} {{ end -}}
{{- if eq .FieldType "float64" }}
{{ if eq .FieldType "float64" }}
<el-input-number v-model="formData.{{ .FieldJson }}" :precision="2" clearable></el-input-number> <el-input-number v-model="formData.{{ .FieldJson }}" :precision="2" clearable></el-input-number>
{{ end -}} {{ end -}}
</el-form-item> </el-form-item>
{{ end -}} {{ end -}}
<el-form-item> <el-form-item>
<el-button @click="save" type="primary">保存</el-button>
<el-button @click="back" type="primary">返回</el-button>
<el-button type="primary" @click="save">保存</el-button>
<el-button type="primary" @click="back">返回</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
</div> </div>
@ -40,85 +39,83 @@ import {
create{{.StructName}}, create{{.StructName}},
update{{.StructName}}, update{{.StructName}},
find{{.StructName}} find{{.StructName}}
} from "@/api/{{.PackageName}}"; // 此处请自行替换地址
import infoList from "@/mixins/infoList";
} from '@/api/{{.PackageName}}' // 此处请自行替换地址
import infoList from '@/mixins/infoList'
export default { export default {
name: "{{.StructName}}",
name: '{{.StructName}}',
mixins: [infoList], mixins: [infoList],
data() { data() {
return { return {
type: "",
{{- range .Fields}}
type: '',
{{range .Fields}}
{{- if .DictType }} {{- if .DictType }}
{{ .DictType }}Options:[],
{{ .DictType }}Options: [],
{{ end -}} {{ end -}}
{{end -}} {{end -}}
formData: { formData: {
{{range .Fields}} {{range .Fields}}
{{- if eq .FieldType "bool" -}} {{- if eq .FieldType "bool" -}}
{{.FieldJson}}:false,
{{.FieldJson}}: false,
{{ end -}} {{ end -}}
{{- if eq .FieldType "string" -}} {{- if eq .FieldType "string" -}}
{{.FieldJson}}:"",
{{.FieldJson}}: '',
{{ end -}} {{ end -}}
{{- if eq .FieldType "int" -}} {{- if eq .FieldType "int" -}}
{{.FieldJson}}:0,
{{.FieldJson}}: 0,
{{ end -}} {{ end -}}
{{- if eq .FieldType "time.Time" -}} {{- if eq .FieldType "time.Time" -}}
{{.FieldJson}}:new Date(),
{{.FieldJson}}: new Date(),
{{ end -}} {{ end -}}
{{- if eq .FieldType "float64" -}} {{- if eq .FieldType "float64" -}}
{{.FieldJson}}:0,
{{.FieldJson}}: 0,
{{ end -}} {{ end -}}
{{ end }} {{ end }}
} }
};
}
},
async created() {
// 建议通过url传参获取目标数据ID 调用 find方法进行查询数据操作 从而决定本页面是create还是update 以下为id作为url参数示例
if (this.$route.query.id) {
const res = await find{{.StructName}}({ ID: this.$route.query.id })
if (res.code === 0) {
this.formData = res.data.re{{.Abbreviation}}
this.type = 'update'
}
} else {
this.type = 'create'
}
{{ range .Fields -}}
{{- if .DictType }}
await this.getDict("{{.DictType}}")
{{ end -}}
{{- end }}
}, },
methods: { methods: {
async save() { async save() {
let res;
let res
switch (this.type) { switch (this.type) {
case "create":
res = await create{{.StructName}}(this.formData);
break;
case "update":
res = await update{{.StructName}}(this.formData);
break;
case 'create':
res = await create{{.StructName}}(this.formData)
break
case 'update':
res = await update{{.StructName}}(this.formData)
break
default: default:
res = await create{{.StructName}}(this.formData);
break;
res = await create{{.StructName}}(this.formData)
break
} }
if (res.code == 0) {
if (res.code === 0) {
this.$message({ this.$message({
type:"success",
message:"创建/更改成功"
type: 'success',
message: '创建/更改成功'
}) })
} }
}, },
back(){
back() {
this.$router.go(-1) this.$router.go(-1)
} }
},
async created() {
// 建议通过url传参获取目标数据ID 调用 find方法进行查询数据操作 从而决定本页面是create还是update 以下为id作为url参数示例
if(this.$route.query.id){
const res = await find{{.StructName}}({ ID: this.$route.query.id })
if(res.code == 0){
this.formData = res.data.re{{.Abbreviation}}
this.type = "update"
}
}else{
this.type = "create"
} }
{{ range .Fields -}}
{{- if .DictType }}
await this.getDict("{{.DictType}}");
{{ end -}}
{{- end }}
} }
};
</script> </script>
<style> <style>

206
server/resource/template/web/table.vue.tpl

@ -19,40 +19,40 @@
</el-form-item> </el-form-item>
{{- else }} {{- else }}
<el-form-item label="{{.FieldDesc}}"> <el-form-item label="{{.FieldDesc}}">
<el-input placeholder="搜索条件" v-model="searchInfo.{{.FieldJson}}"></el-input>
<el-input placeholder="搜索条件" v-model="searchInfo.{{.FieldJson}}" />
</el-form-item> {{ end }} {{ end }} {{ end }} </el-form-item> {{ end }} {{ end }} {{ end }}
<el-form-item> <el-form-item>
<el-button @click="onSubmit" type="primary">查询</el-button>
<el-button type="primary" @click="onSubmit">查询</el-button>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button @click="openDialog" type="primary">新增{{.Description}}</el-button>
<el-button type="primary" @click="openDialog">新增{{.Description}}</el-button>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-popover placement="top" v-model="deleteVisible" width="160">
<el-popover v-model="deleteVisible" placement="top" width="160">
<p>确定要删除吗?</p> <p>确定要删除吗?</p>
<div style="text-align: right; margin: 0"> <div style="text-align: right; margin: 0">
<el-button @click="deleteVisible = false" size="mini" type="text">取消</el-button>
<el-button @click="onDelete" size="mini" type="primary">确定</el-button>
<el-button size="mini" type="text" @click="deleteVisible = false">取消</el-button>
<el-button size="mini" type="primary" @click="onDelete">确定</el-button>
</div> </div>
<el-button icon="el-icon-delete" size="mini" slot="reference" type="danger">批量删除</el-button>
<el-button slot="reference" icon="el-icon-delete" size="mini" type="danger">批量删除</el-button>
</el-popover> </el-popover>
</el-form-item> </el-form-item>
</el-form> </el-form>
</div> </div>
<el-table <el-table
:data="tableData"
@selection-change="handleSelectionChange"
border
ref="multipleTable" ref="multipleTable"
border
stripe stripe
style="width: 100%" style="width: 100%"
tooltip-effect="dark" tooltip-effect="dark"
:data="tableData"
@selection-change="handleSelectionChange"
> >
<el-table-column type="selection" width="55"></el-table-column>
<el-table-column type="selection" width="55" />
<el-table-column label="日期" width="180"> <el-table-column label="日期" width="180">
<template slot-scope="scope">{{ "{{scope.row.CreatedAt|formatDate}}" }}</template>
<template slot-scope="scope">{{ "{{ scope.row.CreatedAt|formatDate }}" }}</template>
</el-table-column> </el-table-column>
{{range .Fields}}
{{- range .Fields}}
{{- if .DictType}} {{- if .DictType}}
<el-table-column label="{{.FieldDesc}}" prop="{{.FieldJson}}" width="120"> <el-table-column label="{{.FieldDesc}}" prop="{{.FieldJson}}" width="120">
<template slot-scope="scope"> <template slot-scope="scope">
@ -63,17 +63,17 @@
<el-table-column label="{{.FieldDesc}}" prop="{{.FieldJson}}" width="120"> <el-table-column label="{{.FieldDesc}}" prop="{{.FieldJson}}" width="120">
<template slot-scope="scope">{{ "{{scope.row."}}{{.FieldJson}}{{"|formatBoolean}}" }}</template> <template slot-scope="scope">{{ "{{scope.row."}}{{.FieldJson}}{{"|formatBoolean}}" }}</template>
</el-table-column> {{- else }} </el-table-column> {{- else }}
<el-table-column label="{{.FieldDesc}}" prop="{{.FieldJson}}" width="120"></el-table-column> {{ end }}
{{ end }}
<el-table-column label="{{.FieldDesc}}" prop="{{.FieldJson}}" width="120" /> {{ end -}}
{{ end -}}
<el-table-column label="按钮组"> <el-table-column label="按钮组">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button class="table-button" @click="update{{.StructName}}(scope.row)" size="small" type="primary" icon="el-icon-edit">变更</el-button>
<el-button size="small" type="primary" icon="el-icon-edit" class="table-button" @click="update{{.StructName}}(scope.row)">变更</el-button>
<el-button type="danger" icon="el-icon-delete" size="mini" @click="deleteRow(scope.row)">删除</el-button> <el-button type="danger" icon="el-icon-delete" size="mini" @click="deleteRow(scope.row)">删除</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-pagination <el-pagination
layout="total, sizes, prev, pager, next, jumper"
:current-page="page" :current-page="page"
:page-size="pageSize" :page-size="pageSize"
:page-sizes="[10, 30, 50, 100]" :page-sizes="[10, 30, 50, 100]"
@ -81,40 +81,38 @@
:total="total" :total="total"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
@size-change="handleSizeChange" @size-change="handleSizeChange"
layout="total, sizes, prev, pager, next, jumper"
></el-pagination>
/>
<el-dialog :before-close="closeDialog" :visible.sync="dialogFormVisible" title="弹窗操作"> <el-dialog :before-close="closeDialog" :visible.sync="dialogFormVisible" title="弹窗操作">
<el-form :model="formData" label-position="right" label-width="80px"> <el-form :model="formData" label-position="right" label-width="80px">
{{- range .Fields}} {{- range .Fields}}
<el-form-item label="{{.FieldDesc}}:"> <el-form-item label="{{.FieldDesc}}:">
{{- if eq .FieldType "bool" }}
{{ if eq .FieldType "bool" }}
<el-switch active-color="#13ce66" inactive-color="#ff4949" active-text="是" inactive-text="否" v-model="formData.{{.FieldJson}}" clearable ></el-switch> <el-switch active-color="#13ce66" inactive-color="#ff4949" active-text="是" inactive-text="否" v-model="formData.{{.FieldJson}}" clearable ></el-switch>
{{ end -}} {{ end -}}
{{- if eq .FieldType "string" }}
<el-input v-model="formData.{{.FieldJson}}" clearable placeholder="请输入" ></el-input>
{{ if eq .FieldType "string" }}
<el-input v-model="formData.{{.FieldJson}}" clearable placeholder="请输入" />
{{ end -}} {{ end -}}
{{- if eq .FieldType "int" }}
{{ if eq .FieldType "int" }}
{{- if .DictType}} {{- if .DictType}}
<el-select v-model="formData.{{ .FieldJson }}" placeholder="请选择" clearable> <el-select v-model="formData.{{ .FieldJson }}" placeholder="请选择" clearable>
<el-option v-for="(item,key) in {{ .DictType }}Options" :key="key" :label="item.label" :value="item.value"></el-option>
<el-option v-for="(item,key) in {{ .DictType }}Options" :key="key" :label="item.label" :value="item.value" />
</el-select> </el-select>
{{ else -}}
<el-input v-model.number="formData.{{ .FieldJson }}" clearable placeholder="请输入"></el-input>
{{ else }}
<el-input v-model.number="formData.{{ .FieldJson }}" clearable placeholder="请输入" />
{{ end -}} {{ end -}}
{{ end -}} {{ end -}}
{{- if eq .FieldType "time.Time" }}
<el-date-picker type="date" placeholder="选择日期" v-model="formData.{{ .FieldJson }}" clearable></el-date-picker>
{{ if eq .FieldType "time.Time" }}
<el-date-picker type="date" placeholder="选择日期" v-model="formData.{{ .FieldJson }}" clearable />
{{ end -}} {{ end -}}
{{- if eq .FieldType "float64" }} {{- if eq .FieldType "float64" }}
<el-input-number v-model="formData.{{ .FieldJson }}" :precision="2" clearable></el-input-number>
<el-input-number v-model="formData.{{ .FieldJson }}" :precision="2" clearable />
{{ end -}} {{ end -}}
</el-form-item> </el-form-item>
{{ end -}}
{{- end }}
</el-form> </el-form>
<div class="dialog-footer" slot="footer">
<div slot="footer" class="dialog-footer">
<el-button @click="closeDialog">取 消</el-button> <el-button @click="closeDialog">取 消</el-button>
<el-button @click="enterDialog" type="primary">确 定</el-button>
<el-button type="primary" @click="enterDialog">确 定</el-button>
</div> </div>
</el-dialog> </el-dialog>
</div> </div>
@ -128,71 +126,77 @@ import {
update{{.StructName}}, update{{.StructName}},
find{{.StructName}}, find{{.StructName}},
get{{.StructName}}List get{{.StructName}}List
} from "@/api/{{.PackageName}}"; // 此处请自行替换地址
import { formatTimeToStr } from "@/utils/date";
import infoList from "@/mixins/infoList";
} from '@/api/{{.PackageName}}' // 此处请自行替换地址
import { formatTimeToStr } from '@/utils/date'
import infoList from '@/mixins/infoList'
export default { export default {
name: "{{.StructName}}",
name: '{{.StructName}}',
mixins: [infoList], mixins: [infoList],
data() { data() {
return { return {
listApi: get{{ .StructName }}List, listApi: get{{ .StructName }}List,
dialogFormVisible: false, dialogFormVisible: false,
type: "",
type: '',
deleteVisible: false, deleteVisible: false,
multipleSelection: [], multipleSelection: [],
{{- range .Fields}}
{{ range .Fields}}
{{- if .DictType }} {{- if .DictType }}
{{ .DictType }}Options:[],
{{ .DictType }}Options: [],
{{ end -}} {{ end -}}
{{end -}}
{{ end }}
formData: { formData: {
{{range .Fields}} {{range .Fields}}
{{- if eq .FieldType "bool" -}} {{- if eq .FieldType "bool" -}}
{{.FieldJson}}:false,
{{.FieldJson}}: false,
{{ end -}} {{ end -}}
{{- if eq .FieldType "string" -}} {{- if eq .FieldType "string" -}}
{{.FieldJson}}:"",
{{.FieldJson}}: '',
{{ end -}} {{ end -}}
{{- if eq .FieldType "int" -}} {{- if eq .FieldType "int" -}}
{{.FieldJson}}:0,
{{.FieldJson}}: 0,
{{ end -}} {{ end -}}
{{- if eq .FieldType "time.Time" -}} {{- if eq .FieldType "time.Time" -}}
{{.FieldJson}}:new Date(),
{{.FieldJson}}: new Date(),
{{ end -}} {{ end -}}
{{- if eq .FieldType "float64" -}} {{- if eq .FieldType "float64" -}}
{{.FieldJson}}:0,
{{.FieldJson}}: 0,
{{ end -}} {{ end -}}
{{ end }} {{ end }}
} }
};
}
}, },
filters: { filters: {
formatDate: function(time) { formatDate: function(time) {
if (time != null && time != "") {
if (time !== null && time !== '') {
var date = new Date(time); var date = new Date(time);
return formatTimeToStr(date, "yyyy-MM-dd hh:mm:ss");
return formatTimeToStr(date, 'yyyy-MM-dd hh:mm:ss');
} else { } else {
return "";
return ''
} }
}, },
formatBoolean: function(bool) { formatBoolean: function(bool) {
if (bool != null) { if (bool != null) {
return bool ? "是" :"否";
return bool ? '是' : '否'
} else { } else {
return "";
return ''
} }
} }
}, },
async created() {
await this.getTableData()
{{ range .Fields -}}
{{- if .DictType }}
await this.getDict('{{.DictType}}')
{{ end -}}
{{- end }}
},
methods: { methods: {
//条件搜索前端看此方法
// 条件搜索前端看此方法
onSubmit() { onSubmit() {
this.page = 1 this.page = 1
this.pageSize = 10 this.pageSize = 10
{{- range .Fields}} {{- if eq .FieldType "bool" }} {{- range .Fields}} {{- if eq .FieldType "bool" }}
if (this.searchInfo.{{.FieldJson}}==""){
if (this.searchInfo.{{.FieldJson}} === ""){
this.searchInfo.{{.FieldJson}}=null this.searchInfo.{{.FieldJson}}=null
} {{ end }} {{ end }} } {{ end }} {{ end }}
this.getTableData() this.getTableData()
@ -200,18 +204,18 @@ export default {
handleSelectionChange(val) { handleSelectionChange(val) {
this.multipleSelection = val this.multipleSelection = val
}, },
deleteRow(row){
deleteRow(row) {
this.$confirm('确定要删除吗?', '提示', { this.$confirm('确定要删除吗?', '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
cancelButtonText: '取消', cancelButtonText: '取消',
type: 'warning' type: 'warning'
}).then(() => { }).then(() => {
this.delete{{.StructName}}(row);
});
this.delete{{.StructName}}(row)
})
}, },
async onDelete() { async onDelete() {
const ids = [] const ids = []
if(this.multipleSelection.length == 0){
if (this.multipleSelection.length === 0) {
this.$message({ this.$message({
type: 'warning', type: 'warning',
message: '请选择要删除的数据' message: '请选择要删除的数据'
@ -223,97 +227,89 @@ export default {
ids.push(item.ID) ids.push(item.ID)
}) })
const res = await delete{{.StructName}}ByIds({ ids }) const res = await delete{{.StructName}}ByIds({ ids })
if (res.code == 0) {
if (res.code === 0) {
this.$message({ this.$message({
type: 'success', type: 'success',
message: '删除成功' message: '删除成功'
}) })
if (this.tableData.length == ids.length && this.page > 1) {
this.page--;
if (this.tableData.length === ids.length && this.page > 1) {
this.page--
} }
this.deleteVisible = false this.deleteVisible = false
this.getTableData() this.getTableData()
} }
}, },
async update{{.StructName}}(row) { async update{{.StructName}}(row) {
const res = await find{{.StructName}}({ ID: row.ID });
this.type = "update";
if (res.code == 0) {
this.formData = res.data.re{{.Abbreviation}};
this.dialogFormVisible = true;
const res = await find{{.StructName}}({ ID: row.ID })
this.type = 'update'
if (res.code === 0) {
this.formData = res.data.re{{.Abbreviation}}
this.dialogFormVisible = true
} }
}, },
closeDialog() { closeDialog() {
this.dialogFormVisible = false;
this.dialogFormVisible = false
this.formData = { this.formData = {
{{range .Fields}} {{range .Fields}}
{{- if eq .FieldType "bool" -}} {{- if eq .FieldType "bool" -}}
{{.FieldJson}}:false,
{{.FieldJson}}: false,
{{ end -}} {{ end -}}
{{- if eq .FieldType "string" -}} {{- if eq .FieldType "string" -}}
{{.FieldJson}}:"",
{{.FieldJson}}: '',
{{ end -}} {{ end -}}
{{- if eq .FieldType "int" -}} {{- if eq .FieldType "int" -}}
{{.FieldJson}}:0,
{{.FieldJson}}: 0,
{{ end -}} {{ end -}}
{{- if eq .FieldType "time.Time" -}} {{- if eq .FieldType "time.Time" -}}
{{.FieldJson}}:new Date(),
{{.FieldJson}}: new Date(),
{{ end -}} {{ end -}}
{{- if eq .FieldType "float64" -}} {{- if eq .FieldType "float64" -}}
{{.FieldJson}}:0,
{{.FieldJson}}: 0,
{{ end -}} {{ end -}}
{{ end }} {{ end }}
};
}
}, },
async delete{{.StructName}}(row) { async delete{{.StructName}}(row) {
const res = await delete{{.StructName}}({ ID: row.ID });
if (res.code == 0) {
const res = await delete{{.StructName}}({ ID: row.ID })
if (res.code === 0) {
this.$message({ this.$message({
type: "success",
message: "删除成功"
});
if (this.tableData.length == 1 && this.page > 1 ) {
this.page--;
type: 'success',
message: '删除成功'
})
if (this.tableData.length === 1 && this.page > 1 ) {
this.page--
} }
this.getTableData();
this.getTableData()
} }
}, },
async enterDialog() { async enterDialog() {
let res;
let res
switch (this.type) { switch (this.type) {
case "create": case "create":
res = await create{{.StructName}}(this.formData);
break;
res = await create{{.StructName}}(this.formData)
break
case "update": case "update":
res = await update{{.StructName}}(this.formData);
break;
res = await update{{.StructName}}(this.formData)
break
default: default:
res = await create{{.StructName}}(this.formData);
break;
res = await create{{.StructName}}(this.formData)
break
} }
if (res.code == 0) {
if (res.code === 0) {
this.$message({ this.$message({
type:"success",
message:"创建/更改成功"
type: 'success',
message: '创建/更改成功'
}) })
this.closeDialog();
this.getTableData();
this.closeDialog()
this.getTableData()
} }
}, },
openDialog() { openDialog() {
this.type = "create";
this.dialogFormVisible = true;
this.type = 'create'
this.dialogFormVisible = true
} }
}, },
async created() {
await this.getTableData();
{{ range .Fields -}}
{{- if .DictType }}
await this.getDict("{{.DictType}}");
{{ end -}}
{{- end }}
} }
};
</script> </script>
<style> <style>

Loading…
Cancel
Save