| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- /**
- 初始化处理 vue component
- **/
- (function(window, undefined){
- "use strict";
- var vc = window.vc || {};
- var _vmOptions = {};
- var _initMethod = [];
- var _initEvent = [];
- var _component = {};
- var _destroyedMethod = [];
- var _timers = [];//定时器
- _vmOptions = {
- el:'#component',
- data:{
- },
- watch: {
- },
- methods:{
- },
- destroyed:function(){
- window.vc.destroyedMethod.forEach(function(eventMethod){
- eventMethod();
- });
- //清理所有定时器
- window.vc.timers.forEach(function(timer){
- clearInterval(timer);
- });
- _timers = [];
- }
- };
- vc = {
- version:"v0.0.1",
- name:"vue component",
- author:'java110',
- vmOptions:_vmOptions,
- initMethod:_initMethod,
- initEvent:_initEvent,
- component:_component,
- destroyedMethod:_destroyedMethod,
- timers:_timers
- };
- //通知window对象
- window.vc = vc;
- })(window);
- /**
- vc 函数初始化
- add by wuxw
- **/
- (function(vc){
- vc.http = {
- post:function(componentCode,componentMethod,param,options,successCallback,errorCallback){
- vc.loading('open');
- Vue.http.post('/callComponent/'+componentCode +"/"+componentMethod, param, options)
- .then(function(res){
- successCallback(res.bodyText,res);
- vc.loading('close');
- }, function(error){
- errorCallback(error.bodyText,error);
- vc.loading('close');
- });
- },
- get:function(componentCode,componentMethod,param,successCallback,errorCallback){
- //加入缓存机制
- var _getPath = '/'+componentCode +'/' +componentMethod;
- if(vc.constant.GET_CACHE_URL.includes(_getPath)){
- var _cacheData = vc.getData(_getPath);
- //浏览器缓存中能获取到
- if(_cacheData != null && _cacheData != undefined){
- successCallback(JSON.stringify(_cacheData),{status:200});
- return ;
- }
- }
- vc.loading('open');
- Vue.http.get('/callComponent/'+componentCode +"/"+componentMethod, param)
- .then(function(res){
- successCallback(res.bodyText,res);
- if(vc.constant.GET_CACHE_URL.includes(_getPath) && res.status == 200){
- vc.saveData(_getPath,JSON.parse(res.bodyText));
- }
- vc.loading('close');
- }, function(error){
- errorCallback(error.bodyText,error);
- vc.loading('close');
- });
- }
- };
- var vmOptions = vc.vmOptions;
- //继承方法,合并 _vmOptions 的数据到 vmOptions中
- vc.extends = function(_vmOptions){
- if(typeof _vmOptions !== "object"){
- throw "_vmOptions is not Object";
- }
- //处理 data 对象
- if(_vmOptions.hasOwnProperty('data')){
- for(var dataAttr in _vmOptions.data){
- vmOptions.data[dataAttr] = _vmOptions.data[dataAttr];
- }
- }
- //处理methods 对象
- if(_vmOptions.hasOwnProperty('methods')){
- for(var methodAttr in _vmOptions.methods){
- vmOptions.methods[methodAttr] = _vmOptions.methods[methodAttr];
- }
- }
- //处理methods 对象
- if(_vmOptions.hasOwnProperty('watch')){
- for(var watchAttr in _vmOptions.watch){
- vmOptions.watch[watchAttr] = _vmOptions.watch[watchAttr];
- }
- }
- //处理_initMethod 初始化执行函数
- if(_vmOptions.hasOwnProperty('_initMethod')){
- vc.initMethod.push(_vmOptions._initMethod);
- }
- //处理_initEvent
- if(_vmOptions.hasOwnProperty('_initEvent')){
- vc.initEvent.push(_vmOptions._initEvent);
- }
- //处理_initEvent_destroyedMethod
- if(_vmOptions.hasOwnProperty('_destroyedMethod')){
- vc.destroyedMethod.push(_vmOptions._destroyedMethod);
- }
- };
- //绑定跳转函数
- vc.jumpToPage = function(url){
- window.location.href = url;
- };
- //保存菜单
- vc.setCurrentMenu = function(_menuId){
- window.localStorage.setItem('hc_menuId',_menuId);
- };
- //获取菜单
- vc.getCurrentMenu = function(){
- return window.localStorage.getItem('hc_menuId');
- };
- //保存用户菜单
- vc.setMenus = function(_menus){
- window.localStorage.setItem('hc_menus',JSON.stringify(_menus));
- };
- //获取用户菜单
- vc.getMenus = function(){
- return JSON.parse(window.localStorage.getItem('hc_menus'));
- };
- //保存用户菜单
- vc.saveData = function(_key,_value){
- window.localStorage.setItem(_key,JSON.stringify(_value));
- };
- //获取用户菜单
- vc.getData = function(_key){
- return JSON.parse(window.localStorage.getItem(_key));
- };
- //保存当前小区信息 _communityInfo : {"communityId":"123213","name":"测试小区"}
- vc.setCurrentCommunity = function(_currentCommunityInfo){
- window.localStorage.setItem('hc_currentCommunityInfo',JSON.stringify(_currentCommunityInfo));
- };
- //获取当前小区信息
- // @return {"communityId":"123213","name":"测试小区"}
- vc.getCurrentCommunity = function(){
- return JSON.parse(window.localStorage.getItem('hc_currentCommunityInfo'));
- };
- //保存当前小区信息 _communityInfos : [{"communityId":"123213","name":"测试小区"}]
- vc.setCommunitys = function(_communityInfos){
- window.localStorage.setItem('hc_communityInfos',JSON.stringify(_communityInfos));
- };
- //获取当前小区信息
- // @return {"communityId":"123213","name":"测试小区"}
- vc.getCommunitys = function(){
- return JSON.parse(window.localStorage.getItem('hc_communityInfos'));
- };
- //删除缓存数据
- vc.clearCacheData = function(){
- window.localStorage.clear();
- };
- //将org 对象的属性值赋值给dst 属性名为一直的属性
- vc.copyObject = function(org,dst){
- //for(key in Object.getOwnPropertyNames(dst)){
- for(var key in dst){
- if (org.hasOwnProperty(key)){
- dst[key] = org[key]
- }
- }
- };
- //获取url参数
- vc.getParam = function(_key){
- //返回当前 URL 的查询部分(问号 ? 之后的部分)。
- var urlParameters = location.search;
- //如果该求青中有请求的参数,则获取请求的参数,否则打印提示此请求没有请求的参数
- if (urlParameters.indexOf('?') != -1)
- {
- //获取请求参数的字符串
- var parameters = decodeURI(urlParameters.substr(1));
- //将请求的参数以&分割中字符串数组
- parameterArray = parameters.split('&');
- //循环遍历,将请求的参数封装到请求参数的对象之中
- for (var i = 0; i < parameterArray.length; i++) {
- if(_key == parameterArray[i].split('=')[0]){
- return parameterArray[i].split('=')[1];
- }
- }
- }
- return "";
- };
- //查询url
- vc.getUrl = function(){
- //返回当前 URL 的查询部分(问号 ? 之后的部分)。
- var urlParameters = location.search;
- //如果该求青中有请求的参数,则获取请求的参数,否则打印提示此请求没有请求的参数
- if(urlParameters.indexOf('?') != -1){
- return urlParameters.substring(0, urlParameters.indexOf('?'));
- }
- return urlParameters;
- };
- //对象转get参数
- vc.objToGetParam =function(obj){
- var str = [];
- for (var p in obj)
- if (obj.hasOwnProperty(p)) {
- str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
- }
- return str.join("&");
- }
- })(window.vc);
- /**
- vc 定时器处理
- **/
- (function(w,vc){
- /**
- 创建定时器
- **/
- vc.createTimer = function(func,sec){
- var _timer = w.setInterval(func,sec);
- vc.timers.push(_timer); //这里将所有的定时器保存起来,页面退出时清理
- return _timer;
- };
- //清理定时器
- vc.clearTimer = function(timer){
- clearInterval(timer);
- }
- })(window,window.vc);
- /**
- 时间处理工具类
- **/
- (function(vc){
- function add0(m){return m<10?'0'+m:m }
- vc.dateFormat = function(shijianchuo){
- //shijianchuo是整数,否则要parseInt转换
- var time = new Date(parseInt(shijianchuo));
- var y = time.getFullYear();
- var m = time.getMonth()+1;
- var d = time.getDate();
- var h = time.getHours();
- var mm = time.getMinutes();
- var s = time.getSeconds();
- return y+'-'+add0(m)+'-'+add0(d)+' '+add0(h)+':'+add0(mm)+':'+add0(s);
- }
- })(window.vc);
- (function(vc){
- vc.propTypes = {
- string:"string",//字符串类型
- array:"array",
- object:"object",
- number:"number"
- }
- })(window.vc)
|