element-ui 时间日期选择器格式化后台需要的格式

<el-date-picker
          v-model="startTime"
          type="datetime"
          @change="dateChangebirthday1"
          format="yyyy-MM-dd HH:mm:ss"
          value-format="yyyy-MM-dd HH:mm:ss"
          placeholder="选择日期时间">

</el-date-picker>

methods: {
    dateChangebirthday1(val) {
        var ctx = this;
        ctx.startTime = val;
        alert( ctx.startTime);
    }

猜你喜欢

转载自blog.csdn.net/carrybest/article/details/79917871