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
shanyunduo.cheng
2021-12-14 16:40:09 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5c40799e7198a01393bc186b88b228c50e19cffa
5c40799e
1 parent
833af9f0
航班导入页面
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
src/views/systemConfig/roleConfig/index.vue
src/views/systemConfig/roleConfig/index.vue
View file @
5c40799
...
...
@@ -7,8 +7,8 @@
v-for="item in flightType"
:key="item.id"
:label="item.englishName"
:value="item.
englishNam
e"
></el-option>
:value="item.
cod
e"
>
{{item.englishName}}
</el-option>
</el-select>
</el-form-item>
<el-form-item>
...
...
@@ -32,6 +32,7 @@
>
</el-form-item>
</el-form>
<div style="font-size: 12px;font-weight: 700;">提示:<span style="color:#0000FF">以下为所提交的数据或出错信息</span></div>
<el-table
ref="filterTable"
...
...
@@ -122,7 +123,9 @@ export default {
importFlight(file, this.form.type).then((res) => {
if (res.code != 200) {
this.$message.error(res.msg);
this.tableData = res.data;
} else {
this.$message.success('导入成功');
this.tableData = res.data;
}
});
...
...
@@ -152,7 +155,7 @@ export default {
});
}
this.flightType = response.data;
this.form.type = response.data[0].
englishNam
e;
this.form.type = response.data[0].
cod
e;
});
},
};
...
...
Please
register
or
login
to post a comment