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-10-20 15:44:32 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e924f66c0b16176eb0e3320524612edace336068
e924f66c
1 parent
383b327a
航班顺位查看配载航班增加航线,修正维度新增保留状态的bug,文本修正
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
15 deletions
src/views/allocationConfig/flightAllocConfig/info.vue
src/views/allocationConfig/flightRandConfig/index.vue
src/views/basicInformation/goodsStation/index.vue
src/views/systemLog/dmLog/weatherTable.vue
src/views/allocationConfig/flightAllocConfig/info.vue
View file @
e924f66
<template>
<div style="padding:20px;min-height: 300px;">
<
el-button class="ml20 mb20" size="small" icon="el-icon-back" @click="close">返 回</el-button
>
<
!-- <el-button class="ml20 mb20" size="small" icon="el-icon-back" @click="close">返 回</el-button> --
>
<!-- 空状态 -->
<div v-if="isEmpty">
<el-empty description="未查询到数据!"></el-empty>
...
...
src/views/allocationConfig/flightRandConfig/index.vue
View file @
e924f66
...
...
@@ -60,13 +60,15 @@
<el-table-column type="index" label="序号" align="center">
<template slot-scope="scope">{{ scope.$index + 1 }}</template>
</el-table-column>
<el-table-column label="原航班" align="center" prop="sourceFlightNo" />
<el-table-column label="实际配载航班" align="center" prop="actualFlight" width="280" />
<el-table-column label="航班日期" align="center" prop="flightDate" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200">
<el-table-column label="原航班" align="center" prop="sourceFlightNo" width="150" />
<el-table-column label="实际配载航班" align="center" prop="actualFlight" width="250" />
<el-table-column label="航线" align="center" prop="route" />
<el-table-column label="航班日期" align="center" prop="flightDate" width="150" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="150">
<template slot-scope="scope">
<el-button size="mini" type="text" icon="el-icon-edit"
@click="handleClick(scope.row.actualFlight, 'detail', scope.row.flightDate)">查看配置维度</el-button>
@click="handleClick(scope.row.actualFlight, 'detail', scope.row.flightDate,scope.row.route)">查看配置维度
</el-button>
</template>
</el-table-column>
</el-table>
...
...
@@ -266,15 +268,19 @@ export default {
},
methods: {
//跳转到查看,修改页面
handleClick(fltNo, handle, fltDate) {
handleClick(fltNo, handle, fltDate
, route
) {
this.openFlightDate = false;
this.$router.push({
name: "FlightAllocConfigInfo",
params: {
let obj = {
handle: handle,
fltNo: fltNo,
fltDate: fltDate
},
fltDate: fltDate != null ? fltDate : ' ',
route: route,
routeStatus: 'FlightRandConfig',
status: '1'
}
this.$router.push({
name: "FlightAllocConfigInfo",
params: obj,
});
},
/** 查询原航班顺位规则*/
...
...
src/views/basicInformation/goodsStation/index.vue
View file @
e924f66
...
...
@@ -11,8 +11,8 @@
</el-col>
<el-col :span="6">
<el-form-item label="品名">
<el-input class="formItem" v-model="selectionData.goodsName" placeholder="请输入品名
名称
"
maxlength="50"
clearable />
<el-input class="formItem" v-model="selectionData.goodsName" placeholder="请输入品名
" maxlength="50
"
clearable />
</el-form-item>
</el-col>
</el-row>
...
...
src/views/systemLog/dmLog/weatherTable.vue
View file @
e924f66
<template>
<div style="padding:10px">
<
el-button class="ml20 mb20" size="small" icon="el-icon-back" @click="close">返 回</el-button
>
<
!-- <el-button class="ml20 mb20" size="small" icon="el-icon-back" @click="close">返 回</el-button> --
>
<el-card header="流水信息">
<Tables ref="weatherTable" ductName="weatherTable" :order="true" :border="false" :data="data"
:headerData="tableHeader" :showOverflowTooltip="false" :height="tableHeight" :page="selectData.page"
...
...
Please
register
or
login
to post a comment