|
@@ -0,0 +1,711 @@
|
|
|
+<template>
|
|
|
+ <div class="history-warning">
|
|
|
+ <div class="form-wrapper">
|
|
|
+ <div class="search-wrapper">
|
|
|
+ <div class="search-item">
|
|
|
+ <span class="label">类型:</span>
|
|
|
+ <el-select
|
|
|
+ v-model="types"
|
|
|
+ placeholder="请选择"
|
|
|
+ clearable
|
|
|
+ style="width: 120px"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in typeList"
|
|
|
+ :key="item"
|
|
|
+ :label="item"
|
|
|
+ :value="item"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
+ <div class="search-item">
|
|
|
+ <span class="label">名称:</span>
|
|
|
+ <div class="search-content"></div>
|
|
|
+ <el-input
|
|
|
+ v-model="name"
|
|
|
+ placeholder="请输入..."
|
|
|
+ size="mini"
|
|
|
+ clearable
|
|
|
+ ></el-input>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="btns">
|
|
|
+ <el-button class="buttons" round size="mini" @click="getTableData"
|
|
|
+ >查询</el-button
|
|
|
+ >
|
|
|
+ <el-button size="mini" class="buttons" round @click="getExcelTemplate"
|
|
|
+ >获取模板</el-button
|
|
|
+ >
|
|
|
+ <el-upload
|
|
|
+ style="margin: 0 12px"
|
|
|
+ :action="`${$store.state.baseURL}/alarmplan/import`"
|
|
|
+ :show-file-list="false"
|
|
|
+ :on-success="handleSuccess"
|
|
|
+ :on-error="handleError"
|
|
|
+ >
|
|
|
+ <el-button class="buttons" size="mini" round>导入</el-button>
|
|
|
+ </el-upload>
|
|
|
+ <el-button class="buttons" round size="mini" @click="addEarly"
|
|
|
+ >新增</el-button
|
|
|
+ >
|
|
|
+ <el-button
|
|
|
+ class="buttons"
|
|
|
+ round
|
|
|
+ size="mini"
|
|
|
+ @click="deleteItem"
|
|
|
+ :disabled="!deleteSelectItem?.length"
|
|
|
+ >批量删除</el-button
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="table-wrapper">
|
|
|
+ <div class="leftContent" :data-type="$store.state.moreSty">
|
|
|
+ <span>预警排查方案</span>
|
|
|
+ </div>
|
|
|
+ <!-- :span-method="objectSpanMethod" -->
|
|
|
+ <el-table
|
|
|
+ size="mini"
|
|
|
+ :data="tableData"
|
|
|
+ style="width: 100%; height: calc(100% - 35px - 55px)"
|
|
|
+ @selection-change="handleSelectionChange"
|
|
|
+ stripe
|
|
|
+ border
|
|
|
+ >
|
|
|
+ <el-table-column type="selection" width="55" align="center" />
|
|
|
+ <el-table-column
|
|
|
+ label="类型"
|
|
|
+ prop="types"
|
|
|
+ align="center"
|
|
|
+ width="120px"
|
|
|
+ show-overflow-tooltip
|
|
|
+ ></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ label="名称"
|
|
|
+ prop="name"
|
|
|
+ align="center"
|
|
|
+ width="200px"
|
|
|
+ show-overflow-tooltip
|
|
|
+ ></el-table-column>
|
|
|
+ <!-- <el-table-column
|
|
|
+ label="编号"
|
|
|
+ prop="id"
|
|
|
+ align="center"
|
|
|
+ width="80px"
|
|
|
+ show-overflow-tooltip
|
|
|
+ ></el-table-column> -->
|
|
|
+
|
|
|
+ <el-table-column
|
|
|
+ label="排查步骤"
|
|
|
+ prop="troubleMethod"
|
|
|
+ align="left"
|
|
|
+ show-overflow-tooltip
|
|
|
+ >
|
|
|
+ <template #default="scope">
|
|
|
+ <template v-if="Array.isArray(scope.row.troubleMethod)">
|
|
|
+ <p v-for="(item, index) in scope.row.troubleMethod" :key="index">
|
|
|
+ {{ index + 1 }}. {{ item }}
|
|
|
+ </p>
|
|
|
+ </template>
|
|
|
+ <p v-else>
|
|
|
+ {{ scope.row.troubleMethod }}
|
|
|
+ </p>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ label="检修方案"
|
|
|
+ prop="processMethod"
|
|
|
+ align="left"
|
|
|
+ show-overflow-tooltip
|
|
|
+ >
|
|
|
+ <template #default="scope">
|
|
|
+ <template v-if="Array.isArray(scope.row.processMethod)">
|
|
|
+ <p v-for="(item, index) in scope.row.processMethod" :key="index">
|
|
|
+ {{ index + 1 }}. {{ item }}
|
|
|
+ </p>
|
|
|
+ </template>
|
|
|
+ <p v-else>
|
|
|
+ {{ scope.row.processMethod }}
|
|
|
+ </p>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ label="所需工具"
|
|
|
+ prop="tools"
|
|
|
+ align="left"
|
|
|
+ width="120px"
|
|
|
+ show-overflow-tooltip
|
|
|
+ >
|
|
|
+ <template #default="scope">
|
|
|
+ <template v-if="Array.isArray(scope.row.tools)">
|
|
|
+ <p v-for="(item, index) in scope.row.tools" :key="index">
|
|
|
+ {{ index + 1 }}. {{ item }}
|
|
|
+ </p>
|
|
|
+ </template>
|
|
|
+ <p v-else>
|
|
|
+ {{ scope.row.tools }}
|
|
|
+ </p>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ label="备品备件"
|
|
|
+ prop="spareParts"
|
|
|
+ align="left"
|
|
|
+ width="120px"
|
|
|
+ show-overflow-tooltip
|
|
|
+ >
|
|
|
+ <template #default="scope">
|
|
|
+ <template v-if="Array.isArray(scope.row.spareParts)">
|
|
|
+ <p v-for="(item, index) in scope.row.spareParts" :key="index">
|
|
|
+ {{ index + 1 }}. {{ item }}
|
|
|
+ </p>
|
|
|
+ </template>
|
|
|
+ <p v-else>
|
|
|
+ {{ scope.row.spareParts }}
|
|
|
+ </p>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="操作" width="80px" align="center">
|
|
|
+ <template #default="scope">
|
|
|
+ <el-button type="primary" size="small" @click="editItem(scope.row)">
|
|
|
+ <span style="color: #fff">编辑</span>
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ <div class="pagination-wrapper" v-if="false">
|
|
|
+ <el-pagination
|
|
|
+ layout="total, sizes, prev, pager, next"
|
|
|
+ :current-page="query.page"
|
|
|
+ :page-size="query.limit"
|
|
|
+ :page-sizes="[21, 100, 500, 1000]"
|
|
|
+ :total="query.pageTotal"
|
|
|
+ @size-change="
|
|
|
+ (value) => {
|
|
|
+ query.page = 1;
|
|
|
+ query.limit = value;
|
|
|
+ getAlarmHistoryt();
|
|
|
+ }
|
|
|
+ "
|
|
|
+ @current-change="handlePageChange"
|
|
|
+ ></el-pagination>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <el-dialog v-model="dialogVisible" width="40%" @closed="resetForm">
|
|
|
+ <el-form
|
|
|
+ :model="selectItem"
|
|
|
+ :rules="rules"
|
|
|
+ inline
|
|
|
+ label-width="80px"
|
|
|
+ ref="ruleFormRef"
|
|
|
+ >
|
|
|
+ <el-form-item label="类型" prop="types">
|
|
|
+ <el-select
|
|
|
+ v-model="selectItem.types"
|
|
|
+ placeholder="请选择"
|
|
|
+ style="width: 120px"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in typeList"
|
|
|
+ :key="item"
|
|
|
+ :label="item"
|
|
|
+ :value="item"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="名称" prop="name">
|
|
|
+ <el-input
|
|
|
+ v-model="selectItem.name"
|
|
|
+ style="width: 200px"
|
|
|
+ autosize
|
|
|
+ type="textarea"
|
|
|
+ placeholder="请输入"
|
|
|
+ resize="none"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="排查步骤">
|
|
|
+ <el-input
|
|
|
+ v-model="selectItem.troubleMethod"
|
|
|
+ style="width: 200px"
|
|
|
+ autosize
|
|
|
+ type="textarea"
|
|
|
+ placeholder="请输入"
|
|
|
+ resize="none"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="检修方案">
|
|
|
+ <el-input
|
|
|
+ v-model="selectItem.processMethod"
|
|
|
+ style="width: 200px"
|
|
|
+ autosize
|
|
|
+ type="textarea"
|
|
|
+ placeholder="请输入"
|
|
|
+ resize="none"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="所需工具">
|
|
|
+ <el-input
|
|
|
+ v-model="selectItem.tools"
|
|
|
+ style="width: 200px"
|
|
|
+ autosize
|
|
|
+ type="textarea"
|
|
|
+ placeholder="请输入"
|
|
|
+ resize="none"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="备品备件">
|
|
|
+ <el-input
|
|
|
+ v-model="selectItem.spareParts"
|
|
|
+ style="width: 200px"
|
|
|
+ autosize
|
|
|
+ type="textarea"
|
|
|
+ placeholder="请输入"
|
|
|
+ resize="none"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <template #footer>
|
|
|
+ <span class="footerButton">
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ class="buttons"
|
|
|
+ round
|
|
|
+ @click="editVisible = false"
|
|
|
+ >取 消</el-button
|
|
|
+ >
|
|
|
+ <el-button size="mini" class="buttons" round @click="save"
|
|
|
+ >确 定</el-button
|
|
|
+ >
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import {
|
|
|
+ getAlarmMap,
|
|
|
+ getAlarmTypeList,
|
|
|
+ addAlarmItem,
|
|
|
+ deleteAlarmItem,
|
|
|
+ getAlarmExcelTemplate,
|
|
|
+} from "@/api/zhbj/index.js";
|
|
|
+import { ElMessageBox } from "element-plus";
|
|
|
+export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ // theme: false,
|
|
|
+ types: "",
|
|
|
+ typeList: [],
|
|
|
+ name: "",
|
|
|
+ partRowSpans: {
|
|
|
+ 传送链: { start: 0, count: 1 },
|
|
|
+ 机舱: { start: 1, count: 1 },
|
|
|
+ },
|
|
|
+ tableData: [
|
|
|
+ {
|
|
|
+ id: "0002",
|
|
|
+ types: "传送链",
|
|
|
+ troubleMethod: [
|
|
|
+ "检查主轴是否有断裂或磨损。 ",
|
|
|
+ "检查联轴器是否有断裂或磨损。 ",
|
|
|
+ "观察传动系统是否有异常声音或卡滞现象。",
|
|
|
+ ],
|
|
|
+ processMethod: ["更换断裂的主轴或联轴器。 ", "维修磨损的部件。"],
|
|
|
+ tools: ["望远镜 ", "扳手 ", "螺丝刀"],
|
|
|
+ spareParts: ["主轴 ", "联轴器"],
|
|
|
+ name: "断轴或联轴打滑",
|
|
|
+ part: "传送链",
|
|
|
+ rowIndex: 0,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "0001",
|
|
|
+ types: "机舱",
|
|
|
+ troubleMethod: [
|
|
|
+ "检查偏航电机运行是否正常,是否有异响或卡滞。 ",
|
|
|
+ "检查偏航齿轮箱油位是否正常,是否有泄漏。 ",
|
|
|
+ "检查偏航液压系统油位是否正常,是否有泄漏。 ",
|
|
|
+ "检查偏航传感器是否正常工作,是否有故障。 ",
|
|
|
+ "观察偏航过程中是否有异常声音或卡滞现象。",
|
|
|
+ ],
|
|
|
+ processMethod: [
|
|
|
+ "更换故障的偏航电机。 ",
|
|
|
+ "更换损坏的偏航齿轮箱。 ",
|
|
|
+ "维修或更换泄漏的偏航液压系统。 ",
|
|
|
+ "更换故障的偏航传感器。",
|
|
|
+ ],
|
|
|
+ tools: ["兆欧表 ", "温度计 ", "油位尺 ", "扳手 ", "螺丝刀"],
|
|
|
+ spareParts: ["偏航电机 ", "偏航齿轮箱 ", "偏航液压泵 ", "偏航传感器"],
|
|
|
+ name: "风机偏航过程震动",
|
|
|
+ part: "机舱",
|
|
|
+ rowIndex: 1,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ query: {
|
|
|
+ page: 1,
|
|
|
+ limit: 21,
|
|
|
+ pageTotal: null,
|
|
|
+ },
|
|
|
+ selectItem: {
|
|
|
+ id: "",
|
|
|
+ types: "",
|
|
|
+ name: "",
|
|
|
+ troubleMethod: "",
|
|
|
+ processMethod: "",
|
|
|
+ tools: "",
|
|
|
+ spareParts: "",
|
|
|
+ },
|
|
|
+ deleteSelectItem: [],
|
|
|
+ rules: {
|
|
|
+ types: [
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ message: "类型不可为空",
|
|
|
+ trigger: "blur",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ name: [
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ message: "名称不可为空",
|
|
|
+ trigger: "blur",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ dialogVisible: false,
|
|
|
+ dialogFormData: {
|
|
|
+ metriccode: "",
|
|
|
+ },
|
|
|
+ };
|
|
|
+ },
|
|
|
+
|
|
|
+ created() {
|
|
|
+ this.init();
|
|
|
+ },
|
|
|
+
|
|
|
+ // watch: {
|
|
|
+ // "$store.state.theme"(newVal, oldVal) {
|
|
|
+ // this.theme = newVal
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+
|
|
|
+ methods: {
|
|
|
+ init() {
|
|
|
+ this.getTableData();
|
|
|
+ getAlarmTypeList().then((res) => {
|
|
|
+ this.typeList = res.data;
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
+ getTableData() {
|
|
|
+ let url = "";
|
|
|
+ let data = {};
|
|
|
+ let requestType = 0;
|
|
|
+ // if (!this.types && !this.name) {
|
|
|
+ // requestType = 1;
|
|
|
+ // url = `/alarmplan/queryAlarmPlanMap`;
|
|
|
+ // } else {
|
|
|
+ // requestType = 2;
|
|
|
+ // url = `/alarmplan/page`;
|
|
|
+ // data = {
|
|
|
+ // pageNum: 1,
|
|
|
+ // pageSize: 200,
|
|
|
+ // types: this.types || null,
|
|
|
+ // name: this.name,
|
|
|
+ // };
|
|
|
+ // }
|
|
|
+ url = `/alarmplan/page`;
|
|
|
+ data = {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 200,
|
|
|
+ types: this.types || null,
|
|
|
+ name: this.name,
|
|
|
+ };
|
|
|
+ getAlarmMap(url, data).then((res) => {
|
|
|
+ let partRowSpans = {};
|
|
|
+ let tableData = [];
|
|
|
+ let rowIndex = 0;
|
|
|
+ // let tableSourceData = requestType === 1 ? res.data : res.data.records;
|
|
|
+ let tableSourceData = res.data.records;
|
|
|
+ if (requestType !== 1) {
|
|
|
+ let tempObject = {};
|
|
|
+ tableSourceData.forEach((ele) => {
|
|
|
+ if (Array.isArray(tempObject?.[ele.types])) {
|
|
|
+ tempObject[ele.types].push(ele);
|
|
|
+ } else {
|
|
|
+ tempObject[ele.types] = [ele];
|
|
|
+ }
|
|
|
+ });
|
|
|
+ tableSourceData = tempObject;
|
|
|
+ }
|
|
|
+ Object.keys(tableSourceData).forEach((part) => {
|
|
|
+ const partData = tableSourceData[part];
|
|
|
+ partRowSpans[part] = {
|
|
|
+ start: rowIndex,
|
|
|
+ count: partData.length,
|
|
|
+ };
|
|
|
+ partData.forEach((item) => {
|
|
|
+ item.processMethod = this.splitStr(item.processMethod);
|
|
|
+ item.spareParts = this.splitStr(item.spareParts);
|
|
|
+ item.tools = this.splitStr(item.tools);
|
|
|
+ item.troubleMethod = this.splitStr(item.troubleMethod);
|
|
|
+ tableData.push({
|
|
|
+ ...item,
|
|
|
+ part,
|
|
|
+ rowIndex,
|
|
|
+ });
|
|
|
+ rowIndex++;
|
|
|
+ });
|
|
|
+ });
|
|
|
+ this.partRowSpans = partRowSpans;
|
|
|
+ this.tableData = tableData;
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
+ splitStr(str) {
|
|
|
+ if (/(\d+\.\s+)/.test(str)) {
|
|
|
+ return str
|
|
|
+ .split(/(\d+\.\s+)/)
|
|
|
+ .filter(Boolean)
|
|
|
+ .filter((_, index) => index % 2 !== 0);
|
|
|
+ }
|
|
|
+ return str;
|
|
|
+ },
|
|
|
+
|
|
|
+ objectSpanMethod({ row, column, rowIndex, columnIndex }) {
|
|
|
+ if (columnIndex === 0) {
|
|
|
+ // 合并第一列(部件)
|
|
|
+ const part = row.part;
|
|
|
+ const { start, count } = this.partRowSpans[part];
|
|
|
+ if (rowIndex === start) {
|
|
|
+ return {
|
|
|
+ rowspan: count,
|
|
|
+ colspan: 1,
|
|
|
+ };
|
|
|
+ } else {
|
|
|
+ return {
|
|
|
+ rowspan: 0,
|
|
|
+ colspan: 0,
|
|
|
+ };
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ addEarly() {
|
|
|
+ this.dialogVisible = true;
|
|
|
+ },
|
|
|
+
|
|
|
+ editItem(selectItem) {
|
|
|
+ this.selectItem = Object.assign({}, selectItem);
|
|
|
+ this.dialogVisible = true;
|
|
|
+ },
|
|
|
+
|
|
|
+ handleSelectionChange(deleteSelectItem) {
|
|
|
+ this.deleteSelectItem = deleteSelectItem;
|
|
|
+ },
|
|
|
+
|
|
|
+ deleteItem() {
|
|
|
+ ElMessageBox.confirm("确定要删除吗?", "提示", {
|
|
|
+ type: "warning",
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ let ids = [];
|
|
|
+ this.deleteSelectItem.forEach((ele) => {
|
|
|
+ ids.push(ele.id);
|
|
|
+ });
|
|
|
+ deleteAlarmItem({ id: ids.toString() }).then((res) => {
|
|
|
+ if (res.code === 200 && res.data) {
|
|
|
+ this.BASE.showMsg({
|
|
|
+ type: "success",
|
|
|
+ msg: "删除成功",
|
|
|
+ });
|
|
|
+ this.getTableData();
|
|
|
+ } else {
|
|
|
+ this.BASE.showMsg({
|
|
|
+ type: "error",
|
|
|
+ msg: "删除失败",
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .catch(() => {});
|
|
|
+ },
|
|
|
+
|
|
|
+ async save() {
|
|
|
+ if (!this.$refs.ruleFormRef) return;
|
|
|
+ await this.$refs.ruleFormRef.validate((valid, fields) => {
|
|
|
+ if (valid) {
|
|
|
+ let selectItem = Object.assign(this.selectItem);
|
|
|
+ for (let key in selectItem) {
|
|
|
+ if (/processMethod|spareParts|troubleMethod|tools/.test(key)) {
|
|
|
+ if (Array.isArray(selectItem[key])) {
|
|
|
+ let rinseStr = "";
|
|
|
+ selectItem[key].forEach((ele, index) => {
|
|
|
+ rinseStr += `${index + 1}. ${ele}`;
|
|
|
+ });
|
|
|
+ selectItem[key] = rinseStr;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ addAlarmItem(selectItem).then((res) => {
|
|
|
+ if (res.code === 200) {
|
|
|
+ this.BASE.showMsg({
|
|
|
+ type: "success",
|
|
|
+ msg: "提交成功",
|
|
|
+ });
|
|
|
+ this.dialogVisible = false;
|
|
|
+ this.getTableData();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
+ resetForm(clearSelectItem = true) {
|
|
|
+ this.$refs.ruleFormRef.resetFields();
|
|
|
+ if (clearSelectItem) {
|
|
|
+ this.selectItem = {
|
|
|
+ id: "",
|
|
|
+ types: "",
|
|
|
+ name: "",
|
|
|
+ troubleMethod: "",
|
|
|
+ processMethod: "",
|
|
|
+ tools: "",
|
|
|
+ spareParts: "",
|
|
|
+ };
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ getExcelTemplate() {
|
|
|
+ getAlarmExcelTemplate().then((res) => {
|
|
|
+ // 创建一个临时的URL来引用Blob对象
|
|
|
+ const url = window.URL.createObjectURL(
|
|
|
+ new Blob([res], {
|
|
|
+ type: "application/vnd.ms-excel",
|
|
|
+ })
|
|
|
+ );
|
|
|
+
|
|
|
+ // 创建一个隐藏的<a>元素
|
|
|
+ const a = document.createElement("a");
|
|
|
+ a.style.display = "none";
|
|
|
+ a.href = url;
|
|
|
+
|
|
|
+ // 设置文件名
|
|
|
+ const contentDisposition = res?.headers?.["content-disposition"];
|
|
|
+ let filename = "预警排查方案模板.xls"; // 默认文件名
|
|
|
+
|
|
|
+ a.download = filename; // 根据实际情况调整文件名
|
|
|
+
|
|
|
+ // 添加到DOM中
|
|
|
+ document.body.appendChild(a);
|
|
|
+
|
|
|
+ // 模拟点击
|
|
|
+ a.click();
|
|
|
+
|
|
|
+ // 清理
|
|
|
+ window.URL.revokeObjectURL(url);
|
|
|
+ document.body.removeChild(a);
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
+ handleSuccess(res) {
|
|
|
+ if (res.code === 200) {
|
|
|
+ this.BASE.showMsg({
|
|
|
+ type: "success",
|
|
|
+ msg: "导入成功",
|
|
|
+ });
|
|
|
+ this.getTableData();
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ handleError() {
|
|
|
+ this.BASE.showMsg({
|
|
|
+ type: "error",
|
|
|
+ msg: "导入失败",
|
|
|
+ });
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less" scoped>
|
|
|
+.history-warning {
|
|
|
+ height: calc(100% - 40px);
|
|
|
+ padding: 0 20px;
|
|
|
+ padding-bottom: 10px;
|
|
|
+ .form-wrapper ::v-deep {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ padding-top: 10px;
|
|
|
+ position: relative;
|
|
|
+ .search-wrapper {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ font-size: 14px;
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #b3b3b3;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ .search-item {
|
|
|
+ display: flex;
|
|
|
+ margin-right: 10px;
|
|
|
+ max-width: 450px;
|
|
|
+ align-items: center;
|
|
|
+ .label {
|
|
|
+ margin-right: 10px;
|
|
|
+ text-align: right;
|
|
|
+ white-space: nowrap;
|
|
|
+ // width: 60px;
|
|
|
+ }
|
|
|
+ .search-content {
|
|
|
+ flex: 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .btns {
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-end;
|
|
|
+ margin-right: 10px;
|
|
|
+ position: absolute;
|
|
|
+ right: 0;
|
|
|
+ // top: 53px;
|
|
|
+ top: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .buttons {
|
|
|
+ background-color: rgba(5, 187, 76, 0.2);
|
|
|
+ border: 1px solid #3b6c53;
|
|
|
+ color: #b3b3b3;
|
|
|
+ font-size: 14px;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ background-color: rgba(5, 187, 76, 0.5);
|
|
|
+ color: #ffffff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .table-wrapper {
|
|
|
+ height: calc(100% - 60px);
|
|
|
+ width: calc(100% - 20px);
|
|
|
+ .leftContent {
|
|
|
+ width: 242px;
|
|
|
+ height: 41px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ background: url("~@/assets/imgs/title_left_bg.png") no-repeat;
|
|
|
+
|
|
|
+ span {
|
|
|
+ font-size: 16px;
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #05bb4c;
|
|
|
+ margin-left: 25px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .pagination-wrapper :deep {
|
|
|
+ text-align: right;
|
|
|
+ margin-top: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|