房贷计算器小程序

这篇具有很好参考价值的文章主要介绍了房贷计算器小程序。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

最近使用uniapp开发了个房贷计算器小程序,感觉uniapp对于开发小程序来说还是非常不错的,目前适配了微信小程序、qq小程序和支付宝小程序,由于抖音小程序和百度小程序目前不支持个人开发,暂时还没调试。
首先上几个截图:

房贷计算器小程序源码,微信小程序,小程序房贷计算器小程序源码,微信小程序,小程序房贷计算器小程序源码,微信小程序,小程序

 其实这个小程序页面并不复杂,主要是各种计算公式,下面分享一下用到的公式:

1.等额本息公式:

    			// 等额本息计算方法
			computedBX(total, rate, mouths) {
				// 等额本息  每月还本付息金额=[贷款本金×月利率×(1+月利率)^还款月数]÷[(1+月利率)^还款月数-1]
				// 每月应还利息=贷款本金×月利率×〔(1+月利率)^还款月数-(1+月利率)^(还款月序号-1)〕÷〔(1+月利率)^还款月数-1〕
				// 每月应还本金=贷款本金×月利率×(1+月利率)^(还款月序号-1)÷〔(1+月利率)^还款月数-1〕
				// 总利息=还款月数×每月月供额-贷款本金
				let result = (total * rate * Math.pow(1 + rate, mouths)) / (Math.pow(1 + rate, mouths) - 1)

				// result = result.toFixed(2)
				let total_rate = result.toFixed(2) * mouths
				let list = []
				for (let i = 1; i <= mouths; i++) {
					//每月应还本金=贷款本金×月利率×(1+月利率)^(还款月序号-1)÷〔(1+月利率)^还款月数-1〕
					let mybj = (total * rate * Math.pow(1 + rate, i - 1) / (Math.pow(1 + rate, mouths) - 1)).toFixed(2)
					//每月应还利息=贷款本金×月利率×〔(1+月利率)^还款月数-(1+月利率)^(还款月序号-1)〕÷〔(1+月利率)^还款月数-1〕
					let mylx = (total * rate * (Math.pow(1 + rate, mouths) - Math.pow(1 + rate, i - 1)) / (Math.pow(1 + rate, mouths) - 1)).toFixed(2)
					list.push({
						res: Number( result.toFixed(2) ),
						yu: Number( (total_rate - result.toFixed(2) * i).toFixed(2) ),
						mybj:mybj,
						mylx:mylx
					})
				}
				// 总利息
				let total_lixi = Number( (mouths * result - total).toFixed(2) )
				// 总利息 + 贷款本金
				let total_er = Number( (Number(total_lixi) + Number(total)).toFixed(2) )
				
				return {
					result: Number( result.toFixed(2) ),
					total_lixi,
					total_er,
					list,
					total,
					dijian: 0
				}
			}

 2.等额本金计算公式:

			// 等额本金计算方法
			// 贷款本金  月利率 还款月数 
			computedBJ(total, rate, mouths) {
				// 等额本金的计算公式为: 每月还本付息金额=(本金/还款月数)+(本金-累计已还本金)×月利率
				//  每月应还本金=贷款本金÷还款月数
				// 每月应还利息=剩余本金×月利率=(贷款本金-已归还本金累计额)×月利率。
				// 每月月供递减额=每月应还本金×月利率=贷款本金÷还款月数×月利率
				// 总利息=(还款月数+1)×贷款总额×月利率÷2
				
				// 月供
				let res
				// 已还本金
				let yhbj = 0;
				// 已还的本息
				let yhbx = 0
				// 递减金额
				let dijian
				res = (total / mouths) + (total - yhbj) * rate
				res = res.toFixed(2)
				yhbx = res + yhbx
				let result = Number(res)
				let total_lixi = (mouths + 1) * total * rate / 2
				let total_er = total_lixi + total
				let list = []
				//每月本金 每月归还本金=贷款总额÷归还月数;
				let mybj = (total / mouths).toFixed(2)
				//每月利息 、每月还款利息=(贷款总额-累计已还本金)×月利率;
				let mylx = (total * rate).toFixed(2)
				list.push({
					res: res,
					yu: (total_er - yhbx).toFixed(2),
					mybj:mybj,
					mylx:mylx
					
				})
				dijian =  Number((total / mouths * rate).toFixed(2))
				for (let i = 1; i < mouths; i++) {
					yhbj = total / mouths * i
					res = (total / mouths) + (total - yhbj) * rate
					res = res.toFixed(2)
					
					yhbx = Number(res) + Number(yhbx)
					mylx = ((total - mybj * i) * rate).toFixed(2)
					list.push({
						res: res,
						yu: Number( (total_er - yhbx).toFixed(2) ),
						mybj:mybj,
						mylx:mylx
						
					})
				}
				return {
					result,
					total_lixi,
					total_er,
					list,
					total,
					dijian
				}
			}

 3.提前还贷所有逻辑代码:

            //一次性提前还款计算(等额本息)
			calculateEqualPrincipalAndInterest(){
				let principal = this.datas.ydkze * 10000
				let monthRate = this.datas.yfdlv / (100 * 12);//月利率
				let months = this.datas.ydkqx * 12
				let payTimes = this.monthsBetw(this.datas.schkrq,this.datas.tqhkrq)
				
				let preLoan = (principal * monthRate * Math.pow((1 + monthRate), months)) / (Math.pow((1 + monthRate), months) - 1);//每月还款金额
				let totalMoney = preLoan * months;//还款总额
				let interest = totalMoney - principal;//还款总利息
				let leftLoan = principal * Math.pow(1 + monthRate, payTimes) - preLoan * (Math.pow(1 + monthRate, payTimes) - 1) / monthRate;//n个月后欠银行的钱
				
				this.payLoan = principal - leftLoan;//已还本金
				this.payTotal = preLoan * payTimes;//已还总金额
				this.payInterest = this.payTotal - this.payLoan;//已还利息
				this.totalPayAhead = leftLoan * (1 + monthRate);//剩余一次还清
				this.saveInterest = totalMoney - this.payTotal - this.totalPayAhead;节省利息
				
				this.principal = principal
				this.interest = interest
				this.totalMoney = totalMoney
				
				this.payTimes = payTimes
				
				this.preLoan = preLoan
				this.leftMonth = 0
				this.leftLoan = leftLoan//剩余还款本金
			},
			//一次性提前还款计算(等额本金)
			calculateEqualPrincipal(){
				let principal = this.datas.ydkze * 10000
				let monthRate = this.datas.yfdlv / (100 * 12);//月利率
				let months = this.datas.ydkqx * 12
				let payTimes = this.monthsBetw(this.datas.schkrq,this.datas.tqhkrq)
				
				
				let prePrincipal = principal / months;//每月还款本金
				let firstMonth = prePrincipal + principal * monthRate;//第一个月还款金额
				let decreaseMonth = prePrincipal * monthRate;//每月利息递减
				let interest = (months + 1) * principal * monthRate / 2;//还款总利息
				let totalMoney = principal + interest;//还款总额
				
				this.payLoan = prePrincipal * payTimes;//已还本金
				this.leftLoan = principal - this.payLoan//剩余还款本金
				this.payInterest = (principal * payTimes - prePrincipal * (payTimes - 1) * payTimes / 2) * monthRate;//已还利息
				this.payTotal = this.payLoan + this.payInterest;//已还总额
				this.totalPayAhead = (principal - this.payLoan) * (1 + monthRate);//提前还款金额(剩余本金加上剩余本金当月利息)
				this.saveInterest = totalMoney - this.payTotal - this.totalPayAhead;//节省利息
				
				this.principal = principal
				this.interest = interest
				this.totalMoney = totalMoney
				
				this.payTimes = payTimes
				
				this.prePrincipal = prePrincipal
				this.firstMonth = firstMonth
				this.decreaseMonth = decreaseMonth
				this.leftMonth = 0
			},
			//部分提前还款计算(等额本息、月供不变)
			calculateEqualPrincipalAndInterestApart(){
				let principal = this.datas.ydkze * 10000
				let monthRate = this.datas.yfdlv / (100 * 12);//月利率
				let months = this.datas.ydkqx * 12
				let payTimes = this.monthsBetw(this.datas.schkrq,this.datas.tqhkrq)
				let aheadPrincipalTotal = this.datas.tqhkje * 10000
				
				let preLoan = (principal * monthRate * Math.pow((1 + monthRate), months)) / (Math.pow((1 + monthRate), months) - 1);//每月还款金额
				let totalMoney = preLoan * months;//还款总额
				let interest = totalMoney - principal;//还款总利息
				let leftLoanBefore = principal * Math.pow(1 + monthRate, payTimes) - preLoan * (Math.pow(1 + monthRate, payTimes) - 1) / monthRate;//提前还款前欠银行的钱
				
				
				//提前还房贷的利息计算公式为:剩余贷款本金×[(提前还款日-上次扣款日)的天数]×日利率(日利率=年利率÷360)
				let lx = leftLoanBefore * this.datas.yfdlv / (100 * 360) * this.dayCha(this.datas.schkrq,this.datas.tqhkrq)
				let aheadPrincipal = aheadPrincipalTotal - lx
				
				// let leftLoan = principal * Math.pow(1 + monthRate, payTimes + 1) - preLoan * (Math.pow(1 + monthRate, payTimes + 1) - 1) / monthRate - aheadPrincipal;//提前还款后欠银行的钱
				let leftLoan = leftLoanBefore - aheadPrincipal;
				
				let payLoan = principal - leftLoanBefore;//已还本金
				let payTotal = preLoan * payTimes;//已还总金额
				let payInterest = payTotal - payLoan;//已还利息
				// let aheadTotalMoney = aheadPrincipal + preLoan;//提前还款总额
				let aheadTotalMoney = aheadPrincipal
				//计算剩余还款期限
				let leftMonth =  Math.floor(Math.log(preLoan / (preLoan - leftLoan * monthRate)) / Math.log(1 + monthRate));
				let newPreLoan = (leftLoan * monthRate * Math.pow((1 + monthRate), leftMonth)) / (Math.pow((1 + monthRate), leftMonth) - 1);//剩余贷款每月还款金额
				let leftTotalMoney = newPreLoan * leftMonth;//剩余还款总额
				// let leftInterest = leftTotalMoney - (leftLoan - aheadPrincipal);//剩余还款总利息
				let leftInterest = leftTotalMoney - leftLoan
				this.saveInterest = totalMoney - aheadTotalMoney - leftTotalMoney - payTotal;//节省利息
				
				this.principal = principal
				this.interest = interest
				this.totalMoney = totalMoney
				this.payTotal = payTotal
				this.payLoan = payLoan
				this.payInterest = payInterest
				
				this.payTimes = payTimes
				
				this.leftTotalMoney = leftTotalMoney
				this.leftInterest = leftInterest
				this.aheadPrincipal = aheadPrincipal
				
				this.newPreLoan = newPreLoan
				this.preLoan = preLoan
				
				this.leftMonth = leftMonth
				this.leftTotalMoney = leftTotalMoney
				this.leftInterest = leftInterest
				this.leftLoan = leftLoan
				
				this.aheadPrincipalTotal = aheadPrincipalTotal
				this.lx = lx
				

			},
			//部分提前还款计算(等额本金、月供不变)
			calculateEqualPrincipalApart(){
				let principal = this.datas.ydkze * 10000
				let monthRate = this.datas.yfdlv / (100 * 12);//月利率
				let months = this.datas.ydkqx * 12
				let payTimes = this.monthsBetw(this.datas.schkrq,this.datas.tqhkrq)
				let aheadPrincipalTotal = this.datas.tqhkje * 10000
				
				
				let prePrincipal = principal / months;//每月还款本金
				let firstMonth = prePrincipal + principal * monthRate;//第一个月还款金额
				let decreaseMonth = prePrincipal * monthRate;//每月利息递减
				let interest = (months + 1) * principal * monthRate / 2;//还款总利息
				let totalMoney = principal + interest;//还款总额
				let payLoan = prePrincipal * payTimes;//已还本金
				let payInterest = (principal * payTimes - prePrincipal * (payTimes - 1) * payTimes / 2) * monthRate;//已还利息
				let payTotal = payLoan + payInterest;//已还总额
				
				//提前还房贷的利息计算公式为:剩余贷款本金×[(提前还款日-上次扣款日)的天数]×日利率(日利率=年利率÷360)
				let lx = (principal - payLoan) * this.datas.yfdlv / (100 * 360) * this.dayCha(this.datas.schkrq,this.datas.tqhkrq)
				let aheadPrincipal = aheadPrincipalTotal - lx
				
				// let aheadTotalMoney = (principal - payLoan) * monthRate + aheadPrincipal + prePrincipal;//提前还款金额
				let aheadTotalMoney = aheadPrincipal;
				// let leftLoan = principal - aheadPrincipal - payLoan - prePrincipal;//剩余金额
				let leftLoan = principal - aheadPrincipal - payLoan;
				let leftMonth = Math.floor(leftLoan / prePrincipal);剩余还款期限
				let newPrePrincipal = leftLoan / leftMonth;//新的每月还款本金
				let newFirstMonth = newPrePrincipal + leftLoan * monthRate;//新的第一个月还款金额
				let newDecreaseMonth = newPrePrincipal * monthRate;//新的每月利息递减
				let leftInterest = (leftMonth + 1) * leftLoan * monthRate / 2;//还款总利息
				let leftTotalMoney = leftLoan + leftInterest;//剩余还款总额
				this.saveInterest = totalMoney - payTotal - aheadTotalMoney - leftTotalMoney;//节省利息
				
				this.principal = principal
				this.interest = interest
				this.totalMoney = totalMoney
				
				this.payTotal = payTotal
				this.payLoan = payLoan
				this.payInterest = payInterest
				
				this.payTimes = payTimes
				
				this.leftTotalMoney = leftTotalMoney
				this.leftLoan = leftLoan
				this.leftInterest = leftInterest
				this.aheadPrincipal = aheadPrincipal
				
				this.newPrePrincipal = newPrePrincipal
				this.newFirstMonth = newFirstMonth
				this.newDecreaseMonth = newDecreaseMonth
				
				this.prePrincipal = prePrincipal
				this.firstMonth = firstMonth
				this.decreaseMonth = decreaseMonth
				
				this.leftMonth = leftMonth
				
				this.aheadPrincipalTotal = aheadPrincipalTotal
				this.lx = lx
			
			},
			//部分提前还款计算(等额本息、期限不变)
			calculateEqualPrincipalAndInterestApart2(){
				let principal = this.datas.ydkze * 10000
				let monthRate = this.datas.yfdlv / (100 * 12);//月利率
				let months = this.datas.ydkqx * 12
				let payTimes = this.monthsBetw(this.datas.schkrq,this.datas.tqhkrq)
				let aheadPrincipalTotal = this.datas.tqhkje * 10000
				
				let leftMonth = months - payTimes;//剩余还款期限
				
				let preLoan = (principal * monthRate * Math.pow((1 + monthRate), months)) / (Math.pow((1 + monthRate), months) - 1);//每月还款金额
				let totalMoney = preLoan * months;//还款总额
				let interest = totalMoney - principal;//还款总利息
				let leftLoanBefore = principal * Math.pow(1 + monthRate, payTimes) - preLoan * (Math.pow(1 + monthRate, payTimes) - 1) / monthRate;//提前还款前欠银行的钱
				// let leftLoan = principal * Math.pow(1 + monthRate, payTimes + 1) - preLoan * (Math.pow(1 + monthRate, payTimes + 1) - 1) / monthRate;//提前还款后银行的钱
				
				//提前还房贷的利息计算公式为:剩余贷款本金×[(提前还款日-上次扣款日)的天数]×日利率(日利率=年利率÷360)
				let lx = leftLoanBefore * this.datas.yfdlv / (100 * 360) * this.dayCha(this.datas.schkrq,this.datas.tqhkrq)
				let aheadPrincipal = aheadPrincipalTotal - lx
				
				let leftLoan = leftLoanBefore - aheadPrincipal
				let payLoan = principal - leftLoanBefore;//已还本金
				let payTotal = preLoan * payTimes;//已还总金额
				let payInterest = payTotal - payLoan;//已还利息
				// let aheadTotalMoney = preLoan + aheadPrincipal;//下个月还款金额
				let aheadTotalMoney = aheadPrincipal;
				let newPreLoan = ((leftLoan) * monthRate * Math.pow((1 + monthRate), months - payTimes - 1)) / (Math.pow((1 + monthRate), months - payTimes - 1) - 1);//下个月起每月还款金额
				let leftTotalMoney = newPreLoan * (months - payTimes);//剩余还款总额
				// let leftInterest = leftTotalMoney - (leftLoan - aheadPrincipal);//剩余还款总利息
				let leftInterest = leftTotalMoney - leftLoan 
				this.saveInterest = totalMoney - payTotal - aheadTotalMoney - leftTotalMoney;//节省利息
				
				this.principal = principal
				this.interest = interest
				this.totalMoney = totalMoney
				
				this.payTotal = payTotal
				this.payLoan = payLoan
				this.payInterest = payInterest
				
				this.payTimes = payTimes
				
				this.leftTotalMoney = leftTotalMoney
				this.leftLoan = leftLoan
				this.leftInterest = leftInterest
				this.aheadPrincipal = aheadPrincipal
				
				this.newPreLoan = newPreLoan
				this.preLoan = preLoan
				this.leftMonth = leftMonth
				
				this.aheadPrincipalTotal = aheadPrincipalTotal
				this.lx = lx
			
			},
			//部分提前还款计算(等额本金、期限不变)
			calculateEqualPrincipalApart2(){
				let principal = this.datas.ydkze * 10000
				let monthRate = this.datas.yfdlv / (100 * 12);//月利率
				let months = this.datas.ydkqx * 12
				let payTimes = this.monthsBetw(this.datas.schkrq,this.datas.tqhkrq)
				let aheadPrincipalTotal = this.datas.tqhkje * 10000
				
				let prePrincipal = principal / months;//每月还款本金
				let firstMonth = prePrincipal + principal * monthRate;//第一个月还款金额
				let decreaseMonth = prePrincipal * monthRate;//每月利息递减
				let interest = (months + 1) * principal * monthRate / 2;//还款总利息
				let totalMoney = principal + interest;//还款总额
				let payLoan = prePrincipal * payTimes;//已还本金
				let payInterest = (principal * payTimes - prePrincipal * (payTimes - 1) * payTimes / 2) * monthRate;//已还利息
				let payTotal = payLoan + payInterest;//已还总额
				
				//提前还房贷的利息计算公式为:剩余贷款本金×[(提前还款日-上次扣款日)的天数]×日利率(日利率=年利率÷360)
				let lx = (principal - payLoan) * this.datas.yfdlv / (100 * 360) * this.dayCha(this.datas.schkrq,this.datas.tqhkrq)
				let aheadPrincipal = aheadPrincipalTotal - lx
				
				
				// let aheadTotalMoney = (principal - payLoan) * monthRate + aheadPrincipal + prePrincipal;//提前还款金额
				let aheadTotalMoney = aheadPrincipal;
				let leftMonth = months - payTimes;//剩余还款期限
				// let leftLoan = principal - aheadPrincipal - payLoan - prePrincipal;
				let leftLoan = principal - aheadPrincipal - payLoan;
				let newPrePrincipal = leftLoan / leftMonth;//新的每月还款本金
				let newFirstMonth = newPrePrincipal + leftLoan * monthRate;//新的第一个月还款金额
				let newDecreaseMonth = newPrePrincipal * monthRate;//新的每月利息递减
				let leftInterest = (leftMonth + 1) * leftLoan * monthRate / 2;//还款总利息
				let leftTotalMoney = leftLoan + leftInterest;//剩余还款总额
				this.saveInterest = totalMoney - payTotal - aheadTotalMoney - leftTotalMoney;节省利息
				
				this.principal = principal
				this.interest = interest
				this.totalMoney = totalMoney
				
				this.payTotal = payTotal
				this.payLoan = payLoan
				this.payInterest = payInterest
				
				this.payTimes = payTimes
				
				this.leftTotalMoney = leftTotalMoney
				this.leftLoan = leftLoan
				this.leftInterest = leftInterest
				this.aheadPrincipal = aheadPrincipal
				
				this.newPrePrincipal = newPrePrincipal
				this.newFirstMonth = newFirstMonth
				this.newDecreaseMonth = newDecreaseMonth
				
				this.prePrincipal = prePrincipal
				this.firstMonth = firstMonth
				this.decreaseMonth = decreaseMonth
				this.leftMonth = leftMonth
				
				this.aheadPrincipalTotal = aheadPrincipalTotal
				this.lx = lx
			
			}

最后附上我的微信小程序,由于不能放二维码,大家可以去微信搜一下,名字叫做:房贷计算器工具文章来源地址https://www.toymoban.com/news/detail-665832.html

到了这里,关于房贷计算器小程序的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • PHP 之房贷计算器、组合贷

    2024年02月13日
    浏览(23)
  • 基于html5+javascript技术开发的房贷利率计算器

    房贷计算器是一款专为购房者设计的实用工具应用,其主要功能是帮助用户详细计算房贷的还款金额、利息以及还款计划等。通过这款软件,用户可以更加便捷地了解到自己的还款情况和计划,从而更好地规划自己的财务。下面将对房贷计算器进行详细的介绍。 房贷计算器体

    2024年02月08日
    浏览(32)
  • Java后端开发——房贷计算器(Ajax版、Json版、等额本息+等额本金)

    1.新建一个JavaWeb项目hslcalweb,设置tomcat10。 2.创建房贷计算器JavaBean:HslCalBean.java,增加以下的属性,并生成Getter/Setter方法。 3.生成默认和带三个已知参数的构造方法。 4.增加计算器的计算方法cal() 6.新建一个控制器Servlet:HslCalServlet.java,映射的URL:/hslcal,从浏览器输入参数调

    2024年02月08日
    浏览(25)
  • 微信小程序案例——计算器

    1、创建项目 按照惯例,做一些初始化工作 2、设置导航栏 在 app.json 文件设置 window 配置项 pages/index/index.wxml 文件 1、编写页面整体结构 2、编写结果区域结构 两行内容:第一行是当前的计算式,第二行是当前计算结果 3、编写按钮区域第一行按钮的结构 第一行包含四个按钮:

    2024年04月11日
    浏览(27)
  • 微信小程序————简易计算器

        点击页面数字按键可以计算简单的加减乘除数据运算。 页面显示   大概逻辑是当点第一次击数字键的时候要有个变量来存储这个点击的数,然后再来个记录点击运算符的变量,等要算的数全输入后,最后“=”后把前面输入的数字和运算符以字符串的形式显示在上屏幕上

    2024年02月17日
    浏览(117)
  • 【微信小程序】计算器案例

    🏆今日学习目标:第二十一期——计算器案例 ✨个人主页:颜颜yan_的个人主页 ⏰预计时间:30分钟 🎉专栏系列:我的第一个微信小程序 嗨嗨嗨,好久没更新小程序专栏了,本期浅浅用小程序写一个计算器。 最终代码会上传至资源噢~ 新建一个项目,在app.json中配置文件导

    2024年01月17日
    浏览(39)
  • 微信小程序-简易计算器

    微信小程序-简易计算器,满足日常所用的的加减乘除计算 一、前期准备工作 软件环境:微信开发者工具 官方下载地址:微信开发者工具下载地址与更新日志 | 微信开放文档 1、基本需求。 简易计算器 满足日常所用的的加减乘除计算 带历史记录,查看过往计算 2、案例目录结构

    2024年02月04日
    浏览(34)
  • 微信小程序——简单计算器

    实现代码: computer.json 欢迎大家阅读,本人见识有限,写的博客难免有错误或者疏忽的地方,还望各位指点,在此表示感激不尽。文章持续更新中…

    2024年02月06日
    浏览(30)
  • 微信小程序3-2 计算器

    1、创建项目 创建项目微信小程序项目 - 计算器 单击【确定】按钮 按照惯例做一些初始化工作 2、设置导航栏 在 app.json 文件设置 window 配置项 pages/index/index.wxml 文件 1、编写页面的整体结构 2、编写结果区域的结构 两行内容:第一行是当前的计算式,第二行是当前计算结果

    2024年04月26日
    浏览(34)
  • 微信小程序如何制作简易计算器

    1、首先在浏览器中输入\\\"GitHub - dunizb/wxapp-sCalc: :speech_balloon:微信小程序版简易计算器demo,适合入门练手\\\"网址,输入完成后会进入到以下这个界面: 2、点击旁边绿色的按键 3、点击之后会有以下几个选项: 点击最后一行的Download ZIP,下载一个文件 然后解压一下这个文件,解压完

    2024年04月23日
    浏览(47)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包