@@ -1,5 +1,5 @@
<div id="component" class="wrapper wrapper-content animated fadeInRight ecommerce">
- <div class="row">
+ <div class="row" v-bind:class="{no_display:activitiesManageInfo.componentShow != 'activitiesList'}">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
@@ -24,7 +24,7 @@
});
vc.on("addActivitiesView", "notifyUploadImage", function (_param) {
- if(vc.notNull(_param) && _param.length >0){
+ if(!vc.isEmpty(_param) && _param.length >0){
vc.component.addActivitiesView.headerImg = _param[0];
}else{
vc.component.addActivitiesView.headerImg = '';
@@ -343,6 +343,12 @@
}
return true;
};
+ vc.isEmpty = function (_paramObj) {
+ if (_paramObj == null || _paramObj == undefined ) {
+ return true;
+ }
+ return false;
+ };
//设置debug 模式
vc.setDebug = function (_param) {
vc.debug = _param;