export default {
	methods: {
		changeIschktyp() {
      //给页面是否需要校验赋初值
			if (this.model.gcdgrp.rec.ischktyp == '') {
				this.model.gcdgrp.rec.ischktyp = "N";
      }
      
      this.model.gcdgrp.rec.prechkdat = ''

		},
		defaultFunc () {
			// 根据max2的值是否大于0判断是否勾选附加金额字段
			let oldMax2Amt = this.model.gidgrp.cbs.max2.amt
			if (oldMax2Amt && Number(oldMax2Amt) > 0) {
				this.model.adaflg = 'X'
			}
		},
		calcName() {
			this.model.gcdgrp.rec.nam = this.model.gcdgrp.cbs.max.cur + " " + this.model.gcdgrp.cbs.max.amt + " " + this.model.gcdgrp.apl.pts.nam;
			this.model.gcdgrp.rec.nam = this.model.gcdgrp.rec.nam.slice(0, 40);
		},
	},
}
//你可以添加自动default处理