table.vue.tpl 5.0 KB
Newer Older
1 2 3 4
<template>
  <div>
    <div class="search-term">
      <el-form :inline="true" :model="searchInfo" class="demo-form-inline">
5 6 7 8 9 10 11 12 13 14
           {{- range .Fields}}
              {{- if .FieldSearchType}}
        <el-form-item label="{{.FieldDesc}}">
          <el-input placeholder="搜索条件" v-model="searchInfo.{{.FieldJson}}"></el-input>
        </el-form-item>
              {{ end }}
           {{ end }}
        <el-form-item>
          <el-button @click="onSubmit" type="primary">查询</el-button>
        </el-form-item>
15
        <el-form-item>
16
          <el-button @click="openDialog" type="primary">新增api</el-button>
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
        </el-form-item>
      </el-form>
    </div>
    <el-table
      :data="tableData"
      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>
    {{range .Fields}}
     <el-table-column label="{{.FieldDesc}}" prop="{{.FieldJson}}" width="120"></el-table-column>
    {{ end }}
      <el-table-column label="按钮组">
        <template slot-scope="scope">
          <el-button @click="update{{.StructName}}(scope.row)" size="small" type="text">变更</el-button>
          <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>
            <el-button type="text" size="mini" slot="reference">删除</el-button>
          </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="弹窗操作">
Mr.奇淼('s avatar
Mr.奇淼( 已提交
62
      此处请使用表单生成器生成form填充 表单默认绑定 formData 如手动修改过请自行修改key
63 64 65 66 67 68 69 70 71 72
      <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.奇淼( 已提交
73 74 75 76
    create{{.StructName}},
    delete{{.StructName}},
    update{{.StructName}},
    find{{.StructName}},
77
    get{{.StructName}}List
78
} from "@/api/{{.PackageName}}";  //  此处请自行替换地址
79 80 81 82 83 84 85 86 87 88 89 90
import { formatTimeToStr } from "@/utils/data";
import infoList from "@/components/mixins/infoList";

export default {
  name: "{{.StructName}}",
  mixins: [infoList],
  data() {
    return {
      listApi: get{{.StructName}}List,
      dialogFormVisible: false,
      visible: false,
      type: "",
Mr.奇淼('s avatar
Mr.奇淼( 已提交
91
      formData: {
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
        {{range .Fields}}{{.FieldJson}}:null,{{ end }}
      }
    };
  },
  filters: {
    formatDate: function(time) {
      if (time != null && time != "") {
        var date = new Date(time);
        return formatTimeToStr(date, "yyyy-MM-dd hh:mm:ss");
      } else {
        return "";
      }
    }
  },
  methods: {
107 108 109 110 111 112
      //条件搜索前端看此方法
      onSubmit() {
        this.page = 1
        this.pageSize = 10
        this.getTableData()
      },
113
    async update{{.StructName}}(row) {
Mr.奇淼('s avatar
Mr.奇淼( 已提交
114
      const res = await find{{.StructName}}({ ID: row.ID });
115 116
      this.type = "update";
      if (res.code == 0) {
Mr.奇淼('s avatar
Mr.奇淼( 已提交
117
        this.formData = res.data.re{{.Abbreviation}};
118 119 120 121 122
        this.dialogFormVisible = true;
      }
    },
    closeDialog() {
      this.dialogFormVisible = false;
Mr.奇淼('s avatar
Mr.奇淼( 已提交
123
      this.formData = {
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
        {{range .Fields}}
          {{.FieldJson}}:null,{{ end }}
      };
    },
    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.奇淼( 已提交
143
          res = await create{{.StructName}}(this.formData);
144 145
          break;
        case "update":
Mr.奇淼('s avatar
Mr.奇淼( 已提交
146
          res = await update{{.StructName}}(this.formData);
147 148
          break;
        default:
Mr.奇淼('s avatar
Mr.奇淼( 已提交
149
          res = await create{{.StructName}}(this.formData);
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
          break;
      }

      if (res.code == 0) {
        this.closeDialog();
        this.getTableData();
      }
    },
    openDialog() {
      this.type = "create";
      this.dialogFormVisible = true;
    }
  },
  created() {
    this.getTableData();
  }
};
</script>

<style>
</style>