|
@@ -0,0 +1,484 @@
|
|
|
|
+<template>
|
|
|
|
+ <div class="app-container">
|
|
|
|
+ <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
+ <el-form-item label="MOC NO." prop="mocNo">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.mocNo"
|
|
|
|
+ placeholder="请输入MOC NO."
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="T or P" prop="tOrP">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.tOrP"
|
|
|
|
+ placeholder="请输入T or P"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <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="['moc:moc:add']"
|
|
|
|
+ >新增
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
+ <el-button
|
|
|
|
+ type="success"
|
|
|
|
+ plain
|
|
|
|
+ icon="el-icon-edit"
|
|
|
|
+ size="mini"
|
|
|
|
+ :disabled="single"
|
|
|
|
+ @click="handleUpdate"
|
|
|
|
+ v-hasPermi="['moc:moc:edit']"
|
|
|
|
+ >修改
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
+ <el-button
|
|
|
|
+ type="danger"
|
|
|
|
+ plain
|
|
|
|
+ icon="el-icon-delete"
|
|
|
|
+ size="mini"
|
|
|
|
+ :disabled="multiple"
|
|
|
|
+ @click="handleDelete"
|
|
|
|
+ v-hasPermi="['moc:moc:remove']"
|
|
|
|
+ >删除
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
+ <el-button
|
|
|
|
+ type="warning"
|
|
|
|
+ plain
|
|
|
|
+ icon="el-icon-upload2"
|
|
|
|
+ size="mini"
|
|
|
|
+ @click="handleImport"
|
|
|
|
+ v-hasPermi="['moc:moc:add']"
|
|
|
|
+ >导入
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
+ <el-button
|
|
|
|
+ type="warning"
|
|
|
|
+ plain
|
|
|
|
+ icon="el-icon-download"
|
|
|
|
+ size="mini"
|
|
|
|
+ @click="handleExport"
|
|
|
|
+ v-hasPermi="['moc:moc:export']"
|
|
|
|
+ >导出
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
+ </el-row>
|
|
|
|
+
|
|
|
|
+ <el-table v-loading="loading" :data="mocList" @selection-change="handleSelectionChange" :height="clientHeight"
|
|
|
|
+ border>
|
|
|
|
+ <el-table-column type="selection" width="55" align="center"/>
|
|
|
|
+ <el-table-column label="MOC NO." align="center" prop="mocNo"/>
|
|
|
|
+ <el-table-column label="MOC Owner" align="center" prop="mocOwner"/>
|
|
|
|
+ <el-table-column label="Change Name" align="center" prop="changeName"/>
|
|
|
|
+ <el-table-column label="T or P" align="center" prop="tOrP"/>
|
|
|
|
+ <el-table-column label="Issue date" align="center" prop="issueDate" width="180">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{ parseTime(scope.row.issueDate, '{y}-{m}-{d}') }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="e-MOC status" align="center" prop="emocStatus"/>
|
|
|
|
+ <el-table-column label="Priority" align="center" prop="priority"/>
|
|
|
|
+ <el-table-column label="备注" align="center" prop="remarks"/>
|
|
|
|
+ <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="['moc:moc:edit']"
|
|
|
|
+ >修改
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ icon="el-icon-delete"
|
|
|
|
+ @click="handleDelete(scope.row)"
|
|
|
|
+ v-hasPermi="['moc:moc:remove']"
|
|
|
|
+ >删除
|
|
|
|
+ </el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table>
|
|
|
|
+
|
|
|
|
+ <pagination
|
|
|
|
+ v-show="total>0"
|
|
|
|
+ :total="total"
|
|
|
|
+ :page.sync="queryParams.pageNum"
|
|
|
|
+ :limit.sync="queryParams.pageSize"
|
|
|
|
+ @pagination="getList"
|
|
|
|
+ />
|
|
|
|
+
|
|
|
|
+ <!-- 添加或修改MOC清单对话框 -->
|
|
|
|
+ <el-dialog :title="title" :visible.sync="open" width="700px" append-to-body :close-on-click-modal="false">
|
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="140px">
|
|
|
|
+ <el-form-item label="MOC NO." prop="mocNo">
|
|
|
|
+ <el-input v-model="form.mocNo" placeholder="请输入MOC NO."/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="MOC Owner" prop="mocOwner">
|
|
|
|
+ <el-input v-model="form.mocOwner" placeholder="请输入MOC Owner"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="Change Name" prop="changeName">
|
|
|
|
+ <el-input v-model="form.changeName" type="textarea" placeholder="请输入内容"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="T or P" prop="tOrP">
|
|
|
|
+ <el-radio border v-model="form.tOrP" label="T" @input="tOrPChange">T</el-radio>
|
|
|
|
+ <el-radio border v-model="form.tOrP" label="P" @input="tOrPChange">P</el-radio>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="Issue date" prop="issueDate">
|
|
|
|
+ <el-date-picker clearable
|
|
|
|
+ v-model="form.issueDate"
|
|
|
|
+ type="date"
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
+ placeholder="请选择Issue date">
|
|
|
|
+ </el-date-picker>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="e-MOC status" prop="emocStatus">
|
|
|
|
+ <el-select v-model="form.emocStatus" clearable placeholder="请选择e-MOC status">
|
|
|
|
+ <el-option-group v-if="form.tOrP==='P'">
|
|
|
|
+ <el-option value="Draft" label="Draft"/>
|
|
|
|
+ <el-option value="Approved" label="Approved"/>
|
|
|
|
+ <el-option value="MC" label="MC"/>
|
|
|
|
+ <el-option value="Closed" label="Closed"/>
|
|
|
|
+ <el-option value="Reject" label="Reject"/>
|
|
|
|
+ </el-option-group>
|
|
|
|
+ <el-option-group v-if="form.tOrP==='T'">
|
|
|
|
+ <el-option value="Draft" label="Draft"/>
|
|
|
|
+ <el-option value="Approved" label="Approved"/>
|
|
|
|
+ <el-option value="MC of applying" label="MC of applying"/>
|
|
|
|
+ <el-option value="MC of emoval" label="MC of emoval"/>
|
|
|
|
+ <el-option value="Closed" label="Closed"/>
|
|
|
|
+ <el-option value="Reject" label="Reject"/>
|
|
|
|
+ </el-option-group>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="Priority" prop="priority">
|
|
|
|
+ <el-select v-model="form.priority" clearable placeholder="请选择Priority">
|
|
|
|
+ <el-option-group v-if="form.tOrP==='P'">
|
|
|
|
+ <el-option value="1" label="1"/>
|
|
|
|
+ <el-option value="2" label="2"/>
|
|
|
|
+ <el-option value="3" label="3"/>
|
|
|
|
+ <el-option value="check" label="check"/>
|
|
|
|
+ </el-option-group>
|
|
|
|
+ <el-option-group v-if="form.tOrP==='T'">
|
|
|
|
+ <el-option value="-" label="-"/>
|
|
|
|
+ </el-option-group>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="备注" prop="remarks">
|
|
|
|
+ <el-input v-model="form.remarks" placeholder="请输入备注"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </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 :close-on-click-modal="false" :title="upload.title" :visible.sync="upload.open" append-to-body
|
|
|
|
+ width="400px">
|
|
|
|
+ <el-upload
|
|
|
|
+ ref="upload"
|
|
|
|
+ :action="upload.url + '?updateSupport=' + upload.updateSupport"
|
|
|
|
+ :auto-upload="false"
|
|
|
|
+ :disabled="upload.isUploading"
|
|
|
|
+ :headers="upload.headers"
|
|
|
|
+ :limit="1"
|
|
|
|
+ :on-progress="handleFileUploadProgress"
|
|
|
|
+ :on-success="handleFileSuccess"
|
|
|
|
+ accept=".xlsx, .xls"
|
|
|
|
+ drag
|
|
|
|
+ >
|
|
|
|
+ <i class="el-icon-upload"></i>
|
|
|
|
+ <div class="el-upload__text">
|
|
|
|
+ 将文件拖到此处,或
|
|
|
|
+ <em>点击上传</em>
|
|
|
|
+ </div>
|
|
|
|
+ <div slot="tip" class="el-upload__tip">
|
|
|
|
+ <!-- <el-checkbox v-model="upload.updateSupport"/>-->
|
|
|
|
+ <!-- 是否更新已经存在的用户数据-->
|
|
|
|
+ <el-link style="font-size:12px" type="info" @click="importTemplate">下载模板</el-link>
|
|
|
|
+ </div>
|
|
|
|
+ <div slot="tip" class="el-upload__tip" style="color:red">提示:仅允许导入“xls”或“xlsx”格式文件!</div>
|
|
|
|
+ </el-upload>
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
+ <el-button v-loading.fullscreen.lock="fullscreenLoading" type="primary" @click="submitFileForm">确 定
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button @click="upload.open = false">取 消</el-button>
|
|
|
|
+ </div>
|
|
|
|
+ </el-dialog>
|
|
|
|
+ <form ref="downloadFileForm" :action="upload.downloadAction" target="FORMSUBMIT">
|
|
|
|
+ <input :value="upload.type" hidden name="type"/>
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import {addMoc, delMoc, getMoc, listMoc, updateMoc} from "@/api/moc/moc";
|
|
|
|
+import {getToken} from "@/utils/auth";
|
|
|
|
+
|
|
|
|
+export default {
|
|
|
|
+ name: "Moc",
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+ // 批量导入全屏遮罩
|
|
|
|
+ fullscreenLoading: false,
|
|
|
|
+ // 用户导入参数
|
|
|
|
+ upload: {
|
|
|
|
+ downloadAction: process.env.VUE_APP_BASE_API + '/common/template',
|
|
|
|
+ type: "mocmoc",
|
|
|
|
+ // 是否显示弹出层(用户导入)
|
|
|
|
+ open: false,
|
|
|
|
+ // 弹出层标题(用户导入)
|
|
|
|
+ title: "",
|
|
|
|
+ // 是否禁用上传
|
|
|
|
+ isUploading: false,
|
|
|
|
+ // 是否更新已经存在的用户数据
|
|
|
|
+ updateSupport: 0,
|
|
|
|
+ // 设置上传的请求头部
|
|
|
|
+ headers: {Authorization: "Bearer " + getToken()},
|
|
|
|
+ // 上传的地址
|
|
|
|
+ url: process.env.VUE_APP_BASE_API + "/moc/moc/importData"
|
|
|
|
+ },
|
|
|
|
+ // 页面高度
|
|
|
|
+ clientHeight: 300,
|
|
|
|
+ // 遮罩层
|
|
|
|
+ loading: true,
|
|
|
|
+ // 选中数组
|
|
|
|
+ ids: [],
|
|
|
|
+ // 非单个禁用
|
|
|
|
+ single: true,
|
|
|
|
+ // 非多个禁用
|
|
|
|
+ multiple: true,
|
|
|
|
+ // 显示搜索条件
|
|
|
|
+ showSearch: false,
|
|
|
|
+ // 总条数
|
|
|
|
+ total: 0,
|
|
|
|
+ // MOC清单表格数据
|
|
|
|
+ mocList: [],
|
|
|
|
+ // 弹出层标题
|
|
|
|
+ title: "",
|
|
|
|
+ // 是否显示弹出层
|
|
|
|
+ open: false,
|
|
|
|
+ // 查询参数
|
|
|
|
+ queryParams: {
|
|
|
|
+ pageNum: 1,
|
|
|
|
+ pageSize: 20,
|
|
|
|
+ mocNo: null,
|
|
|
|
+ mocOwner: null,
|
|
|
|
+ changeName: null,
|
|
|
|
+ tOrP: null,
|
|
|
|
+ issueDate: null,
|
|
|
|
+ emocStatus: null,
|
|
|
|
+ priority: null,
|
|
|
|
+ remarks: null,
|
|
|
|
+ createrCode: null,
|
|
|
|
+ createdate: null,
|
|
|
|
+ updaterCode: null,
|
|
|
|
+ updatedate: null,
|
|
|
|
+ deptId: null
|
|
|
|
+ },
|
|
|
|
+ // 表单参数
|
|
|
|
+ form: {},
|
|
|
|
+ // 表单校验
|
|
|
|
+ rules: {
|
|
|
|
+ mocNo: [
|
|
|
|
+ {required: true, message: "MOC NO.不能为空", trigger: "blur"}
|
|
|
|
+ ],
|
|
|
|
+ mocOwner: [
|
|
|
|
+ {required: true, message: "mocOwner不能为空", trigger: "blur"}
|
|
|
|
+ ],
|
|
|
|
+ changeName: [
|
|
|
|
+ {required: true, message: "changeName不能为空", trigger: "blur"}
|
|
|
|
+ ],
|
|
|
|
+ tOrP: [
|
|
|
|
+ {required: true, message: "tOrP不能为空", trigger: "blur"}
|
|
|
|
+ ],
|
|
|
|
+ issueDate: [
|
|
|
|
+ {required: true, message: "issueDate不能为空", trigger: "blur"}
|
|
|
|
+ ],
|
|
|
|
+ emocStatus: [
|
|
|
|
+ {required: true, message: "emocStatus不能为空", trigger: "blur"}
|
|
|
|
+ ],
|
|
|
|
+ priority: [
|
|
|
|
+ {required: true, message: "priority不能为空", trigger: "blur"}
|
|
|
|
+ ],
|
|
|
|
+ }
|
|
|
|
+ };
|
|
|
|
+ },
|
|
|
|
+ created() {
|
|
|
|
+ this.getList();
|
|
|
|
+ //设置表格高度对应屏幕高度
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
+ this.clientHeight = (document.body.clientHeight - 80) * 0.8
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ tOrPChange(val) {
|
|
|
|
+ this.form.emocStatus = null;
|
|
|
|
+ this.form.priority = null;
|
|
|
|
+ },
|
|
|
|
+ /** 查询MOC清单列表 */
|
|
|
|
+ getList() {
|
|
|
|
+ this.loading = true;
|
|
|
|
+ listMoc(this.queryParams).then(response => {
|
|
|
|
+ this.mocList = response.rows;
|
|
|
|
+ this.total = response.total;
|
|
|
|
+ this.loading = false;
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ // 取消按钮
|
|
|
|
+ cancel() {
|
|
|
|
+ this.open = false;
|
|
|
|
+ this.reset();
|
|
|
|
+ },
|
|
|
|
+ // 表单重置
|
|
|
|
+ reset() {
|
|
|
|
+ this.form = {
|
|
|
|
+ id: null,
|
|
|
|
+ mocNo: null,
|
|
|
|
+ mocOwner: null,
|
|
|
|
+ changeName: null,
|
|
|
|
+ tOrP: null,
|
|
|
|
+ issueDate: null,
|
|
|
|
+ emocStatus: null,
|
|
|
|
+ priority: null,
|
|
|
|
+ remarks: null,
|
|
|
|
+ delFlag: null,
|
|
|
|
+ createrCode: null,
|
|
|
|
+ createdate: null,
|
|
|
|
+ updaterCode: null,
|
|
|
|
+ updatedate: null,
|
|
|
|
+ deptId: null
|
|
|
|
+ };
|
|
|
|
+ this.resetForm("form");
|
|
|
|
+ },
|
|
|
|
+ /** 搜索按钮操作 */
|
|
|
|
+ handleQuery() {
|
|
|
|
+ this.queryParams.pageNum = 1;
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ /** 重置按钮操作 */
|
|
|
|
+ resetQuery() {
|
|
|
|
+ this.resetForm("queryForm");
|
|
|
|
+ this.handleQuery();
|
|
|
|
+ },
|
|
|
|
+ // 多选框选中数据
|
|
|
|
+ handleSelectionChange(selection) {
|
|
|
|
+ this.ids = selection.map(item => item.id)
|
|
|
|
+ this.single = selection.length !== 1
|
|
|
|
+ this.multiple = !selection.length
|
|
|
|
+ },
|
|
|
|
+ /** 新增按钮操作 */
|
|
|
|
+ handleAdd() {
|
|
|
|
+ this.reset();
|
|
|
|
+ this.open = true;
|
|
|
|
+ this.title = "添加MOC清单";
|
|
|
|
+ },
|
|
|
|
+ /** 修改按钮操作 */
|
|
|
|
+ handleUpdate(row) {
|
|
|
|
+ this.reset();
|
|
|
|
+ const id = row.id || this.ids
|
|
|
|
+ getMoc(id).then(response => {
|
|
|
|
+ this.form = response.data;
|
|
|
|
+ this.open = true;
|
|
|
|
+ this.title = "修改MOC清单";
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ /** 提交按钮 */
|
|
|
|
+ submitForm() {
|
|
|
|
+ this.$refs["form"].validate(valid => {
|
|
|
|
+ if (valid) {
|
|
|
|
+ if (this.form.id != null) {
|
|
|
|
+ updateMoc(this.form).then(response => {
|
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
|
+ this.open = false;
|
|
|
|
+ this.getList();
|
|
|
|
+ });
|
|
|
|
+ } else {
|
|
|
|
+ addMoc(this.form).then(response => {
|
|
|
|
+ this.$modal.msgSuccess("新增成功");
|
|
|
|
+ this.open = false;
|
|
|
|
+ this.getList();
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ /** 删除按钮操作 */
|
|
|
|
+ handleDelete(row) {
|
|
|
|
+ const ids = row.id || this.ids;
|
|
|
|
+ this.$modal.confirm('是否确认删除MOC清单编号为"' + ids + '"的数据项?').then(function () {
|
|
|
|
+ return delMoc(ids);
|
|
|
|
+ }).then(() => {
|
|
|
|
+ this.getList();
|
|
|
|
+ this.$modal.msgSuccess("删除成功");
|
|
|
|
+ }).catch(() => {
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ /** 导出按钮操作 */
|
|
|
|
+ handleExport() {
|
|
|
|
+ this.download('moc/moc/export', {
|
|
|
|
+ ...this.queryParams
|
|
|
|
+ }, `moc_${new Date().getTime()}.xlsx`)
|
|
|
|
+ },
|
|
|
|
+ /** 导入按钮操作 */
|
|
|
|
+ handleImport() {
|
|
|
|
+ this.upload.title = "用户导入";
|
|
|
|
+ this.upload.open = true;
|
|
|
|
+ },
|
|
|
|
+ // 提交上传文件
|
|
|
|
+ submitFileForm() {
|
|
|
|
+ this.$refs.upload.submit();
|
|
|
|
+ this.fullscreenLoading = true;
|
|
|
|
+ },
|
|
|
|
+ // 文件上传中处理
|
|
|
|
+ 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.fullscreenLoading = false;
|
|
|
|
+ if (response.data.length > 0) {
|
|
|
|
+ let failrow = ''
|
|
|
|
+ for (let i = 0; i < response.data.length; i++) {
|
|
|
|
+ failrow += response.data[i] + ','
|
|
|
|
+ }
|
|
|
|
+ this.$alert('导入成功条数:' + response.msg + '<br>' + '失败行数:' + failrow, '导入结果', {dangerouslyUseHTMLString: true});
|
|
|
|
+ } else {
|
|
|
|
+ this.$alert('导入成功条数:' + response.msg, '导入结果', {dangerouslyUseHTMLString: true});
|
|
|
|
+ }
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ /** 下载模板操作 */
|
|
|
|
+ importTemplate() {
|
|
|
|
+ this.$refs['downloadFileForm'].submit()
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+</script>
|