Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
jinhui.wang
2022-06-17 16:47:24 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
bdd78b876c116d0022700d5c402d531c43a8196d
bdd78b87
1 parent
6d633279
删除无用代码
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
71 additions
and
351 deletions
src/components/Table/index.vue
src/views/allocationConfig/cargoAllocation/index.vue
src/views/basicInformation/caPreReviewImport/index.vue
src/views/basicInformation/flightInformationImport/index.vue
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/basicInformation/queryCargo/index.vue
src/views/systemConfig/roleConfig/index.vue
src/views/systemConfig/userConfig/index.vue
src/components/Table/index.vue
View file @
bdd78b8
...
...
@@ -6,34 +6,33 @@
:tree-props="{ children: 'children', hasChildren: 'hasChildren' }" v-loading="loading"
:cell-class-name="cellClassName" :header-cell-class-name="headerCellClassName" @sort-change="sortChange"
@select="tableSelect" @select-all="tableSelectAll" @select-change="SelectChange">
<!--
复
选框 -->
<el-table-column v-if="selection" type="selection"
:fixed="true" width="50" align="center
"></el-table-column>
<!--
多
选框 -->
<el-table-column v-if="selection" type="selection"
width="50" align="center" :fixed="true
"></el-table-column>
<!-- 序号 -->
<el-table-column type="index" width="50" align="center"></el-table-column>
<template v-for="(item, index) in
newHeader
">
<el-table-column type="index" width="50" align="center"
:index="indexAdd"
></el-table-column>
<template v-for="(item, index) in
headerData
">
<!-- 自定义插槽 -->
<el-table-column v-if="item.slot" :prop="item.value" :label="item.name" :width="item.width" :align="item.align"
:fixed="item.fixed" :show-overflow-tooltip="showOverflowTooltip" :sortable="item.sorTable"
:formatter="formatter" header-align="center" :sort-orders="['descending', 'ascending', null]"
:slotHeader="slotHeader" :render-header="renderHeader" :key="index">
:fixed="item.fixed ? item.fixed : false" :show-overflow-tooltip="showOverflowTooltip"
:sortable="item.sorTable ? true : false" :formatter="formatter" header-align="center"
:sort-orders="['descending', 'ascending', null]" :slotHeader="slotHeader" :render-header="renderHeader"
:key="index">
<template slot-scope="scope">
<slot :name="item.value" :row="scope.row"></slot>
</template>
</el-table-column>
<!-- 默认数据 -->
<el-table-column v-else :prop="item.value" :label="item.name" :index="item.index" :width="item.width"
:align="item.align" :fixed="item.fixed
" :sortable="item.sorTable" :column-key="index.toString()
"
:show-overflow-tooltip="showOverflowTooltip" header-align="center"
:align="item.align" :fixed="item.fixed
? item.fixed : false" :sortable="item.sorTable ? true : false
"
:
column-key="index.toString()" :
show-overflow-tooltip="showOverflowTooltip" header-align="center"
:sort-orders="['descending', 'ascending', null]" :slotHeader="slotHeader" :render-header="renderHeader"
:formatter="formatter" :key="index">
</el-table-column>
</template>
<!-- 末端插槽 -->
<slot name="optionColumn"></slot>
</el-table>
<!-- 分页 -->
<el-pagination :total="totalCount" :page-size.sync="limitSize" :current-page.sync="pageNum" :page-sizes="pageSizes"
background layout="prev, pager, next, jumper, ->, sizes, total" class="tablePagination" @size-change="sizeChange"
<el-pagination v-if="pagination" :total="totalCount" :page-size.sync="limitSize" :current-page.sync="pageNum"
:page-sizes="pageSizes" background :layout="layout" class="tablePagination" @size-change="sizeChange"
@next-click="nextClick" @prev-click="prevClick" @current-change="currentChange">
</el-pagination>
</div>
...
...
@@ -47,8 +46,11 @@ export default {
props: {
//dom名称
tableName: { type: String, default: "tables" },
ductName: {
type: String,
default: null
},
//表格数据
ductName: { type: String, default: null },
data: {
type: Array,
default() {
...
...
@@ -161,13 +163,19 @@ export default {
type: Boolean,
default: false,
},
pagination: {
type: Boolean,
default: true
},
layout: {
type: String,
default: 'prev, pager, next, jumper, ->, sizes, total'
}
},
inheritAttrs: false,
data() {
return {
newHeader: this.headerData,
selectTable: [],
checkDisabled: [],
pageNum: 1,
start: -1,
show: false,
...
...
@@ -185,33 +193,25 @@ export default {
// align: "center",
// sorTable: false,
// fixed:false,
// disabled:true,
// },
};
},
created() {
this.newHeader.map((item) => {
this.checkDisabled.push(item.name);
});
},
watch: {
page() {
this.pageNum = this.page;
},
data() {
this.data.forEach((item, index) => {
item.index = index;
});
if (this.selection) {
this.data.forEach((item, index) => {
item.index = index;
});
}
this.$nextTick(() => {
this.$refs.tables.doLayout();
});
},
headerData(val, oldVal) {
this.newHeader = val;
},
},
methods: {
//数据长度切换
sizeChange(val) {
this.$emit("sizeChange", val);
},
...
...
@@ -239,6 +239,12 @@ export default {
});
scrollTo(0, 800);
},
//连续序号
indexAdd(index) {
const page = this.pageNum // 当前页码
const pagesize = this.limitSize // 每页条数
return index + 1 + (page - 1) * pagesize
},
//表格多选,shift连续选择
tableSelect(selection, row) {
let end = row.index;
...
...
@@ -343,14 +349,17 @@ export default {
let start = columnIndex - 1 === this.dragState.start ? `darg_start` : "";
return `${active} ${start}`;
},
cellClassName({ column, columnIndex }) {
return columnIndex - 1 === this.dragState.start ? `darg_start` : "";
},
//数据格式化
formatter(row, column, cellValue, index) {
if (dictLabels[this.ductName][column.property]) {
if (dictLabels[this.ductName][column.property][cellValue]) {
return dictLabels[this.ductName][column.property][cellValue];
if (dictLabels[this.ductName]) {
if (dictLabels[this.ductName][column.property]) {
if (dictLabels[this.ductName][column.property][cellValue]) {
return dictLabels[this.ductName][column.property][cellValue];
}
}
}
if (column.property == "roleNames") {
...
...
@@ -367,7 +376,7 @@ export default {
<style lang="scss">
.tablePagination {
margin-top:
4
0px;
margin-top:
1
0px;
text-align: right;
}
...
...
@@ -380,6 +389,31 @@ export default {
.el-table th {
padding: 0;
.virtual {
position: absolute;
display: block;
width: 0;
height: 0;
top: 0px;
left: 0px;
background: none;
border: none;
}
&.darg_active_left {
.virtual {
border-left: 2px dotted #666;
z-index: 99;
}
}
&.darg_active_right {
.virtual {
border-right: 2px dotted #666;
z-index: 99;
}
}
}
.thead-cell {
...
...
@@ -387,7 +421,6 @@ export default {
display: inline-flex;
flex-direction: column;
align-items: left;
cursor: pointer;
overflow: initial;
&:before {
...
...
@@ -411,13 +444,6 @@ export default {
}
}
.tableInfo {
position: fixed;
right: 30px;
bottom: 100px;
z-index: 99999999;
}
.tableList {
width: 200px;
max-height: 500px;
...
...
@@ -448,12 +474,5 @@ export default {
border-radius: 0;
background: rgba(0, 0, 0, 0.2);
}
.flexList {
width: 100%;
display: flex;
height: 20px;
line-height: 20px;
}
</style>
...
...
src/views/allocationConfig/cargoAllocation/index.vue
View file @
bdd78b8
...
...
@@ -211,8 +211,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "取件日期",
...
...
@@ -220,8 +218,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "取件扫描号",
...
...
@@ -229,8 +225,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "站点",
...
...
@@ -238,8 +232,6 @@ export default {
width: "80",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "运单号",
...
...
@@ -247,8 +239,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "总单号",
...
...
@@ -256,8 +246,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "服务类型",
...
...
@@ -265,17 +253,12 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "服务代码",
value: "serviceCode",
width: "100",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "URSA",
...
...
@@ -283,8 +266,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "申报类型",
...
...
@@ -292,8 +273,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "HandlingCode",
...
...
@@ -301,8 +280,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "subcategory",
...
...
@@ -310,8 +287,6 @@ export default {
width: "140",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "件数",
...
...
@@ -319,8 +294,6 @@ export default {
width: "80",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "实际重量",
...
...
@@ -328,8 +301,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "收件人国家代码",
...
...
@@ -337,17 +308,12 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "品名描述",
value: "nameDescription",
width: "100",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "海关回执状态",
...
...
@@ -355,8 +321,6 @@ export default {
width: "140",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "预审状态",
...
...
@@ -364,17 +328,12 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "航班预审意见",
value: "caPretrialOpinion",
width: "120",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "货物状态",
...
...
@@ -382,8 +341,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "终配航班号",
...
...
@@ -391,8 +348,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "终配航班日期",
...
...
@@ -400,8 +355,6 @@ export default {
width: "140",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "二配航班号",
...
...
@@ -409,8 +362,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "二配航班日期",
...
...
@@ -418,8 +369,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "预配航班号",
...
...
@@ -427,8 +376,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "预配航班日期",
...
...
@@ -436,8 +383,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "ACCS原航班号",
...
...
@@ -445,8 +390,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "ACCS原航班日期",
...
...
@@ -454,8 +397,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "ACCS原航线",
...
...
@@ -463,8 +404,6 @@ export default {
width: "140",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "是否RDE手工录入",
...
...
@@ -472,8 +411,6 @@ export default {
width: "170",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "是否自动",
...
...
@@ -481,44 +418,30 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "发件人账号",
value: "shipperAccount",
width: "120",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "发件公司中文名称",
value: "shipperCompany",
width: "150",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "始发地城市名称",
value: "originCity",
width: "130",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "收件地",
value: "destinationSiteName",
width: "90",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "尺寸",
...
...
@@ -526,26 +449,18 @@ export default {
width: "80",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "大货预审意见(是否可以配置航班)",
value: "bigPretrialOpinion",
width: "250",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "大货预审时间",
value: "bigPretrialTime",
width: "120",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "海关回执时间",
...
...
@@ -553,8 +468,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "航班预审时间",
...
...
@@ -562,8 +475,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "创建人",
...
...
@@ -571,8 +482,6 @@ export default {
width: "90",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "创建时间",
...
...
@@ -580,8 +489,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
], //表头数据
tableData: [], //表格数据
...
...
src/views/basicInformation/caPreReviewImport/index.vue
View file @
bdd78b8
...
...
@@ -17,9 +17,9 @@
</div>
<el-table ref="filterTable" :data="tableData" v-loading="loading" style="width: 100%; margin-top: 20px" size="small"
border>
<el-table-column label="行号" prop="line"
fixed
width="50" align="center">
<el-table-column label="行号" prop="line" width="50" align="center">
</el-table-column>
<el-table-column label="错误信息" prop="errorMessage"
fixed
width="300">
<el-table-column label="错误信息" prop="errorMessage" width="300">
<template slot-scope="scope">
<div v-for="(m, key) in scope.row.errorMessage" :key="key">
{{ m }}
...
...
src/views/basicInformation/flightInformationImport/index.vue
View file @
bdd78b8
...
...
@@ -24,9 +24,9 @@
提示:<span style="color: #1890ff">以下为所提交的数据或出错信息</span>
</div>
<el-table ref="filterTable" :data="tableData" style="margin-top: 20px" size="small" border>
<el-table-column label="行号" prop="line"
fixed
width="50" align="center">
<el-table-column label="行号" prop="line" width="50" align="center">
</el-table-column>
<el-table-column label="错误信息" prop="errorMessage"
fixed
width="200">
<el-table-column label="错误信息" prop="errorMessage" width="200">
<template slot-scope="scope">
<div v-for="(m, key) in scope.row.errorMessage" :key="key">
{{ m }}
...
...
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
bdd78b8
...
...
@@ -307,234 +307,156 @@ export default {
value: "fltDate",
width: "100",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "航班起飞时间",
value: "takeOffTime",
width: "120",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "CutOff时间",
value: "cutOffTime",
width: "110",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "航班号",
value: "fltNo",
width: "100",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "航班路线",
value: "route",
width: "140",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "航班类型",
value: "typeName",
width: "100",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "航班种类",
value: "flightKindName",
width: "100",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "航班状态",
value: "statusName",
width: "100",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "是否自动推送",
value: "pushDateSwitch",
width: "120",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "总重量",
value: "totalWeight",
width: "90",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "原始重量(KG)",
value: "originalWeight",
width: "120",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "已配重量",
value: "alloctedWeight",
width: "90",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "是否需要预审",
value: "needRequired",
width: "130",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "是否开启高低价",
value: "highLowPriceFlg",
width: "140",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "是否限制一票一件",
value: "ticketToPiece",
width: "140",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "额外增重百分比",
value: "extraWeightPercent",
width: "140",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "高价百分比",
value: "highPriceWeightPercent",
width: "120",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "低价百分比",
value: "lowPriceWeightPercent",
width: "120",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "总体积(cm³)",
value: "totalVolume",
width: "100",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "已配体积(cm³)",
value: "alloctedVolume",
width: "120",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "航班优先级",
value: "priorityName",
width: "100",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "配舱优先级",
value: "priorityRuleName",
width: "100",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "创建人",
value: "createUserName",
width: "90",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "创建时间",
value: "createTime",
width: "100",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "最后修改人",
value: "lastModifyUserName",
width: "120",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
{
name: "最后修改时间",
value: "lastModifyTime",
width: "120",
align: "center",
sorTable: false,
fixed: false,
disabled: true,
},
],
//删除失败数据
...
...
src/views/basicInformation/queryCargo/index.vue
View file @
bdd78b8
...
...
@@ -220,8 +220,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true,
},
{
name: "取件日期",
...
...
@@ -229,8 +227,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "取件扫描号",
...
...
@@ -238,8 +234,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "站点",
...
...
@@ -247,8 +241,6 @@ export default {
width: "80",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "运单号",
...
...
@@ -256,8 +248,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "总单号",
...
...
@@ -265,8 +255,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "服务类型",
...
...
@@ -274,8 +262,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "服务代码",
...
...
@@ -283,8 +269,6 @@ export default {
width: "100",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "URSA",
...
...
@@ -292,8 +276,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "推送状态",
...
...
@@ -301,8 +283,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "配舱状态",
...
...
@@ -310,8 +290,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "释放状态",
...
...
@@ -319,8 +297,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "申报类型",
...
...
@@ -328,8 +304,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "ACCSpool",
...
...
@@ -337,8 +311,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "HandlingCode",
...
...
@@ -346,8 +318,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "subcategory",
...
...
@@ -355,8 +325,6 @@ export default {
width: "140",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "件数",
...
...
@@ -364,8 +332,6 @@ export default {
width: "80",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "实际重量",
...
...
@@ -373,8 +339,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "收件人国家代码",
...
...
@@ -382,17 +346,12 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "品名描述",
value: "nameDescription",
width: "100",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "海关回执状态",
...
...
@@ -400,8 +359,6 @@ export default {
width: "140",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "预审状态",
...
...
@@ -409,17 +366,12 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "航班预审意见",
value: "caPretrialOpinion",
width: "120",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "货物状态",
...
...
@@ -427,8 +379,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "终配航班号",
...
...
@@ -436,8 +386,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "终配航班日期",
...
...
@@ -445,8 +393,6 @@ export default {
width: "140",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "二配航班号",
...
...
@@ -454,8 +400,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "二配航班日期",
...
...
@@ -463,8 +407,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "预配航班号",
...
...
@@ -472,8 +414,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "预配航班日期",
...
...
@@ -481,8 +421,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "ACCS原航班号",
...
...
@@ -490,8 +428,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "ACCS原航班日期",
...
...
@@ -499,8 +435,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "ACCS原航线",
...
...
@@ -508,8 +442,6 @@ export default {
width: "140",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "是否RDE手工录入",
...
...
@@ -517,8 +449,6 @@ export default {
width: "170",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "是否自动",
...
...
@@ -526,44 +456,30 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "发件人账号",
value: "shipperAccount",
width: "120",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "发件公司中文名称",
value: "shipperCompany",
width: "150",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "始发地城市名称",
value: "originCity",
width: "130",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "收件地",
value: "destinationSiteName",
width: "90",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "尺寸",
...
...
@@ -571,26 +487,18 @@ export default {
width: "80",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "大货预审意见(是否可以配置航班)",
value: "bigPretrialOpinion",
width: "250",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "大货预审时间",
value: "bigPretrialTime",
width: "120",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "海关回执时间",
...
...
@@ -598,8 +506,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "航班预审时间",
...
...
@@ -607,8 +513,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "创建人",
...
...
@@ -616,8 +520,6 @@ export default {
width: "90",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "创建时间",
...
...
@@ -625,8 +527,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
], //表头数据
releaseHeader: [
...
...
src/views/systemConfig/roleConfig/index.vue
View file @
bdd78b8
...
...
@@ -83,48 +83,36 @@ export default {
value: "name",
width: "150px",
align: "center",
sorTable: false,
disabled: true
},
{
name: "角色状态",
value: "valid",
width: "150px",
align: "center",
sorTable: false,
disabled: true
},
{
name: "创建人",
value: "createUserName",
width: "150px",
align: "center",
sorTable: false,
disabled: true
},
{
name: "创建时间",
value: "createTime",
width: "150px",
align: "center",
sorTable: false,
disabled: true
},
{
name: "修改时间",
value: "updateTime",
width: "150px",
align: "center",
sorTable: false,
disabled: true
},
{
name: "备注",
value: "remark",
width: "400px",
align: "center",
sorTable: false,
disabled: true
},
], //表头数据
roleData: {}, //角色详情
...
...
src/views/systemConfig/userConfig/index.vue
View file @
bdd78b8
...
...
@@ -109,64 +109,48 @@ export default {
value: "loginName",
width: "150px",
align: "center",
sorTable: false,
disabled: true
},
{
name: "用户姓名",
value: "username",
width: "150px",
align: "center",
sorTable: false,
disabled: true
},
{
name: "所属口岸",
value: "portName",
width: "150px",
align: "center",
sortable: false,
disabled: true
},
{
name: "所属角色",
value: "roleNames",
width: "150px",
align: "center",
sorTable: false,
disabled: true
},
{
name: "电子邮箱",
value: "email",
width: "150px",
align: "center",
sorTable: false,
disabled: true
},
{
name: "用户状态",
value: "isValid",
width: "100px",
align: "center",
sorTable: false,
disabled: true,
},
{
name: "修改时间",
value: "updateTime",
width: "150px",
align: "center",
sorTable: false,
disabled: true
},
{
name: "备注",
value: "remark",
width: "150px",
align: "center",
sorTable: false,
disabled: true
},
], //表头数据
userData: {}, //用户详情
...
...
Please
register
or
login
to post a comment