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-03-24 13:16:45 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
c1ea28648ff4b5dbdb88f5d1fc5b5136e46077c7
c1ea2864
2 parents
e8069fa0
5264c9ba
Merge remote-tracking branch 'origin/uat'
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
44 additions
and
21 deletions
src/assets/styles/FedEx.scss
src/settings.js
src/views/allocationConfig/cargoAllocation/index.vue
src/views/allocationConfig/flightAllocConfig/index.vue
src/views/allocationConfig/flightRandConfig/index.vue
src/views/basicInformation/queryCargo/index.vue
src/assets/styles/FedEx.scss
View file @
c1ea286
...
...
@@ -80,10 +80,11 @@
color
:
#6379bb
;
border-bottom
:
1px
solid
#ddd
;
margin
:
8px
10px
25px
10px
;
padding-top
:
15px
;
padding-bottom
:
5px
;
.formItem
{
width
:
100%
;
max-width
:
310px
;
//
max-width: 310px;
}
}
...
...
src/settings.js
View file @
c1ea286
...
...
@@ -42,5 +42,5 @@ module.exports = {
/**
* 版本号
*/
version
:
'version:1.0.
0
'
version
:
'version:1.0.
5
'
}
...
...
src/views/allocationConfig/cargoAllocation/index.vue
View file @
c1ea286
This diff is collapsed. Click to expand it.
src/views/allocationConfig/flightAllocConfig/index.vue
View file @
c1ea286
<template>
<div
style="margin: 40px" class="app-container"
>
<div>
<el-form
:inline="true"
:model="queryParams"
class="demo-form-inline"
size="small"
class="form-header"
size="medium"
label-position="right"
label-width="auto"
>
<el-form-item label="航班号">
<el-input
v-model.trim="purposeOfFlightNo"
placeholder="航班号"
@keyup.enter.native="getList"
clearable
></el-input>
</el-form-item>
<el-form-item label="状态">
<el-select v-model="queryParams.status" placeholder="状态">
<el-select v-model="queryParams.status" placeholder="状态"
clearable
>
<el-option label="有效" value="1"></el-option>
<el-option label="停用" value="3"></el-option>
</el-select>
...
...
@@ -28,21 +31,31 @@
>查询</el-button
>
</el-form-item>
<div>
<el-button
style="margin-bottom: 20px"
type="primary"
icon="el-icon-plus"
size="mini"
@click="
$router.push({
name: 'FlightAllocConfigAdd',
params: { handle: 'add' },
})
"
>添加</el-button
>
</div>
</el-form>
<el-button
style="margin-bottom: 20px"
type="primary"
icon="el-icon-plus"
size="mini"
@click="
$router.push({
name: 'FlightAllocConfigAdd',
params: { handle: 'add' },
})
"
>添加</el-button
<el-table
:data="flyList"
v-loading="loading"
size="small"
highlight-current-row
border
stripe
>
<el-table :data="flyList" v-loading="loading" size="small">
<el-table-column
prop="purposeOfFlightNo"
label="航班号"
...
...
src/views/allocationConfig/flightRandConfig/index.vue
View file @
c1ea286
<template>
<div
class="app-container"
>
<div>
<el-form :model="queryParams" ref="queryForm" :inline="true">
<el-form-item label="ACCS原航班">
<el-input
...
...
@@ -43,6 +43,7 @@
v-model="queryParams.flightDate"
type="date"
placeholder="选择日期"
clearable
>
</el-date-picker>
</el-form-item>
...
...
@@ -77,7 +78,15 @@
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="sourceFlightRulesList">
<el-table
v-loading="loading"
height="550"
size="small"
:data="sourceFlightRulesList"
highlight-current-row
border
stripe
>
<el-table-column type="index" label="序号" align="center">
<template slot-scope="scope">{{ scope.$index + 1 }}</template>
</el-table-column>
...
...
src/views/basicInformation/queryCargo/index.vue
View file @
c1ea286
This diff is collapsed. Click to expand it.
Please
register
or
login
to post a comment