Browse Source

fix: bug修正

zhangying 9 months ago
parent
commit
3813e6c25a

+ 1 - 1
src/main/resources/mapping/cquery/CompanyCQuery.xml

@@ -85,7 +85,7 @@
             or company.companyID = 'AllCompany'
         </if>
         <if test="createUserName!='' and createUserName!=null">
-            and createUser.`Name` like Concat('%',#{createUserName},'%')
+            and u.`Name` like Concat('%',#{createUserName},'%')
         </if>
         order by
         <if test="postCountSorter == null or postCountSorter == ''">

+ 1 - 0
vue/src/views/jobUserManager/jobFair/index.vue

@@ -142,6 +142,7 @@ const tableColumns: TableColumnsType = [
   },
   {title: '活动名称', dataIndex: 'name', key: 'name', align: "center"},
   {title: '活动地址', dataIndex: 'address', key: 'address', align: "center"},
+  {title: '活动类型', dataIndex: 'activityTypeName', key: 'activityTypeName', align: "center"},
   {title: '联系人', dataIndex: 'userName', key: 'userName', align: "center"},
   {title: '联系电话', dataIndex: 'userMrobile', key: 'userMrobile', align: "center"},
   {title: '活动时间', dataIndex: 'startTime', key: 'startTime', align: "center"},