Calculator.js 994 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39

export default class Calculator {
	constructor () {
		this.data = {//null
			prin: undefined,//本金
			intRate: undefined,//利率
			bgnIntDay: null,//起息日
			dueDate: null,//到期日
			weekday1:null,//周几1
			weekday2:null,//周几2
			holiday1:null,//节假日1
			holiday2:null,//节假日2
			busiDayNum:null,//业务天数
			annlDayNum:null,//年度天数
			payInt:undefined,//付息
			payblAmt:undefined,//应付金额
			ftp:undefined,//FTP
			tax:6,//税率
			profit:undefined,//收益点
			days1:null,//标准天数1
			days2:null,//标准天数2 
			month1:null,//标准月数1
			month2:null,//标准月数2
			price1:undefined,//价格1
			price2:undefined,//价格2
			realdays:"",//实际天数
			guidePrice:null,//插值指导价
			offer:undefined,//报价
			taxBehindOffer:undefined ,//税后报价
			taxBehindProfit:undefined ,//税后收益
			cost:undefined,//成本
			currCode:"156",//币种代码
			queryDate:null,
			isHolidayFlag:null,


		}
	}
}