更新记录
1.0.0(2025-06-19)
下载此版本
首次更新 「 金融类app 价格 、手数 自定义键盘切换、可显示最小变动价格 、 最大开仓手数传入自动计算 [1/3仓,1/2仓、、、、等] 」
平台兼容性
uni-app
Vue2 |
Vue3 |
Chrome |
Safari |
app-vue |
app-nvue |
Android |
iOS |
鸿蒙 |
√ |
√ |
√ |
√ |
√ |
- |
- |
- |
- |
微信小程序 |
支付宝小程序 |
抖音小程序 |
百度小程序 |
快手小程序 |
京东小程序 |
鸿蒙元服务 |
QQ小程序 |
飞书小程序 |
快应用-华为 |
快应用-联盟 |
√ |
√ |
√ |
√ |
√ |
√ |
- |
√ |
√ |
√ |
√ |
其他
YIChen-FKeyboard
使用示列
<template>
<view class="content">
<view @click="showclick">显示P</view>
<view @click="shownclick">显示n</view>
<YIChen-FKeyboard :KeyboardType="type" :showKeyb='show' @hide='hide' :maxVolum='maxV' :pricetick='pricetick' @KeyboardClick='KeyboardClick'></YIChen-FKeyboard>
</view>
</template>
<script>
import helper from '@/common/helper.js';
export default {
data() {
return {
show:false,
maxV:0,
type:'',
pricetick:0
}
},
onLoad() {
},
onUnload() {
},
onShow() {
},
methods: {
showclick(){
this.show = true
this.type = 'p'
this.pricetick = 0.05
},
shownclick(){
this.show = true
this.maxV = 100
this.type = 'n'
},
hide(bl){
this.show = bl
},
KeyboardClick(val){
console.log(val);
}
}
}
</script>
<style lang="scss">
</style>
右上角图表可改传值即可 ----- imageKeyicon