| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720 |
- {%- if table.pk_column %}
- {%- set pk_field = table.pk_column.java_field %}
- {%- else %}
- {%- set pk_field = 'id' %}
- {%- endif %}
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
- {%- for column in table.columns %}
- {%- if column.is_query %}
- {%- set dict_type = column.dict_type if column.dict_type else '' %}
- {%- set attr_name = capitalize_first(column.java_field) %}
- {%- set comment = column.column_comment %}
- {%- if '(' in comment or '(' in comment %}
- {%- if '(' in comment %}
- {%- set comment = comment.split('(')[0] %}
- {%- elif '(' in comment %}
- {%- set comment = comment.split('(')[0] %}
- {%- endif %}
- {%- endif %}
- {%- if column.html_type == 'input' %}
- <el-form-item label="{{ comment }}" prop="{{ column.java_field }}">
- <el-input
- v-model="queryParams.{{ column.java_field }}"
- placeholder="请输入{{ comment }}"
- clearable
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- {%- elif (column.html_type == 'select' or column.html_type == 'radio') and dict_type != '' %}
- <el-form-item label="{{ comment }}" prop="{{ column.java_field }}">
- <el-select v-model="queryParams.{{ column.java_field }}" placeholder="请选择{{ comment }}" clearable>
- <el-option
- v-for="dict in dict.type.{{ dict_type }}"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- {%- elif (column.html_type == 'select' or column.html_type == 'radio') and dict_type == '' %}
- <el-form-item label="{{ comment }}" prop="{{ column.java_field }}">
- <el-select v-model="queryParams.{{ column.java_field }}" placeholder="请选择{{ comment }}" clearable>
- <el-option label="请选择字典生成" value="" />
- </el-select>
- </el-form-item>
- {%- elif column.html_type == 'datetime' and column.query_type != 'BETWEEN' %}
- <el-form-item label="{{ comment }}" prop="{{ column.java_field }}">
- <el-date-picker clearable
- v-model="queryParams.{{ column.java_field }}"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="选择{{ comment }}">
- </el-date-picker>
- </el-form-item>
- {%- elif column.html_type == 'datetime' and column.query_type == 'BETWEEN' %}
- <el-form-item label="{{ comment }}">
- <el-date-picker
- v-model="daterange{{ attr_name }}"
- style="width: 240px"
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- ></el-date-picker>
- </el-form-item>
- {%- endif %}
- {%- endif %}
- {%- endfor %}
- <el-form-item>
- <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['{{ table.module_name }}:{{ table.business_name }}:add']"
- >新增</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="info"
- plain
- icon="el-icon-sort"
- size="mini"
- @click="toggleExpandAll"
- >展开/折叠</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- plain
- icon="el-icon-download"
- size="mini"
- @click="handleExport"
- v-hasPermi="['{{ table.module_name }}:{{ table.business_name }}:export']"
- >导出</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="info"
- plain
- icon="el-icon-upload2"
- size="mini"
- @click="handleImport"
- v-hasPermi="['{{ table.module_name }}:{{ table.business_name }}:import']"
- >导入</el-button>
- </el-col>
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
- </el-row>
- <el-table
- v-if="refreshTable"
- :loading="loading"
- :data="{{ table.business_name }}List"
- row-key="{{ pk_field }}"
- :default-expand-all="isExpandAll"
- :tree-props="{children: 'children', hasChildren: 'hasChildren'}"
- >
- {%- for column in table.columns %}
- {%- set java_field = column.java_field %}
- {%- set comment = column.column_comment %}
- {%- if '(' in comment or '(' in comment %}
- {%- if '(' in comment %}
- {%- set comment = comment.split('(')[0] %}
- {%- elif '(' in comment %}
- {%- set comment = comment.split('(')[0] %}
- {%- endif %}
- {%- endif %}
- {%- if column.is_list and column.list_index is not none and column.html_type == 'datetime' %}
- <el-table-column label="{{ comment }}" align="center" v-if="columns[{{ column.list_index }}].visible" prop="{{ java_field }}" width="180">
- <template slot-scope="scope">
- <span>{{ "{{ parseTime(scope.row." }}{{ java_field }}{{ ", '{y}-{m}-{d}') }}" }}</span>
- </template>
- </el-table-column>
- {%- elif column.is_list and column.list_index is not none and column.html_type == 'imageUpload' %}
- <el-table-column label="{{ comment }}" align="center" v-if="columns[{{ column.list_index }}].visible" prop="{{ java_field }}" width="100">
- <template slot-scope="scope">
- <image-preview :src="scope.row.{{ java_field }}" :width="50" :height="50"/>
- </template>
- </el-table-column>
- {%- elif column.is_list and column.list_index is not none and column.html_type == 'fileUpload' %}
- <el-table-column label="{{ comment }}" align="center" v-if="columns[{{ column.list_index }}].visible" prop="{{ java_field }}" width="100">
- <template slot-scope="scope">
- <div v-if="scope.row.{{ java_field }}">
- <el-tooltip placement="top" effect="light">
- <div slot="content">
- <div v-for="(file,index) in scope.row.{{ java_field }}.split(',')"
- :key="index"
- style="text-align: left;padding: 5px;">
- <el-link
- :download="getFileName(file)"
- :href="getFilePath(file)"
- :underline="false"
- target="_blank"
- style="font-size: 14px"
- >
- <span style="cursor: pointer;"> {{ "{{ getFileName(file) }}" }} </span>
- </el-link>
- </div>
- </div>
- <span style="cursor: pointer; color: #409EFF;">查看文件</span>
- </el-tooltip>
- </div>
- <div v-else>
- -
- </div>
- </template>
- </el-table-column>
- {%- elif column.is_list and column.list_index is not none and column.dict_type and column.dict_type != '' %}
- <el-table-column label="{{ comment }}" align="center" v-if="columns[{{ column.list_index }}].visible" prop="{{ java_field }}">
- <template slot-scope="scope">
- {%- if column.html_type == 'checkbox' %}
- <dict-tag :options="dict.type.{{ column.dict_type }}" :value="scope.row.{{ java_field }} ? scope.row.{{ java_field }}.split(',') : []"/>
- {%- else %}
- <dict-tag :options="dict.type.{{ column.dict_type }}" :value="scope.row.{{ java_field }}"/>
- {%- endif %}
- </template>
- </el-table-column>
- {%- elif column.is_list and column.list_index is not none and java_field %}
- {%- if column.list_index == 0 %}
- <el-table-column label="{{ comment }}" :show-overflow-tooltip="true" v-if="columns[{{ column.list_index }}].visible" prop="{{ java_field }}" />
- {%- else %}
- <el-table-column label="{{ comment }}" align="center" :show-overflow-tooltip="true" v-if="columns[{{ column.list_index }}].visible" prop="{{ java_field }}" />
- {%- endif %}
- {%- endif %}
- {%- endfor %}
- <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="handleUpdate(scope.row)"
- v-hasPermi="['{{ table.module_name }}:{{ table.business_name }}:edit']"
- >修改</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-plus"
- @click="handleAdd(scope.row)"
- v-hasPermi="['{{ table.module_name }}:{{ table.business_name }}:add']"
- >新增</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['{{ table.module_name }}:{{ table.business_name }}:remove']"
- >删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <!-- 添加或修改{{ table.function_name }}对话框 -->
- <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
- <el-form ref="form" :model="form" :rules="rules" label-width="80px">
- {%- for column in table.columns %}
- {%- set field = column.java_field %}
- {%- if column.is_insert and column.is_pk != '1' %}
- {%- set comment = column.column_comment %}
- {%- if '(' in comment or '(' in comment %}
- {%- if '(' in comment %}
- {%- set comment = comment.split('(')[0] %}
- {%- elif '(' in comment %}
- {%- set comment = comment.split('(')[0] %}
- {%- endif %}
- {%- endif %}
- {%- set dict_type = column.dict_type if column.dict_type else '' %}
- {%- if column.java_field == tree_parent_field %}
- <el-form-item label="{{ comment }}" prop="{{ tree_parent_field }}">
- <treeselect v-model="form.{{ tree_parent_field }}" :options="{{ table.business_name }}Options" :normalizer="normalizer" placeholder="请选择{{ comment }}" />
- </el-form-item>
- {%- elif column.html_type == 'input' %}
- <el-form-item label="{{ comment }}" prop="{{ field }}">
- <el-input v-model="form.{{ field }}" placeholder="请输入{{ comment }}" />
- </el-form-item>
- {%- elif column.html_type == 'imageUpload' %}
- <el-form-item label="{{ comment }}" prop="{{ field }}">
- <image-upload v-model="form.{{ field }}"/>
- </el-form-item>
- {%- elif column.html_type == 'fileUpload' %}
- <el-form-item label="{{ comment }}" prop="{{ field }}">
- <file-upload v-model="form.{{ field }}"/>
- </el-form-item>
- {%- elif column.html_type == 'editor' %}
- <el-form-item label="{{ comment }}">
- <editor v-model="form.{{ field }}" :min-height="192"/>
- </el-form-item>
- {%- elif column.html_type == 'select' and dict_type != '' %}
- <el-form-item label="{{ comment }}" prop="{{ field }}">
- <el-select v-model="form.{{ field }}" placeholder="请选择{{ comment }}">
- <el-option
- v-for="dict in dict.type.{{ dict_type }}"
- :key="dict.value"
- :label="dict.label"
- {%- if column.java_type == 'Integer' or column.java_type == 'Long' %}
- :value="parseInt(dict.value)"
- {%- else %}
- :value="dict.value"
- {%- endif %}
- ></el-option>
- </el-select>
- </el-form-item>
- {%- elif column.html_type == 'select' and dict_type == '' %}
- <el-form-item label="{{ comment }}" prop="{{ field }}">
- <el-select v-model="form.{{ field }}" placeholder="请选择{{ comment }}">
- <el-option label="请选择字典生成" value="" />
- </el-select>
- </el-form-item>
- {%- elif column.html_type == 'checkbox' and dict_type != '' %}
- <el-form-item label="{{ comment }}" prop="{{ field }}">
- <el-checkbox-group v-model="form.{{ field }}">
- <el-checkbox
- v-for="dict in dict.type.{{ dict_type }}"
- :key="dict.value"
- :label="dict.value">
- {{ "{{dict.label}}" }}
- </el-checkbox>
- </el-checkbox-group>
- </el-form-item>
- {%- elif column.html_type == 'checkbox' and dict_type == '' %}
- <el-form-item label="{{ comment }}" prop="{{ field }}">
- <el-checkbox-group v-model="form.{{ field }}">
- <el-checkbox>请选择字典生成</el-checkbox>
- </el-checkbox-group>
- </el-form-item>
- {%- elif column.html_type == 'radio' and dict_type != '' %}
- <el-form-item label="{{ comment }}" prop="{{ field }}">
- <el-radio-group v-model="form.{{ field }}">
- <el-radio
- v-for="dict in dict.type.{{ dict_type }}"
- :key="dict.value"
- {%- if column.java_type == 'Integer' or column.java_type == 'Long' %}
- :label="parseInt(dict.value)"
- {%- else %}
- :label="dict.value"
- {%- endif %}
- >{{ "{{dict.label}}" }}</el-radio>
- </el-radio-group>
- </el-form-item>
- {%- elif column.html_type == 'radio' and dict_type == '' %}
- <el-form-item label="{{ comment }}" prop="{{ field }}">
- <el-radio-group v-model="form.{{ field }}">
- <el-radio label="1">请选择字典生成</el-radio>
- </el-radio-group>
- </el-form-item>
- {%- elif column.html_type == 'datetime' %}
- <el-form-item label="{{ comment }}" prop="{{ field }}">
- <el-date-picker clearable
- v-model="form.{{ field }}"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="选择{{ comment }}">
- </el-date-picker>
- </el-form-item>
- {%- elif column.html_type == 'textarea' %}
- <el-form-item label="{{ comment }}" prop="{{ field }}">
- <el-input v-model="form.{{ field }}" type="textarea" placeholder="请输入内容" />
- </el-form-item>
- {%- endif %}
- {%- endif %}
- {%- endfor %}
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitForm">确 定</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
- <!-- 导入对话框 -->
- <el-dialog :title="upload.title" :visible.sync="upload.open" width="400px" append-to-body>
- <el-upload
- ref="upload"
- :limit="1"
- accept=".xlsx, .xls"
- :headers="upload.headers"
- :action="upload.url + '?updateSupport=' + upload.updateSupport"
- :disabled="upload.isUploading"
- :on-progress="handleFileUploadProgress"
- :on-success="handleFileSuccess"
- :auto-upload="false"
- drag
- >
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
- <div class="el-upload__tip text-center" slot="tip">
- <div class="el-upload__tip" slot="tip">
- <el-checkbox v-model="upload.updateSupport" /> 是否更新已经存在的{{ table.function_name }}数据
- </div>
- <span>仅允许导入xls、xlsx格式文件。</span>
- <el-link type="primary" :underline="false" style="font-size:12px;vertical-align: baseline;" @click="importTemplate">下载模板</el-link>
- </div>
- </el-upload>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitFileForm">确 定</el-button>
- <el-button @click="upload.open = false">取 消</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- {% set apiName = to_camel_case(table.business_name, False) %}
- {% set ApiName = capitalize_first(apiName) %}
- import { list{{ ApiName }}, get{{ ApiName }}, del{{ ApiName }}, add{{ ApiName }}, update{{ ApiName }}} from "@/api/{{ table.module_name }}/{{ table.business_name }}";
- import Treeselect from "@riophae/vue-treeselect";
- import "@riophae/vue-treeselect/dist/vue-treeselect.css";
- import { getToken } from "@/utils/auth";
- {%- set raw_tree_code = table.tree_code if table.tree_code else 'id' %}
- {%- set raw_tree_parent = table.tree_parent_code if table.tree_parent_code else 'parent_id' %}
- {%- set raw_tree_name = table.tree_name if table.tree_name else 'name' %}
- {%- set tree_code_field = to_camel_case(raw_tree_code, False) %}
- {%- set tree_parent_field = to_camel_case(raw_tree_parent, False) %}
- {%- set tree_name_field = to_camel_case(raw_tree_name, False) %}
- export default {
- name: "{{ ApiName }}",
- {%- set dicts_list = [] %}
- {%- for column in table.columns %}
- {%- if column.dict_type and column.dict_type != '' %}
- {%- if column.dict_type not in dicts_list %}
- {%- set _ = dicts_list.append(column.dict_type) %}
- {%- endif %}
- {%- endif %}
- {%- endfor %}
- {%- if dicts_list|length > 0 %}
- dicts: [{%- for dict_type in dicts_list %}'{{ dict_type }}'{%- if not loop.last %}, {% endif %}{%- endfor %}],
- {%- endif %}
- components: {
- Treeselect
- },
- data() {
- return {
- //表格展示列
- columns: [
- {%- for column in table.columns %}
- {%- set comment = column.column_comment %}
- {%- if '(' in comment or '(' in comment %}
- {%- if '(' in comment %}
- {%- set comment = comment.split('(')[0] %}
- {%- elif '(' in comment %}
- {%- set comment = comment.split('(')[0] %}
- {%- endif %}
- {%- endif %}
- {%- if column.is_pk == '1' %}
- {%- elif column.is_list and column.list_index is not none %}
- { key: {{ column.list_index }}, label: '{{ comment }}', visible: true }{% if not loop.last %},{% endif %}
- {%- endif %}
- {%- endfor %}
- ],
- // 遮罩层
- loading: true,
- // 显示搜索条件
- showSearch: true,
- // {{ table.function_name }}表格数据
- {{ table.business_name }}List: [],
- // {{ table.function_name }}树选项
- {{ table.business_name }}Options: [],
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- // 是否展开,默认全部展开
- isExpandAll: true,
- // 重新渲染表格状态
- refreshTable: true,
- {%- for column in table.columns %}
- {%- if column.html_type == 'datetime' and column.query_type == 'BETWEEN' %}
- {%- set attr_name = capitalize_first(column.java_field) %}
- {%- set comment = column.column_comment %}
- {%- if '(' in comment or '(' in comment %}
- {%- if '(' in comment %}
- {%- set comment = comment.split('(')[0] %}
- {%- elif '(' in comment %}
- {%- set comment = comment.split('(')[0] %}
- {%- endif %}
- {%- endif %}
- // {{ comment }}时间范围
- daterange{{ attr_name }}: [],
- {%- endif %}
- {%- endfor %}
- // 查询参数
- queryParams: {
- {%- set query_cols = [] %}
- {%- for column in table.columns %}
- {%- if column.is_query %}
- {%- set _ = query_cols.append(column) %}
- {%- endif %}
- {%- endfor %}
- {%- for column in query_cols %}
- {{ column.java_field }}: null{% if not loop.last %},{% endif %}
- {%- endfor %}
- },
- // 表单参数
- form: {},
- // 导入参数
- upload: {
- open: false,
- title: "",
- isUploading: false,
- updateSupport: 0,
- headers: { Authorization: "Bearer " + getToken() },
- url: process.env.VUE_APP_BASE_API + "/{{ table.module_name }}/{{ table.business_name }}/importData"
- },
- // 表单校验
- rules: {
- {%- set required_cols = [] %}
- {%- for column in table.columns %}
- {%- if column.is_required == '1' %}
- {%- set _ = required_cols.append(column) %}
- {%- endif %}
- {%- endfor %}
- {%- for column in required_cols %}
- {%- set comment = column.column_comment %}
- {%- if '(' in comment or '(' in comment %}
- {%- if '(' in comment %}
- {%- set comment = comment.split('(')[0] %}
- {%- elif '(' in comment %}
- {%- set comment = comment.split('(')[0] %}
- {%- endif %}
- {%- endif %}
- {{ column.java_field }}: [
- { required: true, message: "{{ comment }}不能为空", trigger: {% if column.html_type == 'select' or column.html_type == 'radio' %}"change"{% else %}"blur"{% endif %} }
- ]{% if not loop.last %},{% endif %}
- {%- endfor %}
- }
- };
- },
- created() {
- this.getList();
- },
- methods: {
- /** 查询{{ table.function_name }}列表 */
- getList() {
- this.loading = true;
- {%- set has_datetime_between = false %}
- {%- for column in table.columns %}
- {%- if column.html_type == 'datetime' and column.query_type == 'BETWEEN' %}
- {%- if not has_datetime_between %}
- this.queryParams.params = {};
- {%- set has_datetime_between = true %}
- {%- endif %}
- {%- set attr_name = capitalize_first(column.java_field) %}
- if (null != this.daterange{{ attr_name }} && '' != this.daterange{{ attr_name }}) {
- this.queryParams.params["begin{{ attr_name }}"] = this.daterange{{ attr_name }}[0];
- this.queryParams.params["end{{ attr_name }}"] = this.daterange{{ attr_name }}[1];
- }
- {%- endif %}
- {%- endfor %}
- list{{ ApiName }}(this.queryParams).then(response => {
- const list = Array.isArray(response && response.data) ? response.data : (Array.isArray(response && response.rows) ? response.rows : []);
- this.{{ table.business_name }}List = this.handleTree(list, "{{ tree_code_field }}", "{{ tree_parent_field }}");
- this.loading = false;
- });
- },
- {%- if has_file_upload %}
- getFilePath,
- getFileName,
- {%- endif %}
- /** 转换{{ table.function_name }}数据结构 */
- normalizer(node) {
- if (node.children && !node.children.length) {
- delete node.children;
- }
- return {
- id: node.{{ tree_code_field }},
- label: node.{{ tree_name_field }},
- children: node.children
- };
- },
- /** 查询{{ table.function_name }}下拉树结构 */
- getTreeselect() {
- list{{ ApiName }}().then(response => {
- this.{{ table.business_name }}Options = [];
- const data = { {{ tree_code_field }}: 0, {{ tree_name_field }}: '顶级节点', children: [] };
- const list = Array.isArray(response && response.data) ? response.data : (Array.isArray(response && response.rows) ? response.rows : []);
- data.children = this.handleTree(list, "{{ tree_code_field }}", "{{ tree_parent_field }}");
- this.{{ table.business_name }}Options.push(data);
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- {%- for column in table.columns %}
- {%- if column.html_type == 'checkbox' %}
- {{ column.java_field }}: []
- {%- else %}
- {{ column.java_field }}: null
- {%- endif %}{% if not loop.last %},{% endif %}
- {%- endfor %}
- };
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- {%- for column in table.columns %}
- {%- if column.html_type == 'datetime' and column.query_type == 'BETWEEN' %}
- {%- set attr_name = capitalize_first(column.java_field) %}
- this.daterange{{ attr_name }} = [];
- {%- endif %}
- {%- endfor %}
- this.resetForm("queryForm");
- this.handleQuery();
- },
- /** 新增按钮操作 */
- handleAdd(row) {
- this.reset();
- this.getTreeselect();
- if (row != null && row.{{ tree_code_field }}) {
- this.form.{{ tree_parent_field }} = row.{{ tree_code_field }};
- } else {
- this.form.{{ tree_parent_field }} = 0;
- }
- this.open = true;
- this.title = "添加{{ table.function_name }}";
- },
- /** 展开/折叠操作 */
- toggleExpandAll() {
- this.refreshTable = false;
- this.isExpandAll = !this.isExpandAll;
- this.$nextTick(() => {
- this.refreshTable = true;
- });
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.reset();
- this.getTreeselect();
- if (row != null) {
- this.form.{{ tree_parent_field }} = row.{{ tree_parent_field }};
- }
- get{{ ApiName }}(row.{{ pk_field }}).then(response => {
- this.form = response.data;
- {%- for column in table.columns %}
- {%- if column.html_type == 'checkbox' %}
- if (this.form.{{ column.java_field }}) {
- this.form.{{ column.java_field }} = this.form.{{ column.java_field }}.split(",");
- } else {
- this.form.{{ column.java_field }} = [];
- }
- {%- endif %}
- {%- endfor %}
- this.open = true;
- this.title = "修改{{ table.function_name }}";
- });
- },
- /** 提交按钮 */
- submitForm() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- const submitData = this.buildSubmitData();
- if (submitData.{{ pk_field }} != null) {
- update{{ ApiName }}(submitData).then(response => {
- this.$modal.msgSuccess("修改成功");
- this.open = false;
- this.getList();
- });
- } else {
- add{{ ApiName }}(submitData).then(response => {
- this.$modal.msgSuccess("新增成功");
- this.open = false;
- this.getList();
- });
- }
- }
- });
- },
- buildSubmitData() {
- const data = { ...this.form };
- {%- for column in table.columns %}
- {%- if column.html_type == 'checkbox' %}
- if (Array.isArray(data.{{ column.java_field }})) {
- data.{{ column.java_field }} = data.{{ column.java_field }}.join(",");
- } else if (data.{{ column.java_field }}) {
- data.{{ column.java_field }} = String(data.{{ column.java_field }});
- }
- {%- endif %}
- {%- if column.java_type in ['Integer', 'Long', 'Short'] %}
- if (data.{{ column.java_field }} !== null && data.{{ column.java_field }} !== undefined && data.{{ column.java_field }} !== "") {
- data.{{ column.java_field }} = parseInt(data.{{ column.java_field }}, 10);
- } else {
- data.{{ column.java_field }} = null;
- }
- {%- elif column.java_type in ['Float', 'Double', 'BigDecimal', 'Decimal'] %}
- if (data.{{ column.java_field }} !== null && data.{{ column.java_field }} !== undefined && data.{{ column.java_field }} !== "") {
- data.{{ column.java_field }} = parseFloat(data.{{ column.java_field }});
- } else {
- data.{{ column.java_field }} = null;
- }
- {%- endif %}
- {%- endfor %}
- return data;
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- this.$modal.confirm('是否确认删除{{ table.function_name }}编号为"' + row.{{ pk_field }} + '"的数据项?').then(function() {
- return del{{ ApiName }}(row.{{ pk_field }});
- }).then(() => {
- this.getList();
- this.$modal.msgSuccess("删除成功");
- }).catch(() => {});
- },
- /** 导出按钮操作 */
- handleExport() {
- this.download('{{ table.module_name }}/{{ table.business_name }}/export', {
- ...this.queryParams
- }, `{{ table.business_name }}_${new Date().getTime()}.xlsx`)
- },
- /** 导入按钮操作 */
- handleImport() {
- this.upload.title = "{{ table.function_name }}导入";
- this.upload.open = true;
- },
- /** 下载模板操作 */
- importTemplate() {
- this.download(
- "{{ table.module_name }}/{{ table.business_name }}/importTemplate",
- {},
- "{{ table.business_name }}_template_" + new Date().getTime() + ".xlsx"
- );
- },
- // 文件上传中处理
- handleFileUploadProgress(event, file, fileList) {
- this.upload.isUploading = true;
- },
- // 文件上传成功处理
- handleFileSuccess(response, file, fileList) {
- this.upload.open = false;
- this.upload.isUploading = false;
- this.$refs.upload.clearFiles();
- this.$alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + response.msg + "</div>", "导入结果", { dangerouslyUseHTMLString: true });
- this.$modal.closeLoading()
- this.getList();
- },
- // 提交上传文件
- submitFileForm() {
- this.$modal.loading("导入中请稍后")
- this.$refs.upload.submit();
- }
- }
- };
- </script>
|