This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
mapaler
/
PADDashFormation
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
163
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
附加显示76不对的问题
tags/v30.3
枫谷剑仙
3 years ago
parent
5859c7574b
commit
3bb71828a2
1 changed files
with
23 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+23
-4
script-json_data.js
+ 23
- 4
script-json_data.js
View File
@@ -2560,10 +2560,29 @@ const specialSearchFunctions = (function() {
if (!skill) return;
const sk = skill.params;
if (sk[1])
return `[7×6]×${sk[0]}T`;
else
return `[6×5]×${sk[0]}T`;
let width, height;
switch (type) {
case 1: {
width = 7;
height = 6;
break;
}
case 2: {
width = 5;
height = 3;
break;
}
case 3: {
width = 6;
height = 5;
break;
}
default: {
width = 6;
height = 5;
}
}
return `[${width}×${height}]×${sk[0]}T`;
}
},
]},
Write
Preview
Loading…
Cancel
Save