dingxin 6 anni fa
parent
commit
28bd3cbe86

+ 1
- 1
CODE/smart-community/property-api/src/main/java/com/community/huiju/service/impl/TpActivityServiceImpl.java Vedi File

@@ -109,7 +109,7 @@ public class TpActivityServiceImpl extends ServiceImpl<TpActivityMapper, TpActiv
109 109
         String [] contentImgArray = jsonArray.toArray(new String[]{});
110 110
         TpActivity tpActivity = jsonObject.toJavaObject(TpActivity.class);
111 111
 
112
-        if (contentImgArray.length <= 0 && (null == tpActivity.getActivityContent() || "".equals(tpActivity.getActivityContent())) {
112
+        if (contentImgArray.length <= 0 && (null == tpActivity.getActivityContent() || "".equals(tpActivity.getActivityContent()))){
113 113
             responseBean.addError("活动内容描述 和 活动配图至少要存在一个!");
114 114
             return responseBean;
115 115
         }

+ 1
- 1
VUECODE/smart-property-manage/src/views/owner/index.vue Vedi File

@@ -40,7 +40,7 @@
40 40
       <!-- <el-table-column prop="name" label="所在户" width="180" /> -->
41 41
       <el-table-column label="所在户" align="center">
42 42
         <template slot-scope="scope">
43
-          <span v-if="scope.row.building!==null&&scope.row.unit!==null&&scope.row.level!==null&&scope.row.roomNo!==null&&scope.row.phase!==null">{{ '男' }}
43
+          <span v-if="scope.row.building!==null&&scope.row.unit!==null&&scope.row.level!==null&&scope.row.roomNo!==null&&scope.row.phase!==null">
44 44
           {{ scope.row.building + scope.row.unit + scope.row.level + scope.row.roomNo+scope.row.phase }}
45 45
           </span>
46 46
           </template>