How to use the xe-utils.toDateString function in xe-utils

To help you get started, we’ve selected a few xe-utils examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github xuliangzhan / vue-element-extends / examples / views / editable / Click5.vue View on Github external
formatterDate (row, column, cellValue, index) {
      return XEUtils.toDateString(cellValue, 'yyyy-MM-dd HH:mm:ss')
    },
    // 单元格失焦后实时保存数据
github xuliangzhan / vue-element-extends / examples / views / editable / Click8.vue View on Github external
formatterDate (row, column, cellValue, index) {
      return XEUtils.toDateString(cellValue, 'yyyy-MM-dd HH:mm:ss')
    },
    tableRowClassName ({ row, rowIndex }) {
github xuliangzhan / vue-element-extends / examples / views / editable / Dblclick2.vue View on Github external
formatterDate (row, column, cellValue, index) {
      return XEUtils.toDateString(cellValue, 'yyyy-MM-dd HH:mm:ss')
    },
    tableRowClassName ({ row, rowIndex }) {
github xuliangzhan / vue-element-extends / examples / views / editable / Click6.vue View on Github external
formatterDate (row, column, cellValue, index) {
      return XEUtils.toDateString(cellValue, 'yyyy-MM-dd HH:mm:ss')
    },
    tableRowClassName ({ row, rowIndex }) {
github xuliangzhan / vue-element-extends / examples / views / editable / Click5.vue View on Github external
getDatePicker (value) {
      return XEUtils.toDateString(value, 'yyyy/MM/dd')
    },
    formatterDate (row, column, cellValue, index) {
github xuliangzhan / vxe-table / src / plugins / handle.js View on Github external
function getFormatDate (value, props, defaultFormat) {
  return XEUtils.toDateString(value, props.format || defaultFormat)
}
github xuliangzhan / vue-element-extends / examples / views / table / Custom2.vue View on Github external
formatterDate (row, column, cellValue, index) {
      return XEUtils.toDateString(cellValue, 'yyyy-MM-dd HH:mm:ss')
    },
    exportCsvEvent () {
github xuliangzhan / vue-element-extends / examples / views / editable / Click7.vue View on Github external
formatterDate (row, column, cellValue, index) {
      return XEUtils.toDateString(cellValue, 'yyyy-MM-dd HH:mm:ss')
    },
    tableRowClassName ({ row, rowIndex }) {
github xuliangzhan / vxe-table / examples / views / table / virtual-tree / Template.vue View on Github external
default: ({ row }) => {
              return [
                <span>{ XEUtils.toDateString(row.date, 'yyyy-MM-dd HH:mm:ss.S') }</span>
              ]
            }
          }
github xuliangzhan / vue-element-extends / examples / views / editable / Manual5.vue View on Github external
formatterDate (row, column, cellValue, index) {
      return XEUtils.toDateString(cellValue, 'yyyy-MM-dd HH:mm:ss')
    },
    formatColumnSize (row, column, cellValue, index) {