window.VUE_CURD;//一些页面信息
window.vueDefMethods;//自定义vue的一些工具方法,方便创建组件的时候使用
window.appPage;//当前页面vue 的 this;
window.app;//当前页面的vue createApp 返回值
######################################################################################################
//使用openBox打开的iframe中,window对象额外有:
window.listVue;//打开当前页面之前的页面的 vue 的 this;
window.parentWindow;//打开当前页面之前的页面的 window;
###################################################################################################
//异步请求
service(option);
//定义一个get请求
service({url, method: 'get',params,headers:{'X-REQUESTED-WITH':'xmlhttprequest'}});
//定义一个post请求
service({url, method: 'post',data:Qs.stringify(data),headers:{
'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8',
'X-REQUESTED-WITH':'xmlhttprequest'
}});
###################################################################################################
//图片预览,images:url的数组或者url字符串(多个以下划线分隔);start:显示时开始的位置,不传入默认从第一张开始,传入url或index
window.top.showImages(images,start);
###################################################################################################
//时间格式化
parseTime(时间戳|字符串时间|时间对象,'{y}-{m}-{d} {h}:{i}:{s}');
###################################################################################################
//获取日期属于第几周
weekIndexInYear('2020-01-01');//2019年第52周
//传入时间获取一周的日期范围
getLastWeek(date)
###################################################################################################
//生成guid
guid();