|
|
@@ -1,28 +1,10 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
- <el-form-item label="培训员工编号" prop="newId">
|
|
|
+ <el-form-item label="培训主题" prop="topic">
|
|
|
<el-input
|
|
|
- v-model="queryParams.newId"
|
|
|
- placeholder="请输入培训员工编号"
|
|
|
- clearable
|
|
|
- size="small"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="课程编号" prop="courseCode">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.courseCode"
|
|
|
- placeholder="请输入课程编号"
|
|
|
- clearable
|
|
|
- size="small"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="讲师" prop="trainer">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.trainer"
|
|
|
- placeholder="请输入讲师"
|
|
|
+ v-model="queryParams.topic"
|
|
|
+ placeholder="请输入培训主题"
|
|
|
clearable
|
|
|
size="small"
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
@@ -42,7 +24,8 @@
|
|
|
size="mini"
|
|
|
@click="handleAdd"
|
|
|
v-hasPermi="['training:flPlan:add']"
|
|
|
- >新增</el-button>
|
|
|
+ >新增
|
|
|
+ </el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
|
@@ -52,7 +35,8 @@
|
|
|
:disabled="single"
|
|
|
@click="handleUpdate"
|
|
|
v-hasPermi="['training:flPlan:edit']"
|
|
|
- >修改</el-button>
|
|
|
+ >修改
|
|
|
+ </el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
|
@@ -62,17 +46,19 @@
|
|
|
:disabled="multiple"
|
|
|
@click="handleDelete"
|
|
|
v-hasPermi="['training:flPlan:remove']"
|
|
|
- >删除</el-button>
|
|
|
+ >删除
|
|
|
+ </el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="info"
|
|
|
+ icon="el-icon-upload2"
|
|
|
+ size="mini"
|
|
|
+ @click="handleImport"
|
|
|
+ v-hasPermi="['training:flPlan:edit']"
|
|
|
+ >导入
|
|
|
+ </el-button>
|
|
|
</el-col>
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="info"
|
|
|
- icon="el-icon-upload2"
|
|
|
- size="mini"
|
|
|
- @click="handleImport"
|
|
|
- v-hasPermi="['training:flPlan:edit']"
|
|
|
- >导入</el-button>
|
|
|
- </el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
|
type="warning"
|
|
|
@@ -80,23 +66,22 @@
|
|
|
size="mini"
|
|
|
@click="handleExport"
|
|
|
v-hasPermi="['training:flPlan:export']"
|
|
|
- >导出</el-button>
|
|
|
+ >导出
|
|
|
+ </el-button>
|
|
|
</el-col>
|
|
|
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="flPlanList" @selection-change="handleSelectionChange" :height="clientHeight" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="课程编号" align="center" prop="courseCode" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="培训主题" align="center" prop="topic" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="培训内容" align="center" prop="content" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="培训天" align="center" prop="courseDay" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="培训小时" align="center" prop="courseHour" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="详细计划" align="center" prop="detailPlan" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="讲师" align="center" prop="trainer" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="应学习时长" align="center" prop="timerNeed" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="备注" align="center" prop="remarks" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="操作" align="center" fixed="right" width="120" class-name="small-padding fixed-width">
|
|
|
+ <el-table v-loading="loading" :data="flPlanList" @selection-change="handleSelectionChange" :height="clientHeight"
|
|
|
+ :span-method="mergeMethod" border>
|
|
|
+ <el-table-column type="selection" width="55" align="center"/>
|
|
|
+ <el-table-column label="详细计划" align="center" prop="detailPlan"/>
|
|
|
+ <el-table-column label="培训主题" align="center" prop="topic"/>
|
|
|
+ <el-table-column label="培训计划" align="center" prop="courseDay" />
|
|
|
+ <el-table-column label="培训内容" align="center" prop="content"/>
|
|
|
+ <el-table-column label="应学习时长" align="center" prop="timerNeed"/>
|
|
|
+ <el-table-column label="备注" align="center" prop="remarks"/>
|
|
|
+ <el-table-column label="操作" align="center" fixed="right" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
@@ -104,14 +89,16 @@
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
v-hasPermi="['training:flPlan:edit']"
|
|
|
- >修改</el-button>
|
|
|
+ >修改
|
|
|
+ </el-button>
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-delete"
|
|
|
@click="handleDelete(scope.row)"
|
|
|
v-hasPermi="['training:flPlan:remove']"
|
|
|
- >删除</el-button>
|
|
|
+ >删除
|
|
|
+ </el-button>
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
@@ -134,47 +121,21 @@
|
|
|
|
|
|
<!-- 添加或修改分离培训模版对话框 -->
|
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
- <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
- <el-form-item label="课程编号" prop="courseCode">
|
|
|
- <el-input v-model="form.courseCode" placeholder="请输入课程编号" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="培训主题" prop="topic">
|
|
|
- <el-input v-model="form.topic" placeholder="请输入培训主题" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="培训内容">
|
|
|
- <el-input v-model="form.content" placeholder="请输入培训内容"/>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="培训天" prop="courseDay">
|
|
|
- <el-input v-model="form.courseDay" placeholder="请输入培训天" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="培训小时" prop="courseHour">
|
|
|
- <el-input v-model="form.courseHour" placeholder="请输入培训小时" />
|
|
|
- </el-form-item>
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
|
|
<el-form-item label="详细计划" prop="detailPlan">
|
|
|
- <el-input v-model="form.detailPlan" placeholder="请输入详细计划" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="讲师" prop="trainer">
|
|
|
- <el-input v-model="form.trainer" placeholder="请输入讲师" />
|
|
|
+ <el-input v-model="form.detailPlan" placeholder="请输入详细计划"/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="培训日期" prop="courseDate">
|
|
|
- <el-date-picker clearable size="small" style="width: 200px"
|
|
|
- v-model="form.courseDate"
|
|
|
- type="date"
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
- placeholder="选择培训日期">
|
|
|
- </el-date-picker>
|
|
|
+ <el-form-item label="培训主题" prop="topic">
|
|
|
+ <el-input v-model="form.topic" placeholder="请输入培训主题"/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="考核情况" prop="assess">
|
|
|
- <el-input v-model="form.assess" placeholder="请输入考核情况" />
|
|
|
+ <el-form-item label="培训排序" prop="sortTmpl">
|
|
|
+ <el-input-number v-model="form.sortTmpl" placeholder="请输入培训排序" style="width:100%;"/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="应学习时长(分)" prop="timerNeed">
|
|
|
+ <el-form-item label="应学习时长(h)" prop="timerNeed">
|
|
|
<el-input-number v-model="form.timerNeed" placeholder="请输入应学习时长" style="width: 100%"/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="培训排序" prop="sortTmpl">
|
|
|
- <el-input-number v-model="form.sortTmpl" placeholder="请输入培训排序" style="width: 100%"/>
|
|
|
- </el-form-item>
|
|
|
<el-form-item label="备注" prop="remarks">
|
|
|
- <el-input v-model="form.remarks" placeholder="请输入备注" />
|
|
|
+ <el-input v-model="form.remarks" placeholder="请输入备注"/>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
@@ -182,39 +143,39 @@
|
|
|
<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">
|
|
|
- {{ $t('将文件拖到此处,或') }}
|
|
|
- <em>{{ $t('点击上传') }}</em>
|
|
|
- </div>
|
|
|
- <div class="el-upload__tip" slot="tip">
|
|
|
- <!--<el-checkbox v-model="upload.updateSupport" />是否更新已经存在的用户数据-->
|
|
|
- <el-link type="info" style="font-size:12px" @click="importTemplate">{{ $t('下载模板') }}</el-link>
|
|
|
- </div>
|
|
|
- <form ref="downloadFileForm" :action="upload.downloadAction" target="FORMSUBMIT">
|
|
|
- <input name="type" :value="upload.type" hidden />
|
|
|
- </form>
|
|
|
- <div class="el-upload__tip" style="color:red" slot="tip">{{ $t('提示:仅允许导入“xls”或“xlsx”格式文件!') }}</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>
|
|
|
+ <!-- 用户导入对话框 -->
|
|
|
+ <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">
|
|
|
+ {{ $t('将文件拖到此处,或') }}
|
|
|
+ <em>{{ $t('点击上传') }}</em>
|
|
|
+ </div>
|
|
|
+ <div class="el-upload__tip" slot="tip">
|
|
|
+ <!--<el-checkbox v-model="upload.updateSupport" />是否更新已经存在的用户数据-->
|
|
|
+ <el-link type="info" style="font-size:12px" @click="importTemplate">{{ $t('下载模板') }}</el-link>
|
|
|
+ </div>
|
|
|
+ <form ref="downloadFileForm" :action="upload.downloadAction" target="FORMSUBMIT">
|
|
|
+ <input name="type" :value="upload.type" hidden/>
|
|
|
+ </form>
|
|
|
+ <div class="el-upload__tip" style="color:red" slot="tip">{{ $t('提示:仅允许导入“xls”或“xlsx”格式文件!') }}</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>
|
|
|
|
|
|
<el-dialog :close-on-click-modal="false" v-dialogDrag :title="doc.title" :visible.sync="doc.open" width="1000px"
|
|
|
append-to-body>
|
|
|
@@ -237,16 +198,16 @@
|
|
|
</div>
|
|
|
</el-upload>
|
|
|
<el-table :data="doc.commonfileList" border>
|
|
|
- <el-table-column :label="$t('文件名')" align="center" prop="fileName" :show-overflow-tooltip="true">
|
|
|
+ <el-table-column :label="$t('文件名')" align="center" prop="fileName">
|
|
|
<template slot-scope="scope">
|
|
|
<a class="link-type" @click="handleDownload(scope.row)">
|
|
|
<span>{{ scope.row.fileName }}</span>
|
|
|
</a>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <!-- <el-table-column :label="$t('大小(Kb)')" align="center" prop="fileSize" :show-overflow-tooltip="true"-->
|
|
|
+ <!-- <el-table-column :label="$t('大小(Kb)')" align="center" prop="fileSize"-->
|
|
|
<!-- width="80"/>-->
|
|
|
- <!-- <el-table-column :label="$t('上传人')" align="center" prop="creator" :show-overflow-tooltip="true" width="120"/>-->
|
|
|
+ <!-- <el-table-column :label="$t('上传人')" align="center" prop="creator" width="120"/>-->
|
|
|
<el-table-column :label="$t('操作')" align="center" width="220" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
@@ -300,17 +261,16 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { listFlPlan, getFlPlan, delFlPlan, addFlPlan, updateFlPlan, exportFlPlan, importTemplate} from "@/api/training/bccnew/flPlan";
|
|
|
-import { treeselect } from "@/api/system/dept";
|
|
|
-import { getToken } from "@/utils/auth";
|
|
|
+import {addFlPlan, delFlPlan, exportFlPlan, getFlPlan, listFlPlan, updateFlPlan} from "@/api/training/bccnew/flPlan";
|
|
|
+import {treeselect} from "@/api/system/dept";
|
|
|
+import {getToken} from "@/utils/auth";
|
|
|
import Treeselect from "@riophae/vue-treeselect";
|
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
-import Editor from '@/components/Editor/index.vue';
|
|
|
import {getFirstPlanTmpl, updateFirstPlanTmpl} from "@/api/training/bccnew/firstPlanTmpl";
|
|
|
|
|
|
export default {
|
|
|
name: "FlPlan",
|
|
|
- components: { Treeselect },
|
|
|
+ components: {Treeselect},
|
|
|
// components: { Editor },
|
|
|
data() {
|
|
|
return {
|
|
|
@@ -368,27 +328,27 @@ export default {
|
|
|
title: "",
|
|
|
// 部门树选项
|
|
|
deptOptions: undefined,
|
|
|
- clientHeight:300,
|
|
|
+ clientHeight: 300,
|
|
|
// 是否显示弹出层
|
|
|
open: false,
|
|
|
- // 用户导入参数
|
|
|
- upload: {
|
|
|
- downloadAction: process.env.VUE_APP_BASE_API + '/common/template',
|
|
|
- //下载模板类型
|
|
|
- type: "flPlanTmpl",
|
|
|
- // 是否显示弹出层(用户导入)
|
|
|
- open: false,
|
|
|
- // 弹出层标题(用户导入)
|
|
|
- title: "",
|
|
|
- // 是否禁用上传
|
|
|
- isUploading: false,
|
|
|
- // 是否更新已经存在的用户数据
|
|
|
- updateSupport: 0,
|
|
|
- // 设置上传的请求头部
|
|
|
- headers: { Authorization: "Bearer " + getToken() },
|
|
|
- // 上传的地址
|
|
|
- url: process.env.VUE_APP_BASE_API + "/training/flPlan/importData"
|
|
|
- },
|
|
|
+ // 用户导入参数
|
|
|
+ upload: {
|
|
|
+ downloadAction: process.env.VUE_APP_BASE_API + '/common/template',
|
|
|
+ //下载模板类型
|
|
|
+ type: "flPlanTmpl",
|
|
|
+ // 是否显示弹出层(用户导入)
|
|
|
+ open: false,
|
|
|
+ // 弹出层标题(用户导入)
|
|
|
+ title: "",
|
|
|
+ // 是否禁用上传
|
|
|
+ isUploading: false,
|
|
|
+ // 是否更新已经存在的用户数据
|
|
|
+ updateSupport: 0,
|
|
|
+ // 设置上传的请求头部
|
|
|
+ headers: {Authorization: "Bearer " + getToken()},
|
|
|
+ // 上传的地址
|
|
|
+ url: process.env.VUE_APP_BASE_API + "/training/flPlan/importData"
|
|
|
+ },
|
|
|
// 查询参数
|
|
|
queryParams: {
|
|
|
pageNum: 1,
|
|
|
@@ -413,21 +373,20 @@ export default {
|
|
|
// 表单参数
|
|
|
form: {},
|
|
|
// 表单校验
|
|
|
- rules: {
|
|
|
- }
|
|
|
+ rules: {}
|
|
|
};
|
|
|
},
|
|
|
watch: {
|
|
|
- // 根据名称筛选部门树
|
|
|
- deptName(val) {
|
|
|
- this.$refs.tree.filter(val);
|
|
|
- }
|
|
|
- },
|
|
|
+ // 根据名称筛选部门树
|
|
|
+ deptName(val) {
|
|
|
+ this.$refs.tree.filter(val);
|
|
|
+ }
|
|
|
+ },
|
|
|
created() {
|
|
|
- //设置表格高度对应屏幕高度
|
|
|
- this.$nextTick(() => {
|
|
|
- this.clientHeight = document.body.clientHeight -250
|
|
|
- })
|
|
|
+ //设置表格高度对应屏幕高度
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.clientHeight = document.body.clientHeight - 250
|
|
|
+ })
|
|
|
this.getList();
|
|
|
this.getTreeselect();
|
|
|
},
|
|
|
@@ -441,7 +400,7 @@ export default {
|
|
|
if (res.data.fileUrl != null)
|
|
|
this.doc.commonfileList.push({fileUrl: res.data.fileUrl, fileName: res.data.fileName, id: res.data.id})
|
|
|
})
|
|
|
- this.$nextTick(()=>{
|
|
|
+ this.$nextTick(() => {
|
|
|
this.$refs.doc.clearFiles();
|
|
|
})
|
|
|
},
|
|
|
@@ -500,17 +459,17 @@ export default {
|
|
|
getList() {
|
|
|
this.loading = true;
|
|
|
listFlPlan(this.queryParams).then(response => {
|
|
|
- this.flPlanList = response.rows;
|
|
|
- this.total = response.total;
|
|
|
+ this.flPlanList = response.data;
|
|
|
+ this.total = 0;
|
|
|
this.loading = false;
|
|
|
});
|
|
|
},
|
|
|
- /** 查询部门下拉树结构 */
|
|
|
- getTreeselect() {
|
|
|
- treeselect().then(response => {
|
|
|
- this.deptOptions = response.data;
|
|
|
- });
|
|
|
- },
|
|
|
+ /** 查询部门下拉树结构 */
|
|
|
+ getTreeselect() {
|
|
|
+ treeselect().then(response => {
|
|
|
+ this.deptOptions = response.data;
|
|
|
+ });
|
|
|
+ },
|
|
|
// 取消按钮
|
|
|
cancel() {
|
|
|
this.open = false;
|
|
|
@@ -553,7 +512,7 @@ export default {
|
|
|
// 多选框选中数据
|
|
|
handleSelectionChange(selection) {
|
|
|
this.ids = selection.map(item => item.id)
|
|
|
- this.single = selection.length!==1
|
|
|
+ this.single = selection.length !== 1
|
|
|
this.multiple = !selection.length
|
|
|
},
|
|
|
/** 新增按钮操作 */
|
|
|
@@ -596,54 +555,89 @@ export default {
|
|
|
handleDelete(row) {
|
|
|
const ids = row.id || this.ids;
|
|
|
this.$confirm('是否确认删除?', "警告", {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning"
|
|
|
- }).then(function() {
|
|
|
- return delFlPlan(ids);
|
|
|
- }).then(() => {
|
|
|
- this.getList();
|
|
|
- this.msgSuccess("删除成功");
|
|
|
- })
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ }).then(function () {
|
|
|
+ return delFlPlan(ids);
|
|
|
+ }).then(() => {
|
|
|
+ this.getList();
|
|
|
+ this.msgSuccess("删除成功");
|
|
|
+ })
|
|
|
},
|
|
|
/** 导出按钮操作 */
|
|
|
handleExport() {
|
|
|
const queryParams = this.queryParams;
|
|
|
this.$confirm('是否确认导出所有分离培训模版数据项?', "警告", {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning"
|
|
|
- }).then(function() {
|
|
|
- return exportFlPlan(queryParams);
|
|
|
- }).then(response => {
|
|
|
- this.download(response.msg);
|
|
|
- })
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ }).then(function () {
|
|
|
+ return exportFlPlan(queryParams);
|
|
|
+ }).then(response => {
|
|
|
+ this.download(response.msg);
|
|
|
+ })
|
|
|
},
|
|
|
- /** 导入按钮操作 */
|
|
|
- handleImport() {
|
|
|
- this.upload.title = "用户导入";
|
|
|
- this.upload.open = true;
|
|
|
- },
|
|
|
- /** 下载模板操作 */
|
|
|
- importTemplate() {
|
|
|
- this.$refs['downloadFileForm'].submit()
|
|
|
- },
|
|
|
- // 文件上传中处理
|
|
|
- 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(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
|
|
|
- this.getList();
|
|
|
- },
|
|
|
- // 提交上传文件
|
|
|
- submitFileForm() {
|
|
|
- this.$refs.upload.submit();
|
|
|
+ /** 导入按钮操作 */
|
|
|
+ handleImport() {
|
|
|
+ this.upload.title = "用户导入";
|
|
|
+ this.upload.open = true;
|
|
|
+ },
|
|
|
+ /** 下载模板操作 */
|
|
|
+ importTemplate() {
|
|
|
+ this.$refs['downloadFileForm'].submit()
|
|
|
+ },
|
|
|
+ // 文件上传中处理
|
|
|
+ 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(response.msg, "导入结果", {dangerouslyUseHTMLString: true});
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ // 提交上传文件
|
|
|
+ submitFileForm() {
|
|
|
+ this.$refs.upload.submit();
|
|
|
+ },
|
|
|
+ //合并单元格
|
|
|
+ mergeMethod({row, column, rowIndex, columnIndex}) {
|
|
|
+ // console.log(row)
|
|
|
+ if ([1,2,5,6,7].includes(columnIndex)) {
|
|
|
+ const _row = this.setTable(this.flPlanList).merge[rowIndex];
|
|
|
+ const _col = _row > 0 ? 1 : 0;
|
|
|
+ return {
|
|
|
+ rowspan: _row,
|
|
|
+ colspan: _col
|
|
|
+ };
|
|
|
}
|
|
|
+ },
|
|
|
+ //单元格整理
|
|
|
+ setTable(tableData) {
|
|
|
+ // console.log(tableData)
|
|
|
+ let spanArr = [],
|
|
|
+ concat = 0;
|
|
|
+ tableData.forEach((item, index) => {
|
|
|
+ if (index === 0) {
|
|
|
+ spanArr.push(1);
|
|
|
+ } else {
|
|
|
+ if (item.topic === tableData[index - 1].topic) {
|
|
|
+ //第一列需合并相同内容的判断条件
|
|
|
+ spanArr[concat] += 1;
|
|
|
+ spanArr.push(0);
|
|
|
+ } else {
|
|
|
+ spanArr.push(1);
|
|
|
+ concat = index;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ return {
|
|
|
+ merge: spanArr
|
|
|
+ };
|
|
|
+ },
|
|
|
}
|
|
|
};
|
|
|
</script>
|