123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" :inline="true" @submit.native.prevent v-show="showSearch">
- #foreach($column in $columns)
- #if($column.query)
- #set($dictType=$column.dictType)
- #set($AttrName=$column.javaField.substring(0,1).toUpperCase() + ${column.javaField.substring(1)})
- #set($parentheseIndex=$column.columnComment.indexOf("("))
- #if($parentheseIndex != -1)
- #set($comment=$column.columnComment.substring(0, $parentheseIndex))
- #else
- #set($comment=$column.columnComment)
- #end
- #if($column.htmlType == "input")
- <el-form-item label="${comment}" prop="${column.javaField}">
- <el-input v-model="queryParams.${column.javaField}" placeholder="请输入${comment}" @keyup.enter.native="handleQuery" clearable class="inp"/>
- </el-form-item>
- #elseif(($column.htmlType == "select" || $column.htmlType == "radio") && "" != $dictType)
- <el-form-item label="${comment}" prop="${column.javaField}">
- <el-select v-model="queryParams.${column.javaField}" placeholder="请选择${comment}" clearable class="se">
- <el-option v-for="dict in dict.type.${dictType}" :key="dict.value" :label="dict.label" :value="dict.value"/>
- </el-select>
- </el-form-item>
- #elseif(($column.htmlType == "select" || $column.htmlType == "radio") && $dictType)
- <el-form-item label="${comment}" prop="${column.javaField}">
- <el-select v-model="queryParams.${column.javaField}" placeholder="请选择${comment}" clearable class="se">
- <el-option label="请选择字典生成" value="" />
- </el-select>
- </el-form-item>
- #elseif($column.htmlType == "datetime" && $column.queryType != "BETWEEN")
- <el-form-item label="${comment}" prop="${column.javaField}">
- <el-date-picker clearable v-model="queryParams.${column.javaField}" type="date" value-format="yyyy-MM-dd" placeholder="请选择${comment}"></el-date-picker>
- </el-form-item>
- #elseif($column.htmlType == "datetime" && $column.queryType == "BETWEEN")
- <el-form-item label="${comment}">
- <el-date-picker
- v-model="daterange${AttrName}"
- style="width: 240px"
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- ></el-date-picker>
- </el-form-item>
- #end
- #end
- #end
- <el-form-item>
- <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
- <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-button type="primary" icon="el-icon-plus" :disabled="ids.length > 0" @click="op('add')" v-hasPermi="['${moduleName}:${businessName}:add']">新增</el-button>
- <el-button type="success" icon="el-icon-edit" :disabled="ids.length != 1" @click="op('edit',ids)" v-hasPermi="['${moduleName}:${businessName}:edit']">修改</el-button>
- <el-button type="danger" icon="el-icon-delete" :disabled="ids.length == 0" @click="del" v-hasPermi="['${moduleName}:${businessName}:remove']">删除{{ids.length>0?'('+ids.length+')':''}}</el-button>
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
- </el-row>
- <el-table :data="response.rows" border @selection-change="selects" height="calc(100vh - 270px)">
- <el-table-column type="selection" width="55" align="center" />
- #foreach($column in $columns)
- #set($javaField=$column.javaField)
- #set($parentheseIndex=$column.columnComment.indexOf("("))
- #if($parentheseIndex != -1)
- #set($comment=$column.columnComment.substring(0, $parentheseIndex))
- #else
- #set($comment=$column.columnComment)
- #end
- #if($column.pk)
- <el-table-column label="${comment}" align="center" prop="${javaField}" />
- #elseif($column.list && $column.htmlType == "datetime")
- <el-table-column label="${comment}" align="center" prop="${javaField}" width="180">
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.${javaField}, '{y}-{m}-{d}') }}</span>
- </template>
- </el-table-column>
- #elseif($column.list && $column.htmlType == "imageUpload")
- <el-table-column label="${comment}" align="center" prop="${javaField}" width="100">
- <template slot-scope="scope">
- <image-preview :src="scope.row.${javaField}" :width="50" :height="50"/>
- </template>
- </el-table-column>
- #elseif($column.list && "" != $column.dictType)
- <el-table-column label="${comment}" align="center" prop="${javaField}">
- <template slot-scope="scope">
- #if($column.htmlType == "checkbox")
- <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.${javaField} ? scope.row.${javaField}.split(',') : []"/>
- #else
- <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.${javaField}"/>
- #end
- </template>
- </el-table-column>
- #elseif($column.list && "" != $javaField)
- <el-table-column label="${comment}" align="center" prop="${javaField}" />
- #end
- #end
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button size="mini" type="text" icon="el-icon-edit" @click="op('edit',scope.row)" v-hasPermi="['${moduleName}:${businessName}:edit']">修改</el-button>
- <el-button size="mini" type="text" icon="el-icon-delete" @click="del(scope.row)" v-hasPermi="['${moduleName}:${businessName}:remove']">删除</el-button>
- </template>
- </el-table-column>
- <template slot="empty">
- <el-empty></el-empty>
- </template>
- </el-table>
- <pagination v-if="response.total>0" :total="response.total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList"/>
- </div>
- </template>
- <script>
- import edit from './edit'
- export default {
- name: "${BusinessName}",
- #if(${dicts} != '')
- dicts: [${dicts}],
- #end
- data() {
- return {
- ids: [],
- showSearch:true,
- response: {},
- #if($table.sub)
- // ${subTable.functionName}表格数据
- ${subclassName}List: [],
- #end
- #foreach ($column in $columns)
- #if($column.htmlType == "datetime" && $column.queryType == "BETWEEN")
- #set($AttrName=$column.javaField.substring(0,1).toUpperCase() + ${column.javaField.substring(1)})
- daterange${AttrName}: [],
- #end
- #end
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- #foreach ($column in $columns)
- #if($column.query)
- $column.javaField: null#if($foreach.count != $columns.size()),#end
- #end
- #end
- orderByColumn: 'id',
- isAsc: 'desc'
- }
- };
- },
- created() {
- this.getList();
- },
- methods: {
- getList() {
- this.ajax({ url: '/${moduleName}/${businessName}/list', data: this.queryParams }).then(response => {
- this.response = response;
- });
- },
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- resetQuery() {
- this.resetForm("queryForm");
- this.handleQuery();
- },
- selects(rows) {
- this.ids = rows.map(item => item.${pkColumn.javaField})
- },
- op(tag, row) {
- if (tag == 'add') {
- this.iframe({ obj: edit, param: {}, title:'新增',width: '45%', height: '55%'});
- }
- if (tag == 'edit') {
- const id = row.${pkColumn.javaField} || this.ids[0];
- this.iframe({ obj: edit, param: {id: id}, title:'编辑',width: '50%', height: '50%'});
- }
- },
- del(row) {
- this.$confirm('是否确认删除选中数据?', '警告', { type: 'warning' }).then(() => {
- this.get({ url: '/${moduleName}/${businessName}/remove/' + (row.id || this.ids) }).then(response => {
- this.$modal.msgSuccess('删除成功');
- this.getList();
- });
- });
- }
- }
- };
- </script>
|