微信小程序里面的红胡计算器怎么用

微信小程序里面的红胡计算器怎么用,第1张

红胡计算器是微信小程序上的一款专业的计算工具,可以在数学、物理、化学等多领域进行复杂的计算,非常实用。使用红胡计算器的步骤:1、打开微信小程序,搜索“红胡计算器”并安装;2、打开软件,选择相应的计算领域;3、根据题意输入参数,选择合适的计算方法;4、最后查看结果即可。

微信计算器的领取很简单,你可以打开微信APP,点击左下方的“发现” → 点击“小程序” → 输入“计算器” → 点击“计算器” → 在d出的界面中,点击“立即领取” → 等待安装完成即可使用。

1、新建目录calc

2、pages加上

"pages/calc/calc",

3、 calc.wxml

<view class="container">

<input placeholder="被加数" bindinput="bindInput1" />

<input placeholder="加数" bindinput="bindInput2" />

<button type="primary" bindtap="bindAdd">计算</button>

<input placeholder="结果" value="{{result}}" disabled />

</view>

4、calc.wxss

/* pages/calc/calc.wxss */

.container{

justify-content: flex-start

padding: 30rpx 0

}

.container input{

background-color: #eee

border-radius:3px

text-align:left

width:720rpx

height:100rpx

line-height:100rpx

margin:20rpx

}

.container button{

width:80%

}

5、calc.json

{

"navigationBarBackgroundColor":"#00ff00",

"navigationBarTitleText":"加法计算器",

"navigationBarTextStyle":"white",

"usingComponents": {}

}

6、calc.js

// pages/calc/calc.js

Page({

/**


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/10917045.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-12
下一篇 2023-05-12

发表评论

登录后才能评论

评论列表(0条)

保存