emis-frontend/src/views/emis/emisTransLine/index.vue

753 lines
24 KiB
Vue
Raw Normal View History

2023-12-14 13:11:58 +00:00
<template>
<div class="app-container">
2023-12-26 14:01:40 +00:00
<el-row :gutter="20" type='flex'>
<el-col :span="5" :xs="5">
<div class="head-container">
<el-row :gutter="10">
<el-col :span="15" :xs="15">
<el-input
v-model="countryName"
placeholder="国家名称"
clearable
size="small"
prefix-icon="el-icon-search"
style="margin-bottom: 20px"
/>
</el-col>
</el-row>
</div>
<div class="head-container">
<el-tree
ref="tree"
class="filter-tree tree"
:data="countryTree"
:props="defaultProps"
:expand-on-click-node="false"
:filter-node-method="filterNode"
node-key="id"
highlight-current
default-expand-all
@node-click="handleNodeClick"
>
</el-tree>
</div>
</el-col>
<el-col :span="20" :xs="20">
2023-12-14 13:11:58 +00:00
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
2024-01-12 08:58:04 +00:00
2023-12-26 14:01:40 +00:00
<el-form-item label="" prop="lineName">
2023-12-14 13:11:58 +00:00
<el-input
2023-12-26 14:01:40 +00:00
v-model="queryParams.lineName"
placeholder="线路名称"
2023-12-14 13:11:58 +00:00
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
2023-12-26 14:01:40 +00:00
<el-form-item label="" prop="country">
2023-12-14 13:11:58 +00:00
<el-input
2023-12-26 14:01:40 +00:00
v-model="queryParams.country"
placeholder="目的国家"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
2024-01-12 08:58:04 +00:00
<!-- <el-form-item label="" prop="applyScope">
2023-12-26 14:01:40 +00:00
<el-input
v-model="queryParams.applyScope"
placeholder="适用范围"
clearable
@keyup.enter.native="handleQuery"
/>
2024-01-12 08:58:04 +00:00
</el-form-item> -->
2023-12-26 14:01:40 +00:00
<el-form-item label="" prop="logoType">
<el-input
v-model="queryParams.logoType"
placeholder="品牌类型"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<!--
<el-form-item label="" prop="lineCode">
<el-input
v-model="queryParams.lineCode"
placeholder="线路代码"
2023-12-14 13:11:58 +00:00
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="" prop="status">
<el-input
v-model="queryParams.status"
placeholder="启用状态"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="" prop="siteAuditMan">
<el-input
v-model="queryParams.siteAuditMan"
placeholder="单证员"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="" prop="siteAuditManCode">
<el-input
v-model="queryParams.siteAuditManCode"
placeholder="单证员代码"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="" prop="marketMan">
<el-input
v-model="queryParams.marketMan"
placeholder="客服专员"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="" prop="marketManCode">
<el-input
v-model="queryParams.marketManCode"
placeholder="客服专员代码"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="" prop="operateMan">
<el-input
v-model="queryParams.operateMan"
placeholder="操作员"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="" prop="operateManCode">
<el-input
v-model="queryParams.operateManCode"
placeholder="操作员代码"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
2024-01-12 08:58:04 +00:00
2023-12-26 14:01:40 +00:00
-->
2023-12-14 13:11:58 +00:00
<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:emisTransLine:add']"
>新增</el-button>
</el-col>
2024-01-12 08:58:04 +00:00
<!--
2023-12-14 13:11:58 +00:00
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['emis:emisTransLine: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:emisTransLine: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:emisTransLine:export']"
>导出</el-button>
</el-col> -->
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="emisTransLineList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
2024-01-12 08:58:04 +00:00
<el-table-column label="线路编号" align="left" prop="lineCode" min-width="80">
<template slot-scope="scope">
<div class="link-type" @click="handleUpdate(scope.row)">{{scope.row.lineCode}}</div>
</template>
2023-12-14 13:11:58 +00:00
</el-table-column>
2024-01-12 08:58:04 +00:00
<el-table-column label="线路名称" align="left" prop="lineName" min-width="130">
2023-12-14 13:11:58 +00:00
<template slot-scope="scope">
2024-01-12 08:58:04 +00:00
<div class="link-type" @click="handleUpdate(scope.row)">{{scope.row.lineName}}</div>
2023-12-14 13:11:58 +00:00
</template>
</el-table-column>
2023-12-27 02:31:08 +00:00
<el-table-column label="起始国家" align="center" prop="fromCountry" min-width="100" />
2023-12-26 14:01:40 +00:00
<el-table-column label="目的国家" align="center" prop="country" min-width="100" />
<el-table-column label="启用状态" align="center" prop="status" min-width="100" >
<template slot-scope="scope">
<el-switch
v-model="scope.row.status"
active-value="0"
inactive-value="1"
@change="handleStatusChange(scope.row)"
></el-switch>
</template>
</el-table-column>
2023-12-14 13:11:58 +00:00
<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:emisTransLine:edit']"
>修改</el-button>
2024-01-12 08:58:04 +00:00
<!--
2023-12-14 13:11:58 +00:00
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['emis:emisTransLine:remove']"
>删除</el-button> -->
</template>
</el-table-column>
</el-table>
2024-01-12 08:58:04 +00:00
2023-12-14 13:11:58 +00:00
<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"
/>
<!-- 添加或修改线路对话框 -->
2023-12-26 14:01:40 +00:00
<el-dialog :title="title" :visible.sync="open" width="700px" :close-on-click-modal="false" append-to-body>
2023-12-14 13:11:58 +00:00
<el-row :gutter="0">
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
2024-01-12 08:58:04 +00:00
<el-col :span="12">
<el-form-item label="线路编号" prop="lineCode">
<el-input v-model="form.lineCode" placeholder="请输入线路代码" />
</el-form-item>
</el-col>
<el-col :span="12">
2023-12-14 13:11:58 +00:00
<el-form-item label="线路名称" prop="lineName">
<el-input v-model="form.lineName" placeholder="请输入线路名称" />
</el-form-item>
</el-col>
2024-01-12 08:58:04 +00:00
<el-col :span="12">
2023-12-26 14:01:40 +00:00
<el-form-item label="英文名称" prop="lineNameEn">
<el-input v-model="form.lineNameEn" placeholder="请输入英文名称" />
2023-12-14 13:11:58 +00:00
</el-form-item>
</el-col>
2023-12-26 14:01:40 +00:00
<el-col :span="8">
<el-form-item label="起始国家" prop="fromCountry">
<el-select v-model="form.fromCountry" placeholder="起始国家" clearable filterable>
<el-option
v-for="item in countryIdsOptions"
v-bind:key="item.label"
v-bind:label="item.label"
v-bind:value="item.label"
/>
</el-select>
2023-12-14 13:11:58 +00:00
</el-form-item>
</el-col>
2023-12-26 14:01:40 +00:00
<el-col :span="8">
<el-form-item label="目的国家" prop="country">
<el-select v-model="form.country" placeholder="目的国家" clearable filterable>
<el-option
v-for="item in countryIdsOptions"
v-bind:key="item.label"
v-bind:label="item.label"
v-bind:value="item.label"
/>
</el-select>
2023-12-14 13:11:58 +00:00
</el-form-item>
</el-col>
2023-12-26 14:01:40 +00:00
<el-col :span="8">
<el-form-item label="计泡方式" prop="meterRate">
<el-input v-model="form.meterRate" placeholder="请输入计泡方式" />
2023-12-14 13:11:58 +00:00
</el-form-item>
</el-col>
2023-12-26 14:01:40 +00:00
<el-col :span="8">
<el-form-item label="品牌类型" prop="logoType">
<el-select v-model="form.logoType" placeholder="品牌类型" clearable filterable>
<el-option
v-for="item in logoTypeIdsOptions"
v-bind:key="item.label"
v-bind:label="item.label"
v-bind:value="item.label"
/>
</el-select>
2023-12-14 13:11:58 +00:00
</el-form-item>
</el-col>
2023-12-26 14:01:40 +00:00
<el-col :span="8">
<el-form-item label="运输方式" prop="transType">
<el-select v-model="form.transType" placeholder="运输方式" clearable filterable>
<el-option
v-for="item in dict.type.emis_biz_shipping_method"
v-bind:key="item.value"
v-bind:label="item.label"
v-bind:value="item.value"
/>
</el-select>
2023-12-14 13:11:58 +00:00
</el-form-item>
</el-col>
2023-12-26 14:01:40 +00:00
<el-col :span="8">
<el-form-item label="适用范围" prop="applyScope">
<el-select v-model="form.applyScope" placeholder="适用范围" clearable filterable>
<el-option
v-for="item in dict.type.emis_affiliate_type"
v-bind:key="item.value"
v-bind:label="item.label"
v-bind:value="item.value"
/>
</el-select>
2023-12-14 13:11:58 +00:00
</el-form-item>
</el-col>
<el-col :span="24">
2023-12-26 14:01:40 +00:00
<el-form-item label="是否启用" prop="status">
<el-radio-group v-model="form.status">
<el-radio
v-for="dict in dict.type.sys_normal_disable"
:key="dict.value"
:label="dict.value"
>{{dict.label}}</el-radio>
</el-radio-group>
2023-12-14 13:11:58 +00:00
</el-form-item>
</el-col>
2024-01-12 08:58:04 +00:00
<!--
2023-12-14 13:11:58 +00:00
<el-col :span="24">
2023-12-26 14:01:40 +00:00
<el-form-item label="进仓模板" prop="applyScope">
<el-select v-model="form.applyScope" placeholder="进仓模板" clearable filterable>
<el-option
v-for="item in dict.type.emis_affiliate_type"
v-bind:key="item.value"
v-bind:label="item.label"
v-bind:value="item.value"
/>
</el-select>
2023-12-14 13:11:58 +00:00
</el-form-item>
</el-col>
2024-01-12 08:58:04 +00:00
2023-12-14 13:11:58 +00:00
<el-col :span="24" v-show="moreInputVisible" > </el-col>
<el-col :span="24">
<el-divider content-position="right" @click="handleShowMoreInput" >更多信息[+]</el-divider>
2024-01-12 08:58:04 +00:00
</el-col>
2023-12-14 13:11:58 +00:00
-->
</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="titleForm" :visible.sync="openForm" width="500px" append-to-body>
<emisTransLineForm :id="currentId" @on-changed="handleFormChanged" @on-cancel="cancelForm"></EmisTransLineForm>
</el-dialog>
<el-dialog :title="titleView" :visible.sync="openView" width="60%" :close-on-click-modal="false" append-to-body>
<emisTransLineView :id="id" ></EmisTransLineView>
</el-dialog>
2023-12-26 14:01:40 +00:00
</el-col>
</el-row>
2023-12-14 13:11:58 +00:00
</div>
</template>
<script>
2023-12-26 14:01:40 +00:00
import { listEmisTransLine, getEmisTransLine, delEmisTransLine, addEmisTransLine, updateEmisTransLine,changeTransLineStatus } from "@/api/emis/emisTransLine";
import { listEmisCountry, getEmisCountry, delEmisCountry, addEmisCountry, updateEmisCountry } from "@/api/emis/emisCountry";
import { listEmisBrand, getEmisBrand, delEmisBrand, addEmisBrand, updateEmisBrand,changeBrandStatus } from "@/api/emis/emisBrand";
2023-12-14 13:11:58 +00:00
import elDateSimplePicker from '@/components/DatePickerAdv/elDateSimplePicker';
import emisTransLineView from '@/views/emis/emisTransLine/emisTransLineView';
import emisTransLineForm from '@/views/emis/emisTransLine/emisTransLineForm';
export default {
name: "emisTransLine",
components: { elDateSimplePicker,emisTransLineView,emisTransLineForm },
2023-12-26 14:01:40 +00:00
dicts: ['sys_normal_disable','emis_biz_shipping_method','emis_affiliate_type'],
2023-12-14 13:11:58 +00:00
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
2023-12-26 14:01:40 +00:00
countryName:null,
2023-12-14 13:11:58 +00:00
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 创建时间搜索
dateTimeRange:[],
// 总条数
total: 0,
// 线路表格数据
emisTransLineList: [],
2023-12-26 14:01:40 +00:00
countryTree:[],
countryIdsOptions:[],
logoTypeIdsOptions:[],
2023-12-14 13:11:58 +00:00
// 弹出层标题
title: "",
2023-12-26 14:01:40 +00:00
currentId:null,
2023-12-14 13:11:58 +00:00
// 是否显示弹出层
open: false,
2023-12-26 14:01:40 +00:00
defaultProps: {
children: "children",
label: "label"
},
2023-12-14 13:11:58 +00:00
openForm: false,
titleForm: "",
titleEmisTransLine: "",
openEmisTransLine: false,
// 显示编辑框更多
moreInputVisible: false,
// 弹出展示层
id:null,
titleView:"",
openView: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 20,
lineCode: null,
lineName: null,
status: null,
siteAuditMan: null,
siteAuditManCode: null,
marketMan: null,
marketManCode: null,
operateMan: null,
operateManCode: null,
country: null,
applyScope: null,
logoType: null
},
// 表单参数
form: {},
// 表单校验
rules: {
id: [
{ required: true, message: "序号不能为空", trigger: "blur" }
],
}
};
},
created() {
this.getList();
2023-12-26 14:01:40 +00:00
this.getCountryList();
this.getBrandList();
},
watch: {
// 根据名称筛选部门树
countryName(val) {
this.$refs.tree.filter(val);
}
2023-12-14 13:11:58 +00:00
},
methods: {
/** 查询线路列表 */
getList() {
this.loading = true;
listEmisTransLine(this.addDateRange(this.queryParams, this.dateTimeRange)).then(response => {
this.emisTransLineList = response.rows;
this.total = response.total;
this.loading = false;
});
},
2023-12-26 14:01:40 +00:00
getCountryList() {
this.loading = true;
2024-01-12 08:58:04 +00:00
let qParam={
pageNum: 1,
pageSize: 300
}
listEmisCountry(qParam).then(response => {
2023-12-26 14:01:40 +00:00
this.loading = false;
this.countryTree = [];
this.countryIdsOptions = [];
var cTree={"id":"","label":"国家列表","children":[]};
cTree.children.push({"id":40,"label":"中国"});
this.countryIdsOptions.push({"value":40,"label":"中国"})
//var lastContinentId = -1;
response.rows.forEach(item =>{
if(item.id != 40){
var optItem={value:item.id,label:item.name};
this.countryIdsOptions.push(optItem)
var treeItem={"id":item.id,"label":item.name};
cTree.children.push(treeItem);
}
//lastContinentId = item.id;
});
this.queryParams.countryId = this.currentCountryId;
this.countryTree.push(cTree);
//this.getAreaList();
});
},
getBrandList() {
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];
}
this.logoTypeIdsOptions = [];
listEmisBrand(this.addDateRange(this.queryParams, this.dateTimeRange)).then(response => {
response.rows.forEach(item =>{
var optItem={value:item.id,label:item.name};
this.logoTypeIdsOptions.push(optItem)
});
this.loading = false;
});
},
// 筛选节点
filterNode(value, data) {
if (!value) return true;
return data.label.indexOf(value) !== -1;
},
2023-12-14 13:11:58 +00:00
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
2023-12-26 14:01:40 +00:00
handleStatusChange(row) {
2024-01-12 08:58:04 +00:00
2023-12-26 14:01:40 +00:00
let text = row.status === "0" ? "启用" : "停用";
this.$modal.confirm('确认要"' + text + '""' + row.lineName + '"线路吗?').then(function() {
//改变线路的启用状态
return changeTransLineStatus(row.id, row.status);
}).then(() => {
this.$modal.msgSuccess(text + "成功");
}).catch(function() {
row.status = row.status === "0" ? "1" : "0";
});
2024-01-12 08:58:04 +00:00
2023-12-26 14:01:40 +00:00
},
// 节点单击事件
handleNodeClick(data) {
this.queryParams.countryId = data.id;
this.handleCountryAreaQuery();
},
/** 搜索按钮操作 */
handleCountryAreaQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
2023-12-14 13:11:58 +00:00
// 表单重置
reset() {
this.form = {
id: null,
lineCode: null,
lineName: null,
status: null,
siteAuditMan: null,
siteAuditManCode: null,
marketMan: null,
marketManCode: null,
operateMan: null,
operateManCode: null,
country: null,
applyScope: null,
logoType: 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.openEmisTransLine = true;
// this.titleEmisTransLine = "新增";
},
handleShowMoreInput(){
this.moreInputVisible = !this.moreInputVisible;
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getEmisTransLine(id).then(response => {
2023-12-26 14:01:40 +00:00
response.data.status = response.data.status+"";
2023-12-14 13:11:58 +00:00
this.form = response.data;
this.open = true;
this.title = "修改";
});
// 子组件打开模式
// this.currentId= row.id || this.ids;
// this.openEmisTransLine = true;
// this.titleEmisTransLine = "修改";
},
handleView(row) {
this.id=row.id;
this.titleView="查看";
this.openView=true;
// this.router.push({ path: '/emis/emisTransLine/viewDetail', query: { id: row.id }})
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateEmisTransLine(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addEmisTransLine(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 delEmisTransLine(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
// this.download('emis/emisTransLine/export', {
// ...this.queryParams
// }, `emisTransLine_${new Date().getTime()}.xlsx`)
const loadingInstance = this.$loading({
text: '正在导出...'
})
var qParam = {...this.queryParams};
qParam.pageNum=1;
qParam.pageSize=5000;
listEmisTransLine(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 = ['序号','线路代码','线路名称','启用状态','单证员','单证员代码','客服专员','客服专员代码','操作员','操作员代码','目的国家','适用范围','品牌类型',];
const filterVal = ['id','lineCode','lineName','status','siteAuditMan','siteAuditManCode','marketMan','marketManCode','operateMan','operateManCode','country','applyScope','logoType',];
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>