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
Elements-SY
2023-08-22 19:01:15 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
85ea5627aef3196d7c7b41bf36632cb3b5225524
85ea5627
2 parents
b3ef0254
72bcfea7
Merge branch 'test' into uat
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
src/assets/styles/element-ui.scss
src/views/allocationConfig/flightAllocConfig/info.vue
src/assets/styles/element-ui.scss
View file @
85ea562
...
...
@@ -91,8 +91,8 @@
display
:
none
;
}
.el-table--mini
th
,
.el-table--mini
td
{
padding
:
12
px
0
!
important
;
padding
:
9
px
0
!
important
;
}
.el-table
th
,
.el-table
td
{
padding
:
12
px
0
!
important
;
padding
:
9
px
0
!
important
;
}
...
...
src/views/allocationConfig/flightAllocConfig/info.vue
View file @
85ea562
...
...
@@ -1034,7 +1034,16 @@ export default {
this.msgWarning('件数前区间不能大于后区间')
} else if (new Number(data.minWeight) > new Number(data.maxWeight)) {
this.msgWarning('重量前区间不能大于后区间')
} else if (data.handlingCode == '' && data.serviceCode == '' && data.subCategory == '' && data.typeOfGoods == '' && data.puporpuxCode == '' && (!data.location || data.location == '') && data.notLocation == '' && (!data.destinationSite || data.destinationSite == '') && data.notDestinationSite && (data.includeUrsa == null || data.includeUrsa == '') && (data.notIncludeUrsa == null || data.notIncludeUrsa == '') && (!data.minNumOfPieces || data.minNumOfPieces == '') && (!data.maxNumOfPieces || data.maxNumOfPieces == '') && (!data.minWeight || data.minWeight == '') && (!data.maxWeight || data.maxWeight == '')) {
} else if (
data.handlingCode == '' && data.serviceCode == ''
&& data.subCategory == '' && data.typeOfGoods == ''
&& data.puporpuxCode == '' && (data.location == null || data.location == '')
&& data.notLocation == '' && (data.destinationSite == null || data.destinationSite == '')
&& data.notDestinationSite == '' && (data.includeUrsa == null || data.includeUrsa == '')
&& (data.notIncludeUrsa == null || data.notIncludeUrsa == '')
&& (!data.minNumOfPieces || data.minNumOfPieces == '')
&& (!data.maxNumOfPieces || data.maxNumOfPieces == '') &&
(!data.minWeight || data.minWeight == '') && (!data.maxWeight || data.maxWeight == '')) {
this.msgWarning('未添加规则信息,请添加后再保存!')
} else {
// this.loading = true
...
...
Please
register
or
login
to post a comment