st-comp 0.0.258 → 0.0.260
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/VarietyAiHelper.cjs +2 -2
- package/es/VarietyAiHelper.js +2 -2
- package/es/VarietySearch.cjs +1 -1
- package/es/VarietySearch.js +5 -5
- package/es/style.css +1 -1
- package/lib/bundle.js +1 -1
- package/lib/bundle.umd.cjs +3 -3
- package/lib/{index-e3868724.js → index-107e931f.js} +1379 -1379
- package/lib/{python-453b6f04.js → python-5735efdf.js} +1 -1
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/packages/VarietyAiHelper/index.vue +2 -6
- package/packages/VarietySearch/index.vue +7 -7
package/package.json
CHANGED
|
@@ -672,19 +672,15 @@ defineExpose({
|
|
|
672
672
|
.message-content {
|
|
673
673
|
align-items: flex-start;
|
|
674
674
|
.message-text {
|
|
675
|
-
background: white;
|
|
676
|
-
color: #2c3e50;
|
|
677
675
|
border-radius: 18px 18px 18px 4px;
|
|
678
676
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
679
|
-
border: 1px solid rgba(102, 126, 234,
|
|
677
|
+
border: 1px solid rgba(102, 126, 234, .3);
|
|
680
678
|
}
|
|
681
679
|
.message-json {
|
|
682
680
|
width: 100%;
|
|
683
|
-
background: white;
|
|
684
|
-
color: #2c3e50;
|
|
685
681
|
border-radius: 18px 18px 18px 4px;
|
|
686
682
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
687
|
-
border: 1px solid rgba(102, 126, 234,
|
|
683
|
+
border: 1px solid rgba(102, 126, 234, .3);
|
|
688
684
|
:deep(.parsed-conditions) {
|
|
689
685
|
margin-top: 10px;
|
|
690
686
|
.parsed-conditions-item {
|
|
@@ -405,18 +405,18 @@ defineExpose({
|
|
|
405
405
|
break;
|
|
406
406
|
// 成交额(期权)
|
|
407
407
|
case "turnover":
|
|
408
|
-
if (!["", null].includes(item.range[0])) searchOptionDto.minTurnover = item.range[0] * 10000;
|
|
409
|
-
if (!["", null].includes(item.range[1])) searchOptionDto.maxTurnover = item.range[1] * 10000;
|
|
408
|
+
if (item.radioType === "0" && !["", null].includes(item.range[0])) searchOptionDto.minTurnover = item.range[0] * 10000;
|
|
409
|
+
if (item.radioType === "0" && !["", null].includes(item.range[1])) searchOptionDto.maxTurnover = item.range[1] * 10000;
|
|
410
410
|
break;
|
|
411
|
-
// 成交量
|
|
411
|
+
// 成交量(期权)
|
|
412
412
|
case "volume":
|
|
413
|
-
if (!["", null].includes(item.range[0])) searchOptionDto.minVolume = item.range[0];
|
|
414
|
-
if (!["", null].includes(item.range[1])) searchOptionDto.maxVolume = item.range[1];
|
|
413
|
+
if (item.radioType === "0" && !["", null].includes(item.range[0])) searchOptionDto.minVolume = item.range[0];
|
|
414
|
+
if (item.radioType === "0" && !["", null].includes(item.range[1])) searchOptionDto.maxVolume = item.range[1];
|
|
415
415
|
break;
|
|
416
416
|
// 持仓量
|
|
417
417
|
case "openInterest":
|
|
418
|
-
if (!["", null].includes(item.range[0])) searchOptionDto.minOpenInterest = item.range[0];
|
|
419
|
-
if (!["", null].includes(item.range[1])) searchOptionDto.maxOpenInterest = item.range[1];
|
|
418
|
+
if (item.radioType === "0" && !["", null].includes(item.range[0])) searchOptionDto.minOpenInterest = item.range[0];
|
|
419
|
+
if (item.radioType === "0" && !["", null].includes(item.range[1])) searchOptionDto.maxOpenInterest = item.range[1];
|
|
420
420
|
break;
|
|
421
421
|
// 认沽认购
|
|
422
422
|
case "optionsCpType":
|