GmsGetNow.js 340 Bytes
Newer Older
wangcong committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// 获得当前系统日期
export default {
    execute:function(){
        // if(arguments&&arguments[1]){
        //     let context = arguments[1];    
        // }
        // let myDate = new Date();
        // return myDate.toLocaleDateString();
    },

    getResultType:function(){
        return FMR.ConstDataTypes.General;
    }
}