| | |
| | | plain
|
| | | icon="el-icon-download"
|
| | | size="mini"
|
| | | :loading="exportLoading"
|
| | | @click="handleExport"
|
| | | v-hasPermi="['${moduleName}:${businessName}:export']"
|
| | | >导出</el-button>
|
| | |
| | |
|
| | | <script>
|
| | | import { list${BusinessName}, get${BusinessName}, del${BusinessName}, add${BusinessName}, update${BusinessName}, export${BusinessName} } from "@/api/${moduleName}/${businessName}";
|
| | | #foreach($column in $columns)
|
| | | #if($column.insert && !$column.superColumn && !$column.pk && $column.htmlType == "imageUpload")
|
| | | import ImageUpload from '@/components/ImageUpload';
|
| | | #break
|
| | | #end
|
| | | #end
|
| | | #foreach($column in $columns)
|
| | | #if($column.insert && !$column.superColumn && !$column.pk && $column.htmlType == "fileUpload")
|
| | | import FileUpload from '@/components/FileUpload';
|
| | | #break
|
| | | #end
|
| | | #end
|
| | | #foreach($column in $columns)
|
| | | #if($column.insert && !$column.superColumn && !$column.pk && $column.htmlType == "editor")
|
| | | import Editor from '@/components/Editor';
|
| | | #break
|
| | | #end
|
| | | #end
|
| | |
|
| | | export default {
|
| | | name: "${BusinessName}",
|
| | | components: {
|
| | | #foreach($column in $columns)
|
| | | #if($column.insert && !$column.superColumn && !$column.pk && $column.htmlType == "imageUpload")
|
| | | ImageUpload,
|
| | | #break
|
| | | #end
|
| | | #end
|
| | | #foreach($column in $columns)
|
| | | #if($column.insert && !$column.superColumn && !$column.pk && $column.htmlType == "fileUpload")
|
| | | FileUpload,
|
| | | #break
|
| | | #end
|
| | | #end
|
| | | #foreach($column in $columns)
|
| | | #if($column.insert && !$column.superColumn && !$column.pk && $column.htmlType == "editor")
|
| | | Editor,
|
| | | #break
|
| | | #end
|
| | | #end
|
| | | },
|
| | | data() {
|
| | | return {
|
| | | // 遮罩层
|
| | | loading: true,
|
| | | // 导出遮罩层
|
| | | exportLoading: false,
|
| | | // 选中数组
|
| | | ids: [],
|
| | | #if($table.sub)
|
| | |
| | | }).then(() => {
|
| | | this.getList();
|
| | | this.msgSuccess("删除成功");
|
| | | })
|
| | | }).catch(() => {});
|
| | | },
|
| | | #if($table.sub)
|
| | | /** ${subTable.functionName}序号 */
|
| | |
| | | confirmButtonText: "确定",
|
| | | cancelButtonText: "取消",
|
| | | type: "warning"
|
| | | }).then(function() {
|
| | | }).then(() => {
|
| | | this.exportLoading = true;
|
| | | return export${BusinessName}(queryParams);
|
| | | }).then(response => {
|
| | | this.download(response.msg);
|
| | | })
|
| | | this.exportLoading = false;
|
| | | }).catch(() => {});
|
| | | }
|
| | | }
|
| | | };
|