This commit is contained in:
linfso 2023-12-13 12:42:14 +08:00
parent 70d5aeb2fc
commit 5b315e5cf5
5 changed files with 749 additions and 131 deletions

View File

@ -6,13 +6,8 @@ ENV = 'development'
# 开发环境
#VUE_APP_BASE_API = '/dev-api'
VUE_APP_PDOMAIN = 'tanex56'
VUE_APP_BASE_API = 'http://api.emis.tanex56.com/api/bizsvr'
VUE_APP_WS_HTTP_API = 'http://api.emis.tanex56.com/api/imsvr'
VUE_APP_WS_SERVER = 'ws://api.emis.tanex56.com/'
VUE_APP_WS_APP_ID = '123756'
VUE_APP_WS_APP_SECRET = '123756'
VUE_APP_PDOMAIN = 'tanex56-oms'
VUE_APP_BASE_API = 'http://api.vip.tanex56.com/api/omssvr'
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true

View File

@ -5,5 +5,5 @@ VUE_APP_TITLE = 管理系统
ENV = 'production'
# 管理系统/生产环境
VUE_APP_PDOMAIN = 'tanex56'
VUE_APP_BASE_API = 'http://api.emis.tanex56.com/api/bizsvr'
VUE_APP_PDOMAIN = 'tanex56-oms'
VUE_APP_BASE_API = 'http://api.vip.tanex56.com/api/omssvr'

View File

@ -8,5 +8,5 @@ ENV = 'staging'
# 测试环境
VUE_APP_BASE_API = '/stage-api'
VUE_APP_PDOMAIN = 'tanex56'
VUE_APP_BASE_API = 'http://api.emis.tanex56.com/api/bizsvr'
VUE_APP_PDOMAIN = 'tanex56-oms'
VUE_APP_BASE_API = 'http://api.vip.tanex56.com/api/omssvr'

View File

@ -1,120 +0,0 @@
{
"name": "padm",
"version": "1.0.0",
"description": "业务管理系统",
"author": "padm",
"license": "MIT",
"scripts": {
"dev": "vue-cli-service serve",
"build:prod": "vue-cli-service build",
"build:stage": "vue-cli-service build --mode staging",
"electron:serve": "vue-cli-service electron:serve",
"electron:build": "vue-cli-service electron:build",
"electron:build:win32": "vue-cli-service electron:build --win --ia32",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"preview": "node build/index.js --preview",
"lint": "eslint --ext .js,.vue src"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"keywords": [
"vue",
"admin",
"dashboard",
"element-ui",
"boilerplate",
"admin-template",
"management-system"
],
"repository": {
"type": "git",
"url": "http://git.xdadan.com/smshen/DTMicroPlat.git"
},
"dependencies": {
"@riophae/vue-treeselect": "0.4.0",
"axios": "0.24.0",
"clipboard": "2.0.8",
"codemirror": "^6.0.1",
"core-js": "^3.19.1",
"echarts": "4.9.0",
"element-ui": "2.15.6",
"exceljs": "^4.3.0",
"file-saver": "^2.0.5",
"font-awesome": "^4.7.0",
"fuse.js": "6.4.3",
"highlight.js": "^9.18.5",
"html2canvas": "^1.4.1",
"jquery": "^3.6.1",
"js-base64": "^3.7.3",
"js-beautify": "1.13.0",
"js-cookie": "3.0.1",
"js-md5": "^0.7.3",
"jsbarcode": "^3.11.5",
"jsencrypt": "3.2.1",
"jsmind": "^0.4.11",
"lodash": "^4.17.21",
"luckyexcel": "^1.0.1",
"marked": "^4.3.0",
"moment": "^2.29.4",
"monaco-editor": "^0.34.1",
"mxgraph-js": "^1.0.1",
"nprogress": "0.2.0",
"qrcodejs2": "^0.0.2",
"quill": "1.3.7",
"require.js": "^1.0.0",
"save-svg-as-png": "^1.4.17",
"screenfull": "5.0.2",
"sortablejs": "1.10.2",
"vue": "2.6.12",
"vue-barcode": "^1.3.0",
"vue-clipboard2": "^0.3.3",
"vue-count-to": "1.0.13",
"vue-cropper": "0.5.5",
"vue-i18n": "^8.28.2",
"vue-meta": "2.4.0",
"vue-print-nb": "^1.7.5",
"vue-property-decorator": "^9.1.2",
"vue-router": "3.4.9",
"vuedraggable": "^2.24.3",
"vuex": "3.6.0",
"xlsx": "^0.17.5"
},
"devDependencies": {
"@vue/cli-plugin-babel": "4.4.6",
"@vue/cli-plugin-eslint": "4.4.6",
"@vue/cli-service": "4.4.6",
"babel-eslint": "10.1.0",
"babel-plugin-dynamic-import-node": "2.3.3",
"chalk": "4.1.0",
"compression-webpack-plugin": "5.0.2",
"connect": "3.6.6",
"eslint": "7.15.0",
"eslint-plugin-vue": "7.2.0",
"lint-staged": "10.5.3",
"runjs": "4.4.2",
"sass": "1.32.13",
"sass-loader": "10.1.1",
"script-ext-html-webpack-plugin": "2.1.5",
"script-loader": "^0.7.2",
"svg-sprite-loader": "5.1.1",
"vue-template-compiler": "2.6.12"
},
"engines": {
"node": ">=8.9",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}

View File

@ -0,0 +1,743 @@
<template>
<div class="app-container">
<el-row :gutter="20" type='flex'>
<el-col :span="4" :xs="4">
<div class="head-container">
<el-row :gutter="10">
<el-col :span="15" :xs="15">
<el-input
v-model="domainName"
placeholder="全球大区"
clearable
size="small"
prefix-icon="el-icon-search"
style="margin-bottom: 20px"
/>
</el-col>
<el-col :span="4" :xs="4">
<el-button
style="margin-left: 2px; width: 33px;height:33px;border:1px solid #eeeeee; padding: 0px;line-height:23px;text-align:center;border-radius:0px;margin-top:1px;"
circle
type="text"
size="medium"
icon="el-icon-plus"
:disabled="false"
@click="handleContinentAdd"
v-hasPermi="['emis:emisContinent:add']"
>
</el-button>
</el-col>
</el-row>
</div>
<div class="head-container">
<el-tree
:data="domainIdsTree"
:props="defaultProps"
:expand-on-click-node="false"
:filter-node-method="filterNode"
ref="tree"
default-expand-all
node-key="id"
highlight-current
@node-click="handleNodeClick"
/>
<!-- default-expand-all -->
<span slot-scope="{ node, data }" @mouseenter="mouseenter(data)" @mouseleave="mouseleave(data)" style="width:100%">
<template>
<!-- <svg-icon v-if="data.children != undefined" icon-class="category" style="width:13px;color: #909399;margin-right: 2px;"/> -->
<svg-icon icon-class="dict" style="width:13px;color: #505050;margin-right:2px;"/>
<span style="font-size:13px">{{ data.label }}</span>
<span v-show="data.show" style="margin-left: 10px;">
<el-button
style="margin-left: 2px; width: 19px; padding: 0px"
circle
type="text"
size="medium"
:disabled="false"
icon="el-icon-edit"
@click="() => handleUpdateDictType(data)"
>
</el-button>
<el-button
type="text"
circle
size="mini"
icon="el-icon-delete"
style="padding: 1px; width: 1px; margin-left: 5px"
@click="() => handleDeleteDictType(data)"
>
</el-button>
</span>
</template>
</span>
</el-tree>
</div>
</el-col>
<el-col :span="20" :xs="20" style="border-left:1px solid rgb(248 249 251);">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="" prop="name">
<el-input
v-model="queryParams.name"
placeholder="国家名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="" prop="nameEn">
<el-input
v-model="queryParams.nameEn"
placeholder="英文名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="" prop="code">
<el-input
v-model="queryParams.code"
placeholder="国家代码"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="" prop="twoCode">
<el-input
v-model="queryParams.twoCode"
placeholder="二字码"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="" prop="threeCode">
<el-input
v-model="queryParams.threeCode"
placeholder="三字码"
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="['emis:emisCountry: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="['emis:emisCountry: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="['emis:emisCountry:remove']"
>删除</el-button>
</el-col>
<!-- <el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['emis:emisCountry:export']"
>导出</el-button>
</el-col> -->
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="emisCountryList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="国家名称" align="left" prop="name" min-width="100">
<template slot-scope="scope">
<div class="link-type" @click="handleUpdate(scope.row)">{{scope.row.name}}</div>
</template>
</el-table-column>
<el-table-column label="英文名称" align="center" prop="nameEn" min-width="100" />
<el-table-column label="国家代码" align="center" prop="code" min-width="100" />
<el-table-column label="二字码" align="center" prop="twoCode" min-width="100" />
<el-table-column label="三字码" align="center" prop="threeCode" min-width="100" />
<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="['emis:emisCountry:edit']"
>修改</el-button>
<!--
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['emis:emisCountry:remove']"
>删除</el-button> -->
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page-sizes="[20,50,100,300,500,1000,2000,5000]"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
:page-size="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改国家对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" :close-on-click-modal="false" append-to-body>
<el-row :gutter="0">
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-col :span="24">
<el-form-item label="国家名称" prop="name">
<el-input v-model="form.name" placeholder="请输入国家名称" />
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="英文名称" prop="nameEn">
<el-input v-model="form.nameEn" placeholder="请输入英文名称" />
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="国家代码" prop="code">
<el-input v-model="form.code" placeholder="请输入国家代码" />
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="二字码" prop="twoCode">
<el-input v-model="form.twoCode" placeholder="请输入二字码" />
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="三字码" prop="threeCode">
<el-input v-model="form.threeCode" placeholder="请输入三字码" />
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="所属区域" prop="remark">
<el-select v-model="form.domainId" placeholder="所属区域" clearable filterable>
<el-option
v-for="item in continentIdsOptions"
v-bind:key="item.value"
v-bind:label="item.label"
v-bind:value="item.value"
/>
</el-select>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
</el-form-item>
</el-col>
<!--
<el-col :span="24" v-show="moreInputVisible" > </el-col>
<el-col :span="24">
<el-divider content-position="right" @click="handleShowMoreInput" >更多信息[+]</el-divider>
</el-col>
-->
</el-form>
</el-row>
<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="title" :visible.sync="openc" width="500px" :close-on-click-modal="false" append-to-body>
<el-row :gutter="0">
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-col :span="24">
<el-form-item label="洲名称" prop="name">
<el-input v-model="form.name" placeholder="请输入洲名称" />
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="英文名称" prop="nameEn">
<el-input v-model="form.nameEn" placeholder="请输入英文名称" />
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="洲代码" prop="code">
<el-input v-model="form.code" placeholder="请输入洲代码" />
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
</el-form-item>
</el-col>
<!--
<el-col :span="24" v-show="moreInputVisible" > </el-col>
<el-col :span="24">
<el-divider content-position="right" @click="handleShowMoreInput" >更多信息[+]</el-divider>
</el-col>
-->
</el-form>
</el-row>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitContinentForm">确 定</el-button>
<el-button @click="cancelContinent">取 消</el-button>
</div>
</el-dialog>
<el-dialog :title="titleForm" :visible.sync="openForm" width="500px" append-to-body>
<emisCountryForm :id="currentId" @on-changed="handleFormChanged" @on-cancel="cancelForm"></EmisCountryForm>
</el-dialog>
<el-dialog :title="titleView" :visible.sync="openView" width="60%" :close-on-click-modal="false" append-to-body>
<emisCountryView :id="id" ></EmisCountryView>
</el-dialog>
</el-col>
</el-row>
</div>
</template>
<script>
import { listEmisCountry, getEmisCountry, delEmisCountry, addEmisCountry, updateEmisCountry } from "@/api/emis/emisCountry";
import { listEmisContinent, getEmisContinent, delEmisContinent, addEmisContinent, updateEmisContinent } from "@/api/emis/emisContinent";
import elDateSimplePicker from '@/components/DatePickerAdv/elDateSimplePicker';
import emisCountryView from '@/views/emis/emisCountry/emisCountryView';
import emisCountryForm from '@/views/emis/emisCountry/emisCountryForm';
import emisContinentView from '@/views/emis/emisContinent/emisContinentView';
import emisContinentForm from '@/views/emis/emisContinent/emisContinentForm';
export default {
name: "emisCountry",
components: { elDateSimplePicker,emisCountryView,emisCountryForm,emisContinentView,emisContinentForm },
dicts: [
],
data() {
return {
domainName:"",
domainIdsTree:[],
domainIdsOptions:[],
domainIdsEditOptions:[],
domainIdMap: new Map(),
continentIdsOptions:[],
defaultProps: {
children: "children",
label: "label"
},
domainSelectList:[],
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 创建时间搜索
dateTimeRange:[],
// 总条数
total: 0,
// 国家表格数据
emisCountryList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
openc: false,
openForm: false,
titleForm: "",
titleEmisCountry: "",
openEmisCountry: false,
// 显示编辑框更多
moreInputVisible: false,
// 弹出展示层
id:null,
titleView:"",
openView: false,
// 删除标志(0代表存在时间范围
daterangeCreateTime: [],
// 删除标志(0代表存在时间范围
daterangeUpdateTime: [],
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 20,
name: null,
nameEn: null,
code: null,
twoCode: null,
threeCode: null,
remark: null,
delFlag: null,
},
// 表单参数
form: {},
// 表单校验
rules: {
id: [
{ required: true, message: "国家序号不能为空", trigger: "blur" }
],
}
};
},
created() {
this.getList();
this.getContinentList();
},
methods: {
/** 查询国家列表 */
getList() {
this.loading = true;
this.queryParams.params = {};
if (null != this.daterangeCreateTime && '' != this.daterangeCreateTime) {
this.queryParams.params["beginCreateTime"] = this.daterangeCreateTime[0];
this.queryParams.params["endCreateTime"] = this.daterangeCreateTime[1];
}
if (null != this.daterangeUpdateTime && '' != this.daterangeUpdateTime) {
this.queryParams.params["beginUpdateTime"] = this.daterangeUpdateTime[0];
this.queryParams.params["endUpdateTime"] = this.daterangeUpdateTime[1];
}
listEmisCountry(this.addDateRange(this.queryParams, this.dateTimeRange)).then(response => {
this.emisCountryList = response.rows;
this.total = response.total;
this.loading = false;
});
},
getContinentList() {
this.loading = true;
this.queryParams.params = {};
this.continentIdsOptions =[];
listEmisContinent(this.addDateRange(this.queryParams, this.dateTimeRange)).then(response => {
this.loading = false;
this.domainIdsTree = [];
var domainTree={"id":"","label":"所属大区","children":[]};
// domainTree.children.push({"id":"-1","label":"临时"});
//this.domainIdMap[-1]="临时";
var lastDomainId = -1;
response.rows.forEach(item =>{
var optItem={value:item.id,label:item.name};
this.continentIdsOptions.push(optItem)
var treeItem={"id":item.id,"label":item.name};
domainTree.children.push(treeItem);
lastDomainId = item.id;
});
var cacheDomainId = this.getCacheDomainId();
if (cacheDomainId == undefined || cacheDomainId== -1){
cacheDomainId = lastDomainId;
this.saveCacheDomainId(lastDomainId);
}
this.queryParams.continentId = cacheDomainId;
this.domainIdsTree.push(domainTree);
//this.getList();
});
},
mouseenter(data) {
this.$set(data, 'show', true)
},
mouseleave(data) {
this.$set(data, 'show', false)
},
// 节点单击事件
handleNodeClick(data) {
// if(data.id!="-1"){
this.queryParams.continentId = data.id;
this.form.continentId= data.id;
this.saveCacheDomainId(data.id);
// this.currentAppName=data.label;
this.handleQuery();
// }
},
/** 新增按钮操作 */
handleContinentAdd(row) {
this.reset();
this.openc = true;
this.title = "新增";
},
handleUpdateDictType(data) {
this.currentDictId = data.id || this.ids;
this.openDictType = true;
this.titleDictType = "修改区域";
},
handleDeleteDictType(data) {
console.log(data)
const dictIds = data.id || this.ids;
this.$modal.confirm('是否确认删除字典编号为"' + dictIds + '"的数据项?').then(function() {
return delEmisContinent(dictIds);
}).then(() => {
console.log("删除成功")
this.getContinentList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 提交按钮 */
submitContinentForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateEmisContinent(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.openc = false;
this.getContinentList();
});
} else {
addEmisContinent(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.openc = false;
this.getContinentList();
});
}
}
});
},
saveCacheDomainId(continentId){
var jObj = {
continentId: continentId
};
this.$cache.local.setJSON("continentId",jObj);
},
getCacheDomainId(){
try{
var domainJsonObj = this.$cache.local.getJSON("continentId");
if(domainJsonObj != undefined){
return domainJsonObj.continentId;
}else{
return -1;
}
}catch(e){
this.$cache.local.remove("continentId");
}
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 取消按钮
cancelContinent() {
this.openc = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
name: null,
nameEn: null,
code: null,
continentId: null,
twoCode: null,
threeCode: null,
remark: null,
tenantId: null,
delFlag: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: 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(row) {
this.reset();
this.open = true;
this.title = "新增";
// 子组件打开模式
// if(row != undefined){
// this.currentParentId = row.id
// }
// this.openEmisCountry = true;
// this.titleEmisCountry = "新增";
},
handleShowMoreInput(){
this.moreInputVisible = !this.moreInputVisible;
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getEmisCountry(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改";
});
// 子组件打开模式
// this.currentId= row.id || this.ids;
// this.openEmisCountry = true;
// this.titleEmisCountry = "修改";
},
handleView(row) {
this.id=row.id;
this.titleView="查看";
this.openView=true;
// this.router.push({ path: '/emis/emisCountry/viewDetail', query: { id: row.id }})
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateEmisCountry(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addEmisCountry(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
handleFormChanged(){
this.openForm = false;
this.getList();
},
cancelForm(){
this.openForm = false;
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除').then(function() {
return delEmisCountry(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
// this.download('emis/emisCountry/export', {
// ...this.queryParams
// }, `emisCountry_${new Date().getTime()}.xlsx`)
const loadingInstance = this.$loading({
text: '正在导出...'
})
var qParam = {...this.queryParams};
qParam.pageNum=1;
qParam.pageSize=5000;
listEmisCountry(this.addDateRange(qParam, this.dateTimeRange)).then(response => {
this.downloadLoading = false
if (response.code === 200) {
const curList = response.rows
import('@/vendor/Export2Excel').then(excel => {
const tHeader = ['国家序号','国家名称','英文名称','国家代码','所属洲id','二字码','三字码','备注','租户ID','删除标志(0代表存在','创建者','创建时间','更新者','更新时间',];
const filterVal = ['id','name','nameEn','code','continentId','twoCode','threeCode','remark','tenantId','delFlag','createBy','createTime','updateBy','updateTime',];
const data = this.formatJson(filterVal, curList, response.rows)
excel.export_json_to_excel({
header: tHeader,
data,
filename: '国家',
autoWidth: true
})
loadingInstance.close()
})
}
});
},
formatJson(filterVal, jsonData, resData) {
let index = 0
return jsonData.map(v => filterVal.map(j => {
if (j === 'index') {
return ++index
}
if (j === 'status') {
var statusStr='xxx'
if(v[j] == 10){
statusStr='xxx'
}
return statusStr;
}
return v[j]
}))
},
/** 列索引函数 */
getIndex($index) {
return (this.queryParams.pageNum - 1) * this.queryParams.pageSize + $index + 1
},
/** 时间搜索响应函数 */
dateTimeChange(value){
this.dateTimeRange=value;
},
}
};
</script>
<style scoped>
.el-divider{
margin-top: 0px;
background: 0 0;
border-top: 1px solid #E6EBF5;
}
.el-divider__text {
color: #0955ee;
cursor: pointer;
}
</style>