其他分享
首页 > 其他分享> > 我的代码笔记

我的代码笔记

作者:互联网

public/assets/js/backend/support/support.js
1 update  student  set s_birth = DATE_FORMAT(SUBSTR(idcard,7,8),'%Y-%m-%d') ,s_age=2022-SUBSTR(idcard,7,4)
2 where LENGTH(idcard)=18 
3 and idcard regexp '^[1-9][[:digit:]]{7}((0[[:digit:]])|(1[0-2]))(([0|1|2][[:digit:]])|3[0-1])[[:digit:]]{3}$|^[1-9][[:digit:]]{5}[1-9][[:digit:]]{3}((0[[:digit:]])|(1[0-2]))(([0|1|2][[:digit:]])|3[0-1])[[:digit:]]{3}([0-9]|X)$'
更新年龄
1 {field: 'sup_money', title: __('Sup_money'),formatter:function(value,row,index){
2 if(row.sup_type=="未选择"){return null}else{
3 if((row.sup_type=="建档立卡" ||"农村低保" ||"困难残疾"||"特困供养"||"经济困难") && row.sup_lodge=="是"){return 625}else{
4 if((row.sup_type=="建档立卡" ||"农村低保" ||"困难残疾"||"特困供养"||"经济困难") && row.sup_lodge=="否"){return 312.5}}}}},
新增统计
1 protected $searchFields = 'id,c_name,c_age,c_studytype,c_studyarea,c_school,c_disability,c_admission,c_createtype,c_teacher';
定义搜索

 

标签:digit,return,代码,idcard,笔记,sup,type,row
来源: https://www.cnblogs.com/code1/p/15869927.html