|
|
@@ -288,6 +288,7 @@ const handelRK = (scope) => {
|
|
|
if (scope.row.keepPointRatio && scope.row.addThrow || scope.row.keepPointRatio && scope.row.addThrow === 0) {
|
|
|
scope.row.export = scope.row.inlet + scope.row.addThrow - scope.row.keepPointRatio
|
|
|
}
|
|
|
+ if (scope.row.inlet < scope.row.export) scope.row.export = scope.row.inlet;handelCK(scope)
|
|
|
}
|
|
|
const handelCK = (scope) => {
|
|
|
if (scope.row.inlet && scope.row.addThrow || scope.row.inlet && scope.row.addThrow === 0) {
|
|
|
@@ -302,6 +303,7 @@ const handelCK = (scope) => {
|
|
|
if (scope.row.keepPointRatio) {
|
|
|
scope.row.exportKeepPointRatio = scope.row.export - scope.row.keepPointRatio
|
|
|
}
|
|
|
+ if (scope.row.exportKeepPointRatio > scope.row.export) scope.row.exportKeepPointRatio = scope.row.export
|
|
|
}
|
|
|
const handelJT = (scope) => {
|
|
|
if (scope.row.inlet && scope.row.export) {
|