logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

element报错 “t.getFullYear is not a function” ,TypeError:date.getHours is not a function

<el-date-pickerv-model="setDate"type="date"format="yyyy 年 MM 月 dd 日"value-format="yyyy-MM-dd"placeholder="选择日期"></el-date-picker>setDate:''总结:类型错误导致报错,date里面的值得类型不对,应该为字符串,而非其他类型t.getFu...

#vue.js#javascript#chrome
element,JS设置时间戳为23:59:59,vue根据时间戳设置当前日期的时间为 23:59:59

var contractEndTime ;var date = new Date(this.contractEnd);//时间戳为10位需*1000,时间戳为13位的话不需乘1000var dY = date.getFullYear() + '-';var dM = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() +...

#vue.js#前端
vue根据data的数据值动态设置switch状态禁用

vue根据data的数据值动态设置switch状态禁用:disabled="accessLevel == 1"<el-switchv-model="list.newProduct"@change="changePro(list.id,list.newProduct,'')"inactive-text="新品...

#前端#html5
echart报错 Cannot read property ‘getAttribute‘ of undefined

Error in created hook: "TypeError: Cannot read property 'getAttribute' of undefined"用的Vue,第一反应是echart的引用错误,然后用cdn的方式引入,也是这样的错,最后发现是生命周期的原因用的created调用方法官方说明:实例已经创建完成之后被调用。在这一步,实例已完成以下的配置:数据观测(data obse

#es6#chrome#前端 +1
Property or method “id” is not defined on the instance but referenced during render. Make sure that

报错详情[Vue warn]: Property or method “id” is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based component..

到底了