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-23 17:41:51 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f888ccc389ab4c10d68885c6c3ac5712172a278b
f888ccc3
1 parent
a639de0b
代码提交
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
src/views/allocationConfig/flightAllocConfig/info.vue
src/views/allocationConfig/flightAllocConfig/info.vue
View file @
f888ccc
...
...
@@ -39,13 +39,13 @@
<el-row :gutter="20">
<el-col :span="10">
<el-form-item label="URSA包含" prop="includeUrsa">
<el-input type="textarea" v-model.trim="includeUrsa" :rows="6" resize="none"
<el-input type="textarea" v-model.trim="
form.
includeUrsa" :rows="6" resize="none"
placeholder="URSA之间用分号分隔,例:F2;F3;P_"></el-input>
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="URSA不包含" prop="notIncludeUrsa">
<el-input type="textarea" v-model.trim="notIncludeUrsa" :rows="6" resize="none"
<el-input type="textarea" v-model.trim="
form.
notIncludeUrsa" :rows="6" resize="none"
placeholder="URSA之间用分号分隔,例:F2;F3;P_"></el-input>
</el-form-item>
</el-col>
...
...
@@ -461,6 +461,15 @@ export default {
sub.push(item.englishName)
}
})
if (this.form.includeUrsa && this.form.includeUrsa.length != 0) {
this.form.includeUrsa = this.upCase(this.form.includeUrsa)
}
if (this.form.notIncludeUrsa && this.form.notIncludeUrsa.length != 0) {
this.form.notIncludeUrsa = this.upCase(this.form.notIncludeUrsa)
}
this.form.subCategory = sub
updateOrAddFlight(this.form).then((response) => {
if (response.code === 200) {
...
...
Please
register
or
login
to post a comment