码迷,mamicode.com
首页 > 其他好文 > 详细

页面添加时间插件

时间:2017-11-08 12:03:01      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:报警   exce   string   oda   control   null   orm   tle   开始   

html代码:

<tr>
                <td class="formTitle">报警时间<font face="宋体">*</font></td>
                <td class="formValue">
                    <div class="col-sm-3">
                        <div  class="datetimepicker input-group date col-sm-8" data-date-format="yyyy-mm-dd">
                        <input type="text" id="alarmTime" class="form-control" v-model="pdAlarmMsg.alarmTimeStr"  readonly="readonly"/>
                            <span class="input-group-addon">
                                <span class="fa fa-calendar"></span>
                        </span>
                        </div>
                    </div>
                </td>
            </tr>

js代码:

$(".datetimepicker").datetimepicker({
    format: "yyyy-mm-dd",
    minView: "2",
    // 不写值的话默认为0也就是能选到分
    //0    从小时视图开始,选分
    //1    从天视图开始,选小时
    //2    从月视图开始,选天
    //3    从年视图开始,选月
    //4    从十年视图开始,选年
    autoclose: true,
    language: "zh-CN"
}).on(changeDate,gotoDate);

function gotoDate(ev){
    var alarmTime = $("#alarmTime").val();
    vm.pdAlarmMsg.alarmTimeStr = alarmTime;
}

bean代码:

public String getAlarmTimeStr() {
        if (this.getAlarmTime()!=null){
            return DateUtil.format(this.getAlarmTime(),DateUtil.DATE_PATTERN);
        }
        return "";
    }
    public void setAlarmTimeStr(String alarmTimeStr) {
        this.alarmTimeStr=alarmTimeStr;
        if (!StringUtil.isNull(alarmTimeStr)){            
                try {
                    this.setAlarmTime(DateUtil.parse(alarmTimeStr, DateUtil.DATE_PATTERN));
                } catch (ParseException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            
        }
    }

 

页面添加时间插件

标签:报警   exce   string   oda   control   null   orm   tle   开始   

原文地址:http://www.cnblogs.com/tengfeihhh/p/7803026.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!