md
This commit is contained in:
parent
8297e1a99e
commit
cc1cf7adfd
788
src/views/emis/emisTransProduct/index.vue
Normal file
788
src/views/emis/emisTransProduct/index.vue
Normal file
@ -0,0 +1,788 @@
|
|||||||
|
<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-input
|
||||||
|
v-model="queryParams.prodName"
|
||||||
|
placeholder="类型名称"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="" prop="prodCode">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.prodCode"
|
||||||
|
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 countryIdsOptions"
|
||||||
|
:key="dict.label"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.label"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="" prop="agingDesc">
|
||||||
|
<el-select v-model="queryParams.agingDesc" placeholder="时效标识" clearable>
|
||||||
|
<el-option
|
||||||
|
v-for="dict in countryIdsOptions"
|
||||||
|
:key="dict.label"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.label"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="" prop="carryType">
|
||||||
|
<el-select v-model="queryParams.carrType" placeholder="取重方式" clearable>
|
||||||
|
<el-option
|
||||||
|
v-for="dict in dict.type.emis_take_weight_method"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="" prop="transType">
|
||||||
|
<el-select v-model="queryParams.transType" placeholder="承运方式" clearable>
|
||||||
|
<el-option
|
||||||
|
v-for="dict in dict.type.emis_biz_shipping_method"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="" prop="transLineCode">
|
||||||
|
<el-select v-model="queryParams.transLineCode" placeholder="所属线路" clearable>
|
||||||
|
<el-option
|
||||||
|
v-for="dict in translineIdsOptions"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</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:emisTransProduct: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:emisTransProduct: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:emisTransProduct: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:emisTransProduct:export']"
|
||||||
|
>导出</el-button>
|
||||||
|
</el-col> -->
|
||||||
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :data="emisTransProductList" @selection-change="handleSelectionChange">
|
||||||
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
|
<!--
|
||||||
|
<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="xxx" align="left" prop="xxx" min-width="180">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<div class="link-type" @click="handleView(scope.row)">{{scope.row.orderSn}}</div>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column label="结算状态" align="center" prop="settleStatus" min-width="80">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<div v-if="scope.row.settleStatus == 0" style="color:red;">
|
||||||
|
<span class="el-tag el-tag--info">未结算</span>
|
||||||
|
</div>
|
||||||
|
<div v-if="scope.row.settleStatus == 10" style="color:red;">
|
||||||
|
<span class="el-tag">待确认</span>
|
||||||
|
</div>
|
||||||
|
<div v-if="scope.row.settleStatus == 11" style="color:green;">
|
||||||
|
<span class="el-tag el-tag--success el-tag--light">已确认</span>
|
||||||
|
</div>
|
||||||
|
<div v-if="scope.row.settleStatus == 20" >
|
||||||
|
<span class="el-tag el-tag--warning el-tag--light">待打款</span>
|
||||||
|
</div>
|
||||||
|
<div v-if="scope.row.settleStatus == 21" style="color:green;">
|
||||||
|
<span class="el-tag el-tag--success el-tag--light">已打款</span>
|
||||||
|
</div>
|
||||||
|
<div v-if="scope.row.settleStatus == 40" style="color:red;">
|
||||||
|
<span class="el-tag el-tag--danger">已拒绝</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<el-table-column label="类型代码" align="center" prop="prodCode" min-width="100" />
|
||||||
|
<el-table-column label="类型名称" align="center" prop="prodName" min-width="100" />
|
||||||
|
<el-table-column label="英文名称" align="center" prop="prodNameEn" min-width="100" />
|
||||||
|
<el-table-column label="时效标识" align="center" prop="agingDesc" min-width="100" />
|
||||||
|
<el-table-column label="所属路线" align="center" prop="transLine" min-width="100" />
|
||||||
|
<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>
|
||||||
|
<el-table-column label="取重方式" align="center" prop="carryType" min-width="100" >
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<dict-tag :options="dict.type.emis_take_weight_method" :value="scope.row.carryType"/>
|
||||||
|
</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
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-edit"
|
||||||
|
@click="handleUpdate(scope.row)"
|
||||||
|
v-hasPermi="['emis:emisTransProduct:edit']"
|
||||||
|
>修改</el-button>
|
||||||
|
<!--
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-delete"
|
||||||
|
@click="handleDelete(scope.row)"
|
||||||
|
v-hasPermi="['emis:emisTransProduct: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="750px" :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="prodCode">
|
||||||
|
<el-input v-model="form.prodCode" 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>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="英文名称" prop="prodNameEn">
|
||||||
|
<el-input v-model="form.prodNameEn" placeholder="请输入英文名称" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="所属国家" prop="country">
|
||||||
|
<el-select v-model="form.country" placeholder="所属国家" @change="handleCountrySelectionChange" 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="8">
|
||||||
|
<el-form-item label="所属线路" prop="transLineCode">
|
||||||
|
<el-select v-model="form.transLineCode" placeholder="所属线路" clearable filterable>
|
||||||
|
<el-option
|
||||||
|
v-for="item in translineInnerIdsOptions"
|
||||||
|
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="8">
|
||||||
|
<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"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.value"
|
||||||
|
></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<!--
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="承运方式" prop="transType">
|
||||||
|
<el-select v-model="form.transType" placeholder="请选择承运方式">
|
||||||
|
<el-option
|
||||||
|
v-for="dict in dict.type.emis_biz_shipping_method"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.value"
|
||||||
|
></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
-->
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="时效描述" prop="agingDesc">
|
||||||
|
<el-input v-model="form.agingDesc" placeholder="请输入时效描述" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="最小时效" prop="minAging">
|
||||||
|
<el-input v-model="form.minAging" placeholder="请输入最小时效" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="最大时效" prop="maxAging">
|
||||||
|
<el-input v-model="form.maxAging" 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="submitForm">确 定</el-button>
|
||||||
|
<el-button @click="cancel">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
|
||||||
|
|
||||||
|
<el-dialog :title="titleForm" :visible.sync="openForm" width="500px" append-to-body>
|
||||||
|
<emisTransProductForm :id="currentId" @on-changed="handleFormChanged" @on-cancel="cancelForm"></EmisTransProductForm>
|
||||||
|
</el-dialog>
|
||||||
|
|
||||||
|
|
||||||
|
<el-dialog :title="titleView" :visible.sync="openView" width="60%" :close-on-click-modal="false" append-to-body>
|
||||||
|
<emisTransProductView :id="id" ></EmisTransProductView>
|
||||||
|
</el-dialog>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { listEmisTransProduct, getEmisTransProduct, delEmisTransProduct, addEmisTransProduct, updateEmisTransProduct,changeTransProductStatus } from "@/api/emis/emisTransProduct";
|
||||||
|
import { listEmisCountry, getEmisCountry, delEmisCountry, addEmisCountry, updateEmisCountry } from "@/api/emis/emisCountry";
|
||||||
|
import { listEmisTransLine, getEmisTransLine, delEmisTransLine, addEmisTransLine, updateEmisTransLine,changeTransLineStatus } from "@/api/emis/emisTransLine";
|
||||||
|
import elDateSimplePicker from '@/components/DatePickerAdv/elDateSimplePicker';
|
||||||
|
import emisTransProductView from '@/views/emis/emisTransProduct/emisTransProductView';
|
||||||
|
import emisTransProductForm from '@/views/emis/emisTransProduct/emisTransProductForm';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "emisTransProduct",
|
||||||
|
components: { elDateSimplePicker,emisTransProductView,emisTransProductForm },
|
||||||
|
dicts: [
|
||||||
|
'sys_normal_disable',
|
||||||
|
'emis_take_weight_method',
|
||||||
|
'emis_biz_shipping_method',
|
||||||
|
],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
// 遮罩层
|
||||||
|
loading: true,
|
||||||
|
currentId:null,
|
||||||
|
// 选中数组
|
||||||
|
ids: [],
|
||||||
|
// 非单个禁用
|
||||||
|
single: true,
|
||||||
|
// 非多个禁用
|
||||||
|
multiple: true,
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
|
// 创建时间搜索
|
||||||
|
dateTimeRange:[],
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
// 运输产品类型表格数据
|
||||||
|
emisTransProductList: [],
|
||||||
|
countryTree:[],
|
||||||
|
countryIdsOptions:[],
|
||||||
|
translineIdsOptions:[],
|
||||||
|
translineInnerIdsOptions:[],
|
||||||
|
countryName:null,
|
||||||
|
// 弹出层标题
|
||||||
|
title: "",
|
||||||
|
// 是否显示弹出层
|
||||||
|
open: false,
|
||||||
|
|
||||||
|
openForm: false,
|
||||||
|
titleForm: "",
|
||||||
|
|
||||||
|
titleEmisTransProduct: "",
|
||||||
|
openEmisTransProduct: false,
|
||||||
|
|
||||||
|
// 显示编辑框更多
|
||||||
|
moreInputVisible: false,
|
||||||
|
|
||||||
|
// 弹出展示层
|
||||||
|
id:null,
|
||||||
|
titleView:"",
|
||||||
|
openView: false,
|
||||||
|
// 备注时间范围
|
||||||
|
daterangeCreateTime: [],
|
||||||
|
// 备注时间范围
|
||||||
|
daterangeUpdateTime: [],
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 20,
|
||||||
|
prodCode: null,
|
||||||
|
prodName: null,
|
||||||
|
prodNameEn: null,
|
||||||
|
country:null,
|
||||||
|
},
|
||||||
|
queryParamsInner: {
|
||||||
|
country:null,
|
||||||
|
},
|
||||||
|
defaultProps: {
|
||||||
|
children: "children",
|
||||||
|
label: "label"
|
||||||
|
},
|
||||||
|
// 表单参数
|
||||||
|
form: {},
|
||||||
|
// 表单校验
|
||||||
|
rules: {
|
||||||
|
prodCode: [
|
||||||
|
{ required: true, message: "产品代码不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
prodName: [
|
||||||
|
{ required: true, message: "名称不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
prodNameEn: [
|
||||||
|
{ required: true, message: "英文名称不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
status: [
|
||||||
|
{ required: true, message: "启用状态不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
country: [
|
||||||
|
{ required: true, message: "所属国家不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
transLineCode: [
|
||||||
|
{ required: true, message: "所属线路不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
transLine: [
|
||||||
|
{ required: true, message: "所属线路名称不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
carryType: [
|
||||||
|
{ required: true, message: "取重方式不能为空", trigger: "change" }
|
||||||
|
],
|
||||||
|
transType: [
|
||||||
|
{ required: true, message: "承运方式不能为空", trigger: "change" }
|
||||||
|
],
|
||||||
|
agingDesc: [
|
||||||
|
{ required: true, message: "时效描述不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
minAging: [
|
||||||
|
{ required: true, message: "最小时效不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
maxAging: [
|
||||||
|
{ required: true, message: "最大时效不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
// 根据名称筛选部门树
|
||||||
|
countryName(val) {
|
||||||
|
this.$refs.tree.filter(val);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getList();
|
||||||
|
this.getCountryList();
|
||||||
|
//this.getTranslineList();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleCountrySelectionChange(country){
|
||||||
|
if(country==""){
|
||||||
|
this.translineInnerIdsOptions = [];
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.queryParamsInner.country = country;
|
||||||
|
listEmisTransLine(this.queryParamsInner).then(response => {
|
||||||
|
this.translineInnerIdsOptions = [];
|
||||||
|
response.rows.forEach(item =>{
|
||||||
|
var optItem={value:item.lineCode,label:item.lineName};
|
||||||
|
this.translineInnerIdsOptions.push(optItem);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
handleStatusChange(row) {
|
||||||
|
let text = row.status === "0" ? "启用" : "停用";
|
||||||
|
this.$modal.confirm('确认要"' + text + '""' + row.prodName + '"产品类型吗?').then(function() {
|
||||||
|
//改变线路的启用状态
|
||||||
|
return changeTransProductStatus(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.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];
|
||||||
|
}
|
||||||
|
listEmisTransProduct(this.addDateRange(this.queryParams, this.dateTimeRange)).then(response => {
|
||||||
|
this.emisTransProductList = response.rows;
|
||||||
|
this.total = response.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
getTranslineList() {
|
||||||
|
this.loading = true;
|
||||||
|
listEmisTransLine(this.addDateRange(this.queryParams, this.dateTimeRange)).then(response => {
|
||||||
|
this.translineIdsOptions = [];
|
||||||
|
response.rows.forEach(item =>{
|
||||||
|
var optItem={value:item.lineCode,label:item.lineName};
|
||||||
|
this.translineIdsOptions.push(optItem)
|
||||||
|
|
||||||
|
});
|
||||||
|
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();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 筛选节点
|
||||||
|
filterNode(value, data) {
|
||||||
|
if (!value) return true;
|
||||||
|
return data.label.indexOf(value) !== -1;
|
||||||
|
},
|
||||||
|
// 节点单击事件
|
||||||
|
handleNodeClick(data) {
|
||||||
|
if(data.label=="国家列表"){
|
||||||
|
this.queryParams.country = null;
|
||||||
|
}else{
|
||||||
|
this.queryParams.country = data.label;
|
||||||
|
}
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
// 取消按钮
|
||||||
|
cancel() {
|
||||||
|
this.open = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
// 表单重置
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
id: null,
|
||||||
|
prodCode: null,
|
||||||
|
prodName: null,
|
||||||
|
prodNameEn: null,
|
||||||
|
status: null,
|
||||||
|
country: null,
|
||||||
|
transLineCode: null,
|
||||||
|
transLine: null,
|
||||||
|
carryType: null,
|
||||||
|
transType: null,
|
||||||
|
agingDesc: null,
|
||||||
|
minAging: null,
|
||||||
|
maxAging: 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();
|
||||||
|
this.getTranslineList();
|
||||||
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
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.openEmisTransProduct = true;
|
||||||
|
// this.titleEmisTransProduct = "新增";
|
||||||
|
},
|
||||||
|
handleShowMoreInput(){
|
||||||
|
this.moreInputVisible = !this.moreInputVisible;
|
||||||
|
},
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
handleUpdate(row) {
|
||||||
|
this.reset();
|
||||||
|
const id = row.id || this.ids
|
||||||
|
getEmisTransProduct(id).then(response => {
|
||||||
|
this.form = response.data;
|
||||||
|
this.open = true;
|
||||||
|
this.title = "修改";
|
||||||
|
});
|
||||||
|
|
||||||
|
// 子组件打开模式
|
||||||
|
// this.currentId= row.id || this.ids;
|
||||||
|
// this.openEmisTransProduct = true;
|
||||||
|
// this.titleEmisTransProduct = "修改";
|
||||||
|
|
||||||
|
},
|
||||||
|
handleView(row) {
|
||||||
|
this.id=row.id;
|
||||||
|
this.titleView="查看";
|
||||||
|
this.openView=true;
|
||||||
|
// this.router.push({ path: '/emis/emisTransProduct/viewDetail', query: { id: row.id }})
|
||||||
|
},
|
||||||
|
/** 提交按钮 */
|
||||||
|
submitForm() {
|
||||||
|
this.$refs["form"].validate(valid => {
|
||||||
|
if (valid) {
|
||||||
|
if (this.form.id != null) {
|
||||||
|
updateEmisTransProduct(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("修改成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
addEmisTransProduct(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 delEmisTransProduct(ids);
|
||||||
|
}).then(() => {
|
||||||
|
this.getList();
|
||||||
|
this.$modal.msgSuccess("删除成功");
|
||||||
|
}).catch(() => {});
|
||||||
|
},
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
handleExport() {
|
||||||
|
// this.download('emis/emisTransProduct/export', {
|
||||||
|
// ...this.queryParams
|
||||||
|
// }, `emisTransProduct_${new Date().getTime()}.xlsx`)
|
||||||
|
const loadingInstance = this.$loading({
|
||||||
|
text: '正在导出...'
|
||||||
|
})
|
||||||
|
var qParam = {...this.queryParams};
|
||||||
|
qParam.pageNum=1;
|
||||||
|
qParam.pageSize=5000;
|
||||||
|
|
||||||
|
listEmisTransProduct(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','prodNameEn','status','country','transLineCode','transLine','carryType','transType','agingDesc','minAging','maxAging','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>
|
||||||
Loading…
Reference in New Issue
Block a user