This commit is contained in:
linfso 2024-01-11 15:32:51 +08:00
parent 0eca810446
commit 6898c3e782

View File

@ -1,19 +1,90 @@
<template>
<div class="app-container">
<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">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="" prop="prodName">
<el-form-item label="" prop="destName">
<el-input
v-model="queryParams.prodName"
placeholder="产品类型名称"
v-model="queryParams.destName"
placeholder="目的地名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="" prop="carryType">
<el-select v-model="queryParams.carryType" placeholder="取重方式" clearable>
<el-form-item label="" prop="destCode">
<el-input
v-model="queryParams.destCode"
placeholder="目的地编码"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="" prop="country">
<el-select v-model="queryParams.country" placeholder="国家" clearable>
<el-option
v-for="dict in dict.type.emis_take_weight_method"
v-for="dict in countryIdsOptions"
:key="dict.label"
:label="dict.label"
:value="dict.label"
/>
</el-select>
</el-form-item>
<el-form-item label="" prop="siteCode">
<el-select v-model="queryParams.siteCode" placeholder="服务网点" clearable>
<!-- <el-option
v-for="dict in dict.type.emis_region_level_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/> -->
</el-select>
</el-form-item>
<el-form-item label="" prop="isHinterland">
<el-select v-model="queryParams.isHinterland" placeholder="是否偏远地区" clearable>
<el-option
v-for="dict in dict.type.emis_is_hinterland"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item label="" prop="status">
<el-select v-model="queryParams.status" placeholder="是否启用" clearable>
<el-option
v-for="dict in dict.type.sys_normal_disable"
:key="dict.value"
:label="dict.label"
:value="dict.value"
@ -34,7 +105,7 @@
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['emis:emisSpecialCalcWeight:add']"
v-hasPermi="['emis:emisDestination:add']"
>新增</el-button>
</el-col>
<!--
@ -46,7 +117,7 @@
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['emis:emisSpecialCalcWeight:edit']"
v-hasPermi="['emis:emisDestination:edit']"
>修改</el-button>
</el-col> -->
<el-col :span="1.5">
@ -57,7 +128,7 @@
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['emis:emisSpecialCalcWeight:remove']"
v-hasPermi="['emis:emisDestination:remove']"
>删除</el-button>
</el-col>
<!-- <el-col :span="1.5">
@ -67,31 +138,56 @@
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['emis:emisSpecialCalcWeight:export']"
v-hasPermi="['emis:emisDestination:export']"
>导出</el-button>
</el-col> -->
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="emisSpecialCalcWeightList" @selection-change="handleSelectionChange">
<el-table v-loading="loading" :data="emisDestinationList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<!-- <el-table-column label="产品类型" align="center" prop="prodName" min-width="100" /> -->
<el-table-column label="产品类型" align="left" prop="prodName" min-width="180">
<template slot-scope="scope">
<div class="link-type" @click="handleUpdate(scope.row)">{{scope.row.prodName}}</div>
</template>
<el-table-column label="序号" align="center" min-width="60">
<template slot-scope="scope">
<span v-text="getIndex(scope.$index)"> </span>
</template>
</el-table-column>
<el-table-column label="取重方式" align="center" prop="carryType" min-width="100" >
<!-- <el-table-column label="目的地编码" align="center" prop="destCode" min-width="100" /> -->
<!-- <el-table-column label="目的地名称" align="center" prop="destName" min-width="100" /> -->
<el-table-column label="目的地" align="left" prop="destName" min-width="180">
<template slot-scope="scope">
<div class="link-type" @click="handleView(scope.row)">{{scope.row.destName}}({{scope.row.destCode}})</div>
</template>
</el-table-column>
<!-- <el-table-column label="英文名称" align="center" prop="destNameEn" min-width="100" /> -->
<el-table-column label="所属国家" align="center" prop="country" min-width="100" />
<el-table-column label="服务网点编号" align="center" prop="siteCode" min-width="100" />
<el-table-column label="服务网点名称" align="center" prop="siteName" min-width="100" />
<el-table-column label="省市区" align="left" prop="province" min-width="180">
<template slot-scope="scope">
<div>{{scope.row.province}}/{{scope.row.city}}/{{scope.row.county}}/{{scope.row.town}}</div>
</template>
</el-table-column>
<!-- <el-table-column label="省" align="center" prop="province" min-width="100" /> -->
<!-- <el-table-column label="市" align="center" prop="city" min-width="100" /> -->
<!-- <el-table-column label="区" align="center" prop="county" min-width="100" /> -->
<!-- <el-table-column label="乡镇" align="center" prop="town" min-width="100" /> -->
<el-table-column label="是否偏远地区" align="center" prop="isHinterland" min-width="100" >
<template slot-scope="scope">
<dict-tag :options="dict.type.emis_take_weight_method" :value="scope.row.carryType"/>
<dict-tag :options="dict.type.emis_is_hinterland" :value="scope.row.isHinterland"/>
</template>
</el-table-column>
<el-table-column label="起始重量" align="center" prop="beginWeight" min-width="100" />
<el-table-column label="结束重量" align="center" prop="endWeight" min-width="100" />
<el-table-column label="起始时间" align="center" prop="beginDate" min-width="100" />
<el-table-column label="结束时间" align="center" prop="endDate" min-width="100" />
<el-table-column label="备注" align="center" prop="remark" 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>
<el-table-column label="创建时间" align="center" prop="createTime" min-width="100" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
@ -99,7 +195,7 @@
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['emis:emisSpecialCalcWeight:edit']"
v-hasPermi="['emis:emisDestination:edit']"
>修改</el-button>
<!--
<el-button
@ -107,7 +203,7 @@
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['emis:emisSpecialCalcWeight:remove']"
v-hasPermi="['emis:emisDestination:remove']"
>删除</el-button> -->
</template>
</el-table-column>
@ -123,62 +219,84 @@
@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-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-col :span="24">
<el-form-item label="产品类型代码" prop="prodCode">
<el-input v-model="form.prodCode" placeholder="请输入产品类型代码" />
<el-form-item label="目的地编码" prop="destCode">
<el-input v-model="form.destCode" placeholder="请输入目的地编码" />
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="产品类型名称" prop="prodName">
<el-input v-model="form.prodName" placeholder="请输入产品类型名称" />
<el-form-item label="目的地名称" prop="destName">
<el-input v-model="form.destName" placeholder="请输入目的地名称" />
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="英文名称" prop="destNameEn">
<el-input v-model="form.destNameEn" placeholder="请输入英文名称" />
</el-form-item>
</el-col>
<el-col :span="12">
<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>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="服务网点名称" prop="siteName">
<el-input v-model="form.siteName" placeholder="请输入服务网点名称" />
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="省" prop="province">
<el-input v-model="form.province" placeholder="请输入省" />
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="市" prop="city">
<el-input v-model="form.city" placeholder="请输入市" />
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="区" prop="county">
<el-input v-model="form.county" placeholder="请输入区" />
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="乡镇" prop="town">
<el-input v-model="form.town" placeholder="请输入乡镇" />
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="取重方式" prop="carryType">
<el-select v-model="form.carryType" placeholder="请选择取重方式">
<el-option
v-for="dict in dict.type.emis_take_weight_method"
<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.label"
:value="dict.value"
></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="起始重量" prop="beginWeight">
<el-input v-model="form.beginWeight" placeholder="请输入起始重量" />
:label="dict.value"
>{{dict.label}}</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="结束重量" prop="endWeight">
<el-input v-model="form.endWeight" placeholder="请输入结束重量" />
<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>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="起始时间" prop="beginDate">
<el-date-picker clearable
v-model="form.beginDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择起始时间">
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="结束时间" prop="endDate">
<el-date-picker clearable
v-model="form.endDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择结束时间">
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
@ -202,34 +320,37 @@
<el-dialog :title="titleForm" :visible.sync="openForm" width="500px" append-to-body>
<emisSpecialCalcWeightForm :id="currentId" @on-changed="handleFormChanged" @on-cancel="cancelForm"></EmisSpecialCalcWeightForm>
<emisDestinationForm :id="currentId" @on-changed="handleFormChanged" @on-cancel="cancelForm"></EmisDestinationForm>
</el-dialog>
<el-dialog :title="titleView" :visible.sync="openView" width="60%" :close-on-click-modal="false" append-to-body>
<emisSpecialCalcWeightView :id="id" ></EmisSpecialCalcWeightView>
<emisDestinationView :id="id" ></EmisDestinationView>
</el-dialog>
</el-col>
</el-row>
</div>
</template>
<script>
import { listEmisSpecialCalcWeight, getEmisSpecialCalcWeight, delEmisSpecialCalcWeight, addEmisSpecialCalcWeight, updateEmisSpecialCalcWeight } from "@/api/emis/emisSpecialCalcWeight";
import { listEmisDestination, getEmisDestination, delEmisDestination, addEmisDestination, updateEmisDestination, changeDescStatus } from "@/api/emis/emisDestination";
import { listEmisCountry, getEmisCountry, delEmisCountry, addEmisCountry, updateEmisCountry } from "@/api/emis/emisCountry";
import elDateSimplePicker from '@/components/DatePickerAdv/elDateSimplePicker';
import emisSpecialCalcWeightView from '@/views/emis/emisSpecialCalcWeight/emisSpecialCalcWeightView';
import emisSpecialCalcWeightForm from '@/views/emis/emisSpecialCalcWeight/emisSpecialCalcWeightForm';
import emisDestinationView from '@/views/emis/emisDestination/emisDestinationView';
import emisDestinationForm from '@/views/emis/emisDestination/emisDestinationForm';
export default {
name: "emisSpecialCalcWeight",
components: { elDateSimplePicker,emisSpecialCalcWeightView,emisSpecialCalcWeightForm },
name: "emisDestination",
components: { elDateSimplePicker,emisDestinationView,emisDestinationForm },
dicts: [
'sys_normal_disable',
'emis_take_weight_method',
],
data() {
return {
// 遮罩层
loading: true,
currentId:null,
countryName:null,
// 选中数组
ids: [],
// 非单个禁用
@ -242,18 +363,24 @@ export default {
dateTimeRange:[],
// 总条数
total: 0,
// 特殊取重表格数据
emisSpecialCalcWeightList: [],
// 目的地表格数据
emisDestinationList: [],
countryTree:[],
countryIdsOptions:[],
// 弹出层标题
title: "",
defaultProps: {
children: "children",
label: "label"
},
// 是否显示弹出层
open: false,
openForm: false,
titleForm: "",
titleEmisSpecialCalcWeight: "",
openEmisSpecialCalcWeight: false,
titleEmisDestination: "",
openEmisDestination: false,
// 显示编辑框更多
moreInputVisible: false,
@ -263,10 +390,6 @@ export default {
titleView:"",
openView: false,
// 备注时间范围
daterangeBeginDate: [],
// 备注时间范围
daterangeEndDate: [],
// 备注时间范围
daterangeCreateTime: [],
// 备注时间范围
daterangeUpdateTime: [],
@ -274,51 +397,81 @@ export default {
queryParams: {
pageNum: 1,
pageSize: 20,
prodName: null,
destCode: null,
destName: null,
status: null,
carryType: null,
transLineCode: null,
siteCode: null,
province: null,
city: null,
county: null,
town: null,
remark: null,
countryId:null,
country:null,
},
// 表单参数
form: {},
// 表单校验
rules: {
prodCode: [
{ required: true, message: "产品类型代码不能为空", trigger: "blur" }
destCode: [
{ required: true, message: "目的地编码不能为空", trigger: "blur" }
],
prodName: [
{ required: true, message: "产品类型名称不能为空", trigger: "blur" }
destName: [
{ required: true, message: "目的地名称不能为空", trigger: "blur" }
],
destNameEn: [
{ required: true, message: "英文名称不能为空", trigger: "blur" }
],
status: [
{ required: true, message: "启用状态不能为空", trigger: "blur" }
],
carryType: [
{ required: true, message: "取重方式不能为空", trigger: "change" }
country: [
{ required: true, message: "所属国家不能为空", trigger: "blur" }
],
beginWeight: [
{ required: true, message: "起始重量不能为空", trigger: "blur" }
transLineCode: [
{ required: true, message: "所属线路不能为空", trigger: "change" }
],
endWeight: [
{ required: true, message: "结束重量不能为空", trigger: "blur" }
transLine: [
{ required: true, message: "所属线路名称不能为空", trigger: "change" }
],
siteCode: [
{ required: true, message: "服务网点编号不能为空", trigger: "change" }
],
siteName: [
{ required: true, message: "服务网点名称不能为空", trigger: "blur" }
],
}
};
},
created() {
this.getList();
this.getCountryList();
},
watch: {
// 根据名称筛选部门树
countryName(val) {
this.$refs.tree.filter(val);
}
},
methods: {
/** 查询特殊取重列表 */
handleStatusChange(row) {
let text = row.status === "0" ? "启用" : "停用";
this.$modal.confirm('确认要"' + text + '""' + row.lineName + '"目的地吗?').then(function() {
//改变线路的启用状态
return changeDescStatus(row.id, row.status);
}).then(() => {
this.$modal.msgSuccess(text + "成功");
}).catch(function() {
row.status = row.status === "0" ? "1" : "0";
});
},
/** 查询目的地列表 */
getList() {
this.loading = true;
this.queryParams.params = {};
if (null != this.daterangeBeginDate && '' != this.daterangeBeginDate) {
this.queryParams.params["beginBeginDate"] = this.daterangeBeginDate[0];
this.queryParams.params["endBeginDate"] = this.daterangeBeginDate[1];
}
if (null != this.daterangeEndDate && '' != this.daterangeEndDate) {
this.queryParams.params["beginEndDate"] = this.daterangeEndDate[0];
this.queryParams.params["endEndDate"] = this.daterangeEndDate[1];
}
if (null != this.daterangeCreateTime && '' != this.daterangeCreateTime) {
this.queryParams.params["beginCreateTime"] = this.daterangeCreateTime[0];
this.queryParams.params["endCreateTime"] = this.daterangeCreateTime[1];
@ -327,29 +480,69 @@ export default {
this.queryParams.params["beginUpdateTime"] = this.daterangeUpdateTime[0];
this.queryParams.params["endUpdateTime"] = this.daterangeUpdateTime[1];
}
listEmisSpecialCalcWeight(this.addDateRange(this.queryParams, this.dateTimeRange)).then(response => {
this.emisSpecialCalcWeightList = response.rows;
listEmisDestination(this.addDateRange(this.queryParams, this.dateTimeRange)).then(response => {
this.emisDestinationList = response.rows;
this.total = response.total;
this.loading = false;
});
},
getCountryList() {
this.loading = true;
listEmisCountry(this.queryParams).then(response => {
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();
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 筛选节点
filterNode(value, data) {
if (!value) return true;
return data.label.indexOf(value) !== -1;
},
// 节点单击事件
handleNodeClick(data) {
this.queryParams.country = data.label;
this.handleQuery();
},
// 表单重置
reset() {
this.form = {
id: null,
prodCode: null,
prodName: null,
destCode: null,
destName: null,
destNameEn: null,
status: null,
carryType: null,
beginWeight: null,
endWeight: null,
beginDate: null,
endDate: null,
country: null,
transLineCode: null,
transLine: null,
siteCode: null,
siteName: null,
province: null,
city: null,
county: null,
town: null,
remark: null,
tenantId: null,
delFlag: null,
@ -386,8 +579,8 @@ export default {
// if(row != undefined){
// this.currentParentId = row.id
// }
// this.openEmisSpecialCalcWeight = true;
// this.titleEmisSpecialCalcWeight = "新增";
// this.openEmisDestination = true;
// this.titleEmisDestination = "新增";
},
handleShowMoreInput(){
this.moreInputVisible = !this.moreInputVisible;
@ -396,7 +589,7 @@ export default {
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getEmisSpecialCalcWeight(id).then(response => {
getEmisDestination(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改";
@ -404,28 +597,28 @@ export default {
// 子组件打开模式
// this.currentId= row.id || this.ids;
// this.openEmisSpecialCalcWeight = true;
// this.titleEmisSpecialCalcWeight = "修改";
// this.openEmisDestination = true;
// this.titleEmisDestination = "修改";
},
handleView(row) {
this.id=row.id;
this.titleView="查看";
this.openView=true;
// this.router.push({ path: '/emis/emisSpecialCalcWeight/viewDetail', query: { id: row.id }})
// this.router.push({ path: '/emis/emisDestination/viewDetail', query: { id: row.id }})
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateEmisSpecialCalcWeight(this.form).then(response => {
updateEmisDestination(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addEmisSpecialCalcWeight(this.form).then(response => {
addEmisDestination(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
@ -445,7 +638,7 @@ export default {
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除').then(function() {
return delEmisSpecialCalcWeight(ids);
return delEmisDestination(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
@ -453,9 +646,9 @@ export default {
},
/** 导出按钮操作 */
handleExport() {
// this.download('emis/emisSpecialCalcWeight/export', {
// this.download('emis/emisDestination/export', {
// ...this.queryParams
// }, `emisSpecialCalcWeight_${new Date().getTime()}.xlsx`)
// }, `emisDestination_${new Date().getTime()}.xlsx`)
const loadingInstance = this.$loading({
text: '正在导出...'
})
@ -463,18 +656,18 @@ export default {
qParam.pageNum=1;
qParam.pageSize=5000;
listEmisSpecialCalcWeight(this.addDateRange(qParam, this.dateTimeRange)).then(response => {
listEmisDestination(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','删除标志(0代表存在','创建者','创建时间','更新者','更新时间',];
const filterVal = ['id','prodCode','prodName','status','carryType','beginWeight','endWeight','beginDate','endDate','remark','tenantId','delFlag','createBy','createTime','updateBy','updateTime',];
const tHeader = ['序号','目的地编码','目的地名称','英文名称','启用状态','所属国家','所属线路','所属线路名称','服务网点编号','服务网点名称','省','市','区','乡镇','备注','租户ID','删除标志(0代表存在','创建者','创建时间','更新者','更新时间',];
const filterVal = ['id','destCode','destName','destNameEn','status','country','transLineCode','transLine','siteCode','siteName','province','city','county','town','remark','tenantId','delFlag','createBy','createTime','updateBy','updateTime',];
const data = this.formatJson(filterVal, curList, response.rows)
excel.export_json_to_excel({
header: tHeader,
data,
filename: '特殊取重',
filename: '目的地',
autoWidth: true
})
loadingInstance.close()