table.vue.tpl 10.3 KB
Newer Older
1 2 3 4
<template>
  <div>
    <div class="search-term">
      <el-form :inline="true" :model="searchInfo" class="demo-form-inline">
5
           {{- range .Fields}}  {{- if .FieldSearchType}} {{- if eq .FieldType "bool" }}
6
            <el-form-item label="{{.FieldDesc}}" prop="{{.FieldJson}}">
Mr.奇淼('s avatar
Mr.奇淼( 已提交
7
            <el-select v-model="searchInfo.{{.FieldJson}}" clear placeholder="请选择">
8 9 10 11 12 13 14 15 16 17 18 19 20
                <el-option
                    key="true"
                    label="是"
                    value="true">
                </el-option>
                <el-option
                    key="false"
                    label="否"
                    value="false">
                </el-option>
            </el-select>
            </el-form-item>
                  {{- else }}
21 22
        <el-form-item label="{{.FieldDesc}}">
          <el-input placeholder="搜索条件" v-model="searchInfo.{{.FieldJson}}"></el-input>
23
        </el-form-item> {{ end }} {{ end }}  {{ end }}
24 25 26
        <el-form-item>
          <el-button @click="onSubmit" type="primary">查询</el-button>
        </el-form-item>
27
        <el-form-item>
Mr.奇淼('s avatar
Mr.奇淼( 已提交
28
          <el-button @click="openDialog" type="primary">新增{{.Description}}</el-button>
29
        </el-form-item>
30 31 32 33 34 35 36 37 38 39
        <el-form-item>
          <el-popover placement="top" v-model="deleteVisible" width="160">
            <p>确定要删除吗?</p>
              <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>
              </div>
            <el-button icon="el-icon-delete" size="mini" slot="reference" type="danger">批量删除</el-button>
          </el-popover>
        </el-form-item>
40 41 42 43
      </el-form>
    </div>
    <el-table
      :data="tableData"
44
      @selection-change="handleSelectionChange"
45 46 47 48 49 50 51 52 53 54
      border
      ref="multipleTable"
      stripe
      style="width: 100%"
      tooltip-effect="dark"
    >
    <el-table-column type="selection" width="55"></el-table-column>
    <el-table-column label="日期" width="180">
         <template slot-scope="scope">{{ "{{scope.row.CreatedAt|formatDate}}" }}</template>
    </el-table-column>
55 56 57 58 59 60 61 62
    {{range .Fields}}
    {{- if .DictType}}
      <el-table-column label="{{.FieldDesc}}" prop="{{.FieldJson}}" width="120">
        <template slot-scope="scope">
          {{"{{"}}filterDict(scope.row.{{.FieldJson}},"{{.DictType}}"){{"}}"}}
        </template>
      </el-table-column>
    {{- else if eq .FieldType "bool" }}
63 64 65 66
    <el-table-column label="{{.FieldDesc}}" prop="{{.FieldJson}}" width="120">
         <template slot-scope="scope">{{ "{{scope.row."}}{{.FieldJson}}{{"|formatBoolean}}" }}</template>
    </el-table-column> {{- else }}
    <el-table-column label="{{.FieldDesc}}" prop="{{.FieldJson}}" width="120"></el-table-column> {{ end }}
67 68 69
    {{ end }}
      <el-table-column label="按钮组">
        <template slot-scope="scope">
Mr.奇淼('s avatar
Mr.奇淼( 已提交
70
          <el-button class="table-button" @click="update{{.StructName}}(scope.row)" size="small" type="primary" icon="el-icon-edit">变更</el-button>
71 72 73 74 75 76
          <el-popover placement="top" width="160" v-model="scope.row.visible">
            <p>确定要删除吗?</p>
            <div style="text-align: right; margin: 0">
              <el-button size="mini" type="text" @click="scope.row.visible = false">取消</el-button>
              <el-button type="primary" size="mini" @click="delete{{.StructName}}(scope.row)">确定</el-button>
            </div>
LoeYueng's avatar
LoeYueng 已提交
77
            <el-button type="danger" icon="el-icon-delete" size="mini" slot="reference">删除</el-button>
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
          </el-popover>
        </template>
      </el-table-column>
    </el-table>

    <el-pagination
      :current-page="page"
      :page-size="pageSize"
      :page-sizes="[10, 30, 50, 100]"
      :style="{float:'right',padding:'20px'}"
      :total="total"
      @current-change="handleCurrentChange"
      @size-change="handleSizeChange"
      layout="total, sizes, prev, pager, next, jumper"
    ></el-pagination>

    <el-dialog :before-close="closeDialog" :visible.sync="dialogFormVisible" title="弹窗操作">
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
      <el-form :model="formData" label-position="right" label-width="80px">
    {{- range .Fields}}
         <el-form-item label="{{.FieldDesc}}:">
      {{- if eq .FieldType "bool" }}
            <el-switch active-color="#13ce66" inactive-color="#ff4949" active-text="是" inactive-text="否" v-model="formData.{{.FieldJson}}" clearable ></el-switch>
      {{ end -}}
      {{- if eq .FieldType "string" }}
            <el-input v-model="formData.{{.FieldJson}}" clearable placeholder="请输入" ></el-input>
      {{ end -}}
      {{- if eq .FieldType "int" }}
      {{- if .DictType}}
             <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-select>
      {{ else -}}
             <el-input v-model.number="formData.{{ .FieldJson }}" clearable placeholder="请输入"></el-input>
      {{ end -}}
      {{ end -}}
      {{- if eq .FieldType "time.Time" }}
              <el-date-picker type="date" placeholder="选择日期" v-model="formData.{{ .FieldJson }}" clearable></el-date-picker>
       {{ end -}}
       {{- if eq .FieldType "float64" }}
              <el-input-number v-model="formData.{{ .FieldJson }}" :precision="2" clearable></el-input-number>
       {{ end -}}
          </el-form-item>
       {{ end -}}
      </el-form>
122 123 124 125 126 127 128 129 130 131
      <div class="dialog-footer" slot="footer">
        <el-button @click="closeDialog">取 消</el-button>
        <el-button @click="enterDialog" type="primary">确 定</el-button>
      </div>
    </el-dialog>
  </div>
</template>

<script>
import {
Mr.奇淼('s avatar
Mr.奇淼( 已提交
132 133
    create{{.StructName}},
    delete{{.StructName}},
134
    delete{{.StructName}}ByIds,
Mr.奇淼('s avatar
Mr.奇淼( 已提交
135 136
    update{{.StructName}},
    find{{.StructName}},
137
    get{{.StructName}}List
138
} from "@/api/{{.PackageName}}";  //  此处请自行替换地址
Mr.奇淼('s avatar
Mr.奇淼( 已提交
139
import { formatTimeToStr } from "@/utils/date";
140
import infoList from "@/mixins/infoList";
141 142 143 144 145
export default {
  name: "{{.StructName}}",
  mixins: [infoList],
  data() {
    return {
146
      listApi: get{{ .StructName }}List,
147 148 149
      dialogFormVisible: false,
      visible: false,
      type: "",
150 151
      deleteVisible: false,
      multipleSelection: [],
152 153
      {{- range .Fields}}
          {{- if .DictType }}
154
      {{ .DictType }}Options:[],
155 156
          {{ end -}}
      {{end -}}
Mr.奇淼('s avatar
Mr.奇淼( 已提交
157
      formData: {
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
            {{range .Fields}}
            {{- if eq .FieldType "bool" -}}
               {{.FieldJson}}:false,
            {{ end -}}
            {{- if eq .FieldType "string" -}}
               {{.FieldJson}}:"",
            {{ end -}}
            {{- if eq .FieldType "int" -}}
               {{.FieldJson}}:0,
            {{ end -}}
            {{- if eq .FieldType "time.Time" -}}
               {{.FieldJson}}:new Date(),
            {{ end -}}
            {{- if eq .FieldType "float64" -}}
               {{.FieldJson}}:0,
            {{ end -}}
            {{ end }}
175 176 177 178 179 180 181 182 183 184 185
      }
    };
  },
  filters: {
    formatDate: function(time) {
      if (time != null && time != "") {
        var date = new Date(time);
        return formatTimeToStr(date, "yyyy-MM-dd hh:mm:ss");
      } else {
        return "";
      }
186 187 188 189 190 191 192
    },
    formatBoolean: function(bool) {
      if (bool != null) {
        return bool ? "" :"";
      } else {
        return "";
      }
193 194 195
    }
  },
  methods: {
196 197 198 199
      //条件搜索前端看此方法
      onSubmit() {
        this.page = 1
        this.pageSize = 10
200 201 202 203
        {{- range .Fields}} {{- if eq .FieldType "bool" }}      
        if (this.searchInfo.{{.FieldJson}}==""){
          this.searchInfo.{{.FieldJson}}=null
        } {{ end }} {{ end }}    
204 205
        this.getTableData()
      },
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
      handleSelectionChange(val) {
        this.multipleSelection = val
      },
      async onDelete() {
        const ids = []
        this.multipleSelection &&
          this.multipleSelection.map(item => {
            ids.push(item.ID)
          })
        const res = await delete{{.StructName}}ByIds({ ids })
        if (res.code == 0) {
          this.$message({
            type: 'success',
            message: '删除成功'
          })
          this.deleteVisible = false
          this.getTableData()
        }
      },
225
    async update{{.StructName}}(row) {
Mr.奇淼('s avatar
Mr.奇淼( 已提交
226
      const res = await find{{.StructName}}({ ID: row.ID });
227 228
      this.type = "update";
      if (res.code == 0) {
Mr.奇淼('s avatar
Mr.奇淼( 已提交
229
        this.formData = res.data.re{{.Abbreviation}};
230 231 232 233 234
        this.dialogFormVisible = true;
      }
    },
    closeDialog() {
      this.dialogFormVisible = false;
Mr.奇淼('s avatar
Mr.奇淼( 已提交
235
      this.formData = {
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
          {{range .Fields}}
          {{- if eq .FieldType "bool" -}}
             {{.FieldJson}}:false,
          {{ end -}}
          {{- if eq .FieldType "string" -}}
             {{.FieldJson}}:"",
          {{ end -}}
          {{- if eq .FieldType "int" -}}
             {{.FieldJson}}:0,
          {{ end -}}
          {{- if eq .FieldType "time.Time" -}}
             {{.FieldJson}}:new Date(),
          {{ end -}}
          {{- if eq .FieldType "float64" -}}
             {{.FieldJson}}:0,
          {{ end -}}
          {{ end }}
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
      };
    },
    async delete{{.StructName}}(row) {
      this.visible = false;
      const res = await delete{{.StructName}}({ ID: row.ID });
      if (res.code == 0) {
        this.$message({
          type: "success",
          message: "删除成功"
        });
        this.getTableData();
      }
    },
    async enterDialog() {
      let res;
      switch (this.type) {
        case "create":
Mr.奇淼('s avatar
Mr.奇淼( 已提交
270
          res = await create{{.StructName}}(this.formData);
271 272
          break;
        case "update":
Mr.奇淼('s avatar
Mr.奇淼( 已提交
273
          res = await update{{.StructName}}(this.formData);
274 275
          break;
        default:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
276
          res = await create{{.StructName}}(this.formData);
277 278 279
          break;
      }
      if (res.code == 0) {
Mr.奇淼('s avatar
Mr.奇淼( 已提交
280 281 282 283
        this.$message({
          type:"success",
          message:"创建/更改成功"
        })
284 285 286 287 288 289 290 291 292
        this.closeDialog();
        this.getTableData();
      }
    },
    openDialog() {
      this.type = "create";
      this.dialogFormVisible = true;
    }
  },
293 294
  async created() {
    await this.getTableData();
295 296 297 298 299
  {{ range .Fields -}}
    {{- if .DictType }}
    await this.getDict("{{.DictType}}");
    {{ end -}}
  {{- end }}
300
}
301 302 303 304 305
};
</script>

<style>
</style>