首先第一步
在官方下载layDate文件。layUI官网:http://layer.layui.com/ https://www.layui.com/laydate/
引入layData.js
<script src="../js/public/laydate.js"></script>
要显示的时间文本框
<input type="text" class="input w50" id="applytime" name="applytime"/>
js方法
laydate.render({
elem: '#applytime', // 输出框id
type: 'datetime'
});