feat: temp

This commit is contained in:
2025-09-30 22:53:31 +08:00
parent b9bba68b25
commit df121df045
2 changed files with 13 additions and 2 deletions

View File

@@ -192,6 +192,17 @@ const NTRPEvaluatePopup = (props: NTRPEvaluatePopupProps, ref) => {
</Button>
</View>
</View>
<View className={styles.picker}>
<Picker
visible={visible}
options={options}
value={ntrp}
onChange={(val) => {
console.log(val);
setNtrp(val.values);
}}
/>
</View>
</View>
)}
</CommonPopup>