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-13 11:25:22 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
02308ea645d2c53c0e9f6a0ff47320ca4be62874
02308ea6
1 parent
4d121fb7
样式修正
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
10 deletions
src/views/allocationConfig/flightRandConfig/index.vue
src/views/systemLog/dmLog/weatherTable.vue
src/views/allocationConfig/flightRandConfig/index.vue
View file @
02308ea
...
...
@@ -32,7 +32,7 @@
</el-form-item>
</el-form>
<Tables ref="newTables" ductName="flightRand" :data="sourceFlightRulesList" :headerData="tableHeaders['flightRand']"
:order="true" :totalCount="total" :loading="loading" :limitSize="queryParams.limit"
:order="true" :
showOverflowTooltip="false" :
totalCount="total" :loading="loading" :limitSize="queryParams.limit"
:limitStart="queryParams.start" :page="queryParams.pageNum" :pageSizes="[20]" :height="tableHeight"
@currentChange="currentChange">
<template slot="optionColumn">
...
...
@@ -66,7 +66,7 @@
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200">
<template slot-scope="scope">
<el-button size="mini" type="text" icon="el-icon-edit"
@click="handleClick(scope.row.actualFlight, 'detail')">查看配置维度</el-button>
@click="handleClick(scope.row.actualFlight, 'detail'
, scope.row.flightDate
)">查看配置维度</el-button>
</template>
</el-table-column>
</el-table>
...
...
@@ -115,7 +115,8 @@
</el-col>
<el-col :span="24">
<el-form-item label="配载航班" prop="flightRank">
<el-input type="textarea" v-model="form.flightRank" :rows="4" maxlength="255"></el-input>
<el-input type="textarea" v-model="flightRank" rows="4" maxlength="255">
</el-input>
</el-form-item>
</el-col>
<el-col :span="24">
...
...
@@ -265,13 +266,14 @@ export default {
},
methods: {
//跳转到查看,修改页面
handleClick(fl
ightiId, handl
e) {
handleClick(fl
tNo, handle, fltDat
e) {
this.openFlightDate = false;
this.$router.push({
name: "FlightAllocConfigInfo",
params: {
handle: handle,
id: flightiId,
fltNo: fltNo,
fltDate: fltDate
},
});
},
...
...
@@ -439,7 +441,7 @@ export default {
this.queryParams.start = val.start;
this.queryParams.pageNum = val.page;
this.findSourceFlightRules();
}
}
,
},
computed: {
sourceFlightNo: {
...
...
@@ -452,16 +454,16 @@ export default {
},
flightRank: {
get: function () {
return this.form.flightRank
return this.form.flightRank
;
},
set: function (val) {
const reg = /^([a-zA-Z0-9]{0,20}(\;[a-zA-Z0-9]{0,20})*)$/
if (reg.test(val)) {
this.
form.flightRank = val
this.
$set(this.form, 'flightRank', val)
}
},
}
},
},
};
</script>
<style>
...
...
src/views/systemLog/dmLog/weatherTable.vue
View file @
02308ea
<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