//index.js
//获取应用实例
var app = getApp()
Page({
data: {
motto: 'Hello World',
inputValue: '',
userInfo: {},
focus: false,
index: 1,
salary: 0,
array: ['上海', '北京', '广州', '深圳'],
insurance: [
{
category: "养老",
private_percentage: "8",
company_percentage: "22",
},
{
category: "医疗",
private_percentage: "2",
company_percentage: "12",
},
{
category: "失业",
private_percentage: "1",
company_percentage: "1.7",
},
{
category: "工伤",
private_percentage: "0",
company_percentage: "0.5",
},
{
category: "生育",
private_percentage: "0",
company_percentage: "0.8",
},
{
category: "公积金",
private_percentage: "7",
company_percentage: "7",
}
]
},
//事件处理函数
bindViewTap: function() {
wx.navigateTo({
url: '../logs/logs'
})
},
bindPickerChange: function(e) {
console.log('picker发送选择改变,携带值为', e.detail.value)
this.setData({
index: e.detail.value
})
},
onLoad: function () {
console.log('onLoad',this.data)
var that = this
this.total();
//调用应用实例的方法获取全局数据
// app.getUserInfo(function(userInfo){
// //更新数据
// that.setData({
// userInfo:userInfo
// })
//
},
total: function () {
const insurance = this.data.insurance;
console.log(insurance);
let private_total = 0, company_total = 0;
insurance && insurance.forEach((t,i) => {
private_total += parseFloat(t.private_percentage);
company_total += parseFloat(t.company_percentage);
});
this.setData({
private_total,
company_total
})
},
bindKeyInput: function(e) {
console.log(e);
this.setData({
inputValue: e.detail.value
})
},
modalView: function(text) {
wx.showModal({
title: 'Warning',
content: text,
showCancel: false,
success: function(res) {
if (res.confirm) {
console.log('用户点击确定')
}
}
});
},
startCount: function(){
let inputValue = this.data.inputValue;
if(!!inputValue) {
if(!!(inputValue/1)){
if ( inputValue > 0 ) {
if(inputValue > 17814) {
inputValue = 17814;
}else if (inputValue < 2014) {
inputValue = 2014;
}
this.setData({
salary: inputValue,
focus: false,
});
} else {
this.modalView('别开玩笑了,你还欠老板钱?')
}
} else{
this.modalView('请输入数字,OK?')
}
}else {
this.modalView('输入不能为空,请重新输入!');
}
},
resetData: function() {
this.setData({
salary: 0,
focus: true,
inputValue: "",
})
},
})
程序猿000001号
- 粉丝: 1244
- 资源: 880
最新资源
- 基于Vue.js高校学生选课系统-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 基于Vue的米家商城的设计与实现-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 基于Web的视频及游戏管理平台的设计及实现_0816q-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 基于Spring Boot的阳光音乐厅订票系统_9z622-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 基于java语言的考试信息报名系统_5n9zn--论文-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 基于Java的小区物业管理系统设计与实现--论文-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- WORD办公教程网站模板 (H5自适应) WPS办公资源源码
- 基于改进遗传算法的风电场优化调度策略验证,改善风电场整体输出功率,达到最大功率输出,采用matlab编写,内容非常详实和完整
- 基于Layui和SpringBoot动漫商城管理的设计与实现--论文-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 基于spring boot的疫情信息管理系统-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.rar
- 基于Spring boot的名城小区物业管理系统-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.rar
- 基于Spring Boot的企业员工薪酬关系系统的设计-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 基于Spring Boot在线远程考试系统的设计与实现-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.rar
- springboot生活分享共享平台(源码+论文)-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- springboot健身房管理系统006(源码+sql)-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 基于python+django+mysql实现教师评价系统设计与开发
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈