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-13 16:49:54 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5e4dea0ae6ea5c522758fdc334ab44ce87ec1c9c
5e4dea0a
1 parent
5677a771
删除无用代码,样式更新
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
28 additions
and
341 deletions
src/assets/languages/dictLabels.js
src/assets/styles/FedEx.scss
src/components/Table/index.vue
src/views/allocationConfig/cargoAllocation/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/assets/languages/dictLabels.js
View file @
5e4dea0
...
...
@@ -7,16 +7,6 @@ let ductLabels = {
"releasing"
:
{
"1"
:
"正在释放"
},
// "cargoAllocationDataStatus": {
// "已推送": "已推送",
// "不推送": "不推送",
// "已配": " ",
// "待推送": "待推送",
// "手动配舱": ' ',
// "已释放": ' ',
// "原航班配舱": ' ',
// "顺位配舱": ' ',
// },
},
"menu"
:
{
//菜单设置
"menuType"
:
{
...
...
src/assets/styles/FedEx.scss
View file @
5e4dea0
...
...
@@ -80,9 +80,9 @@
margin-left
:
20px
;
}
.el-dialog
:not
(
.is-fullscreen
)
{
margin-top
:
6vh
!
important
;
}
//
.el-dialog:not(.is-fullscreen) {
//
margin-top: 6vh !important;
//
}
.el-table
{
...
...
src/components/Table/index.vue
View file @
5e4dea0
...
...
@@ -7,31 +7,32 @@
: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" 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" :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,7 +48,7 @@ export default {
tableName: { type: String, default: "tables" },
ductName: {
type: String,
default:
''
default:
null
},
//表格数据
data: {
...
...
@@ -162,6 +163,14 @@ export default {
type: Boolean,
default: false,
},
pagination: {
type: Boolean,
default: true
},
layout: {
type: String,
default: 'prev, pager, next, jumper, ->, sizes, total'
}
},
inheritAttrs: false,
data() {
...
...
@@ -184,7 +193,6 @@ export default {
// align: "center",
// sorTable: false,
// fixed:false,
// disabled:true,
// },
};
},
...
...
@@ -347,9 +355,11 @@ export default {
},
//数据格式化
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") {
...
...
@@ -366,7 +376,7 @@ export default {
<style lang="scss">
.tablePagination {
margin-top:
4
0px;
margin-top:
1
0px;
text-align: right;
}
...
...
@@ -411,7 +421,6 @@ export default {
display: inline-flex;
flex-direction: column;
align-items: left;
cursor: pointer;
overflow: initial;
&:before {
...
...
@@ -435,13 +444,6 @@ export default {
}
}
.tableInfo {
position: fixed;
right: 30px;
bottom: 100px;
z-index: 99999999;
}
.tableList {
width: 200px;
max-height: 500px;
...
...
@@ -472,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 @
5e4dea0
...
...
@@ -216,8 +216,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "取件日期",
...
...
@@ -225,8 +223,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "取件扫描号",
...
...
@@ -234,8 +230,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "站点",
...
...
@@ -243,8 +237,6 @@ export default {
width: "80",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "运单号",
...
...
@@ -252,8 +244,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "总单号",
...
...
@@ -261,8 +251,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "服务类型",
...
...
@@ -270,17 +258,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",
...
...
@@ -288,8 +271,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "申报类型",
...
...
@@ -297,8 +278,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "HandlingCode",
...
...
@@ -306,8 +285,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "subcategory",
...
...
@@ -315,8 +292,6 @@ export default {
width: "140",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "件数",
...
...
@@ -324,8 +299,6 @@ export default {
width: "80",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "实际重量",
...
...
@@ -333,8 +306,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "收件人国家代码",
...
...
@@ -342,17 +313,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: "海关回执状态",
...
...
@@ -360,8 +326,6 @@ export default {
width: "140",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "预审状态",
...
...
@@ -369,8 +333,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "航班预审意见",
...
...
@@ -378,8 +340,6 @@ export default {
width: "120",
align: "center",
sorTable: false,
fixed: false,
disabled: true
},
{
name: "货物状态",
...
...
@@ -387,8 +347,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "终配航班号",
...
...
@@ -396,8 +354,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "终配航班日期",
...
...
@@ -405,8 +361,6 @@ export default {
width: "140",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "二配航班号",
...
...
@@ -414,8 +368,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "二配航班日期",
...
...
@@ -423,8 +375,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "预配航班号",
...
...
@@ -432,8 +382,6 @@ export default {
width: "120",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "预配航班日期",
...
...
@@ -441,8 +389,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "ACCS原航班号",
...
...
@@ -450,8 +396,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "ACCS原航班日期",
...
...
@@ -459,8 +403,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "ACCS原航线",
...
...
@@ -468,8 +410,6 @@ export default {
width: "140",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "是否RDE手工录入",
...
...
@@ -477,8 +417,6 @@ export default {
width: "170",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "是否自动",
...
...
@@ -486,44 +424,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: "尺寸",
...
...
@@ -531,26 +455,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: "海关回执时间",
...
...
@@ -558,8 +474,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "航班预审时间",
...
...
@@ -567,8 +481,6 @@ export default {
width: "150",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "创建人",
...
...
@@ -576,8 +488,6 @@ export default {
width: "90",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "创建时间",
...
...
@@ -585,8 +495,6 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
], //表头数据
tableData: [], //表格数据
...
...
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
5e4dea0
...
...
@@ -308,234 +308,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: "总体积(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: "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: "航班优先级",
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 @
5e4dea0
...
...
@@ -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,17 +276,13 @@ export default {
width: "100",
align: "center",
sorTable: true,
fixed: false,
disabled: true
},
{
name: "推送状态",
value: "cargo
Push
Status",
value: "cargo
AllocationData
Status",
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 @
5e4dea0
...
...
@@ -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 @
5e4dea0
...
...
@@ -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