irr计算机不能用可能是系统出错,试着重新启动微信试试看,如果还不行,可以联系小程序开发者。
IRR计算器介绍:IRR计算器小程序,是天津霆客计算有限公司开发运营的一款基于微信端的金融类计算小程序。提供的计算模式包括:内部收益率、日利率、保险理财、融资租赁等,同时有使用说明、idea栏、irr客服等功能,为用户提供全方位的计算服务。
1、新建目录calc2、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({
/**
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)