瀏覽代碼

* 小程序变更

chen.cheng 10 月之前
父節點
當前提交
cd68291422

+ 33 - 33
ruoyi-system/src/main/java/com/ruoyi/system/domain/CpsUsrApply.java

@@ -7,7 +7,7 @@ import com.ruoyi.common.core.domain.BaseEntity;
 
 /**
  * cps_usr_apply与会申请对象 cps_usr_apply
- * 
+ *
  * @author ruoyi
  * @date 2024-09-03
  */
@@ -32,7 +32,7 @@ public class CpsUsrApply extends BaseEntity
 
     /** 参会人职务 */
     @Excel(name = "参会人职务")
-    private String uniLevle;
+    private String uniLevel;
 
     /** 邮箱信息 */
     @Excel(name = "邮箱信息")
@@ -68,129 +68,129 @@ public class CpsUsrApply extends BaseEntity
     @Excel(name = "与会内容")
     private Long contentId;
 
-    public void setId(Long id) 
+    public void setId(Long id)
     {
         this.id = id;
     }
 
-    public Long getId() 
+    public Long getId()
     {
         return id;
     }
-    public void setUsrName(String usrName) 
+    public void setUsrName(String usrName)
     {
         this.usrName = usrName;
     }
 
-    public String getUsrName() 
+    public String getUsrName()
     {
         return usrName;
     }
-    public void setTel(String tel) 
+    public void setTel(String tel)
     {
         this.tel = tel;
     }
 
-    public String getTel() 
+    public String getTel()
     {
         return tel;
     }
-    public void setOrgUnitName(String orgUnitName) 
+    public void setOrgUnitName(String orgUnitName)
     {
         this.orgUnitName = orgUnitName;
     }
 
-    public String getOrgUnitName() 
+    public String getOrgUnitName()
     {
         return orgUnitName;
     }
-    public void setUniLevle(String uniLevle) 
+    public void setUniLevel(String uniLevel)
     {
-        this.uniLevle = uniLevle;
+        this.uniLevel = uniLevel;
     }
 
-    public String getUniLevle() 
+    public String getUniLevel()
     {
-        return uniLevle;
+        return uniLevel;
     }
-    public void setEmail(String email) 
+    public void setEmail(String email)
     {
         this.email = email;
     }
 
-    public String getEmail() 
+    public String getEmail()
     {
         return email;
     }
-    public void setUsrType(String usrType) 
+    public void setUsrType(String usrType)
     {
         this.usrType = usrType;
     }
 
-    public String getUsrType() 
+    public String getUsrType()
     {
         return usrType;
     }
-    public void setConferenceFlag(String conferenceFlag) 
+    public void setConferenceFlag(String conferenceFlag)
     {
         this.conferenceFlag = conferenceFlag;
     }
 
-    public String getConferenceFlag() 
+    public String getConferenceFlag()
     {
         return conferenceFlag;
     }
-    public void setConferenceRel(Long conferenceRel) 
+    public void setConferenceRel(Long conferenceRel)
     {
         this.conferenceRel = conferenceRel;
     }
 
-    public Long getConferenceRel() 
+    public Long getConferenceRel()
     {
         return conferenceRel;
     }
-    public void setApplyType(String applyType) 
+    public void setApplyType(String applyType)
     {
         this.applyType = applyType;
     }
 
-    public String getApplyType() 
+    public String getApplyType()
     {
         return applyType;
     }
-    public void setReviewState(String reviewState) 
+    public void setReviewState(String reviewState)
     {
         this.reviewState = reviewState;
     }
 
-    public String getReviewState() 
+    public String getReviewState()
     {
         return reviewState;
     }
-    public void setReviewMsg(String reviewMsg) 
+    public void setReviewMsg(String reviewMsg)
     {
         this.reviewMsg = reviewMsg;
     }
 
-    public String getReviewMsg() 
+    public String getReviewMsg()
     {
         return reviewMsg;
     }
-    public void setUsrWechatId(Long usrWechatId) 
+    public void setUsrWechatId(Long usrWechatId)
     {
         this.usrWechatId = usrWechatId;
     }
 
-    public Long getUsrWechatId() 
+    public Long getUsrWechatId()
     {
         return usrWechatId;
     }
-    public void setContentId(Long contentId) 
+    public void setContentId(Long contentId)
     {
         this.contentId = contentId;
     }
 
-    public Long getContentId() 
+    public Long getContentId()
     {
         return contentId;
     }
@@ -202,7 +202,7 @@ public class CpsUsrApply extends BaseEntity
             .append("usrName", getUsrName())
             .append("tel", getTel())
             .append("orgUnitName", getOrgUnitName())
-            .append("uniLevle", getUniLevle())
+            .append("uniLevel", getUniLevel())
             .append("email", getEmail())
             .append("usrType", getUsrType())
             .append("conferenceFlag", getConferenceFlag())

+ 6 - 6
ruoyi-system/src/main/resources/mapper/cp/CpsUsrApplyMapper.xml

@@ -9,7 +9,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         <result property="usrName"    column="usr_name"    />
         <result property="tel"    column="tel"    />
         <result property="orgUnitName"    column="org_unit_name"    />
-        <result property="uniLevle"    column="uni_levle"    />
+        <result property="uniLevel"    column="uni_level"    />
         <result property="email"    column="email"    />
         <result property="usrType"    column="usr_type"    />
         <result property="conferenceFlag"    column="conference_flag"    />
@@ -26,7 +26,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
     </resultMap>
 
     <sql id="selectCpsUsrApplyVo">
-        select id, usr_name, tel, org_unit_name, uni_levle, email, usr_type, conference_flag, conference_rel, apply_type, review_state, review_msg, usr_wechat_id, content_id, update_time, create_time, create_by, update_by from cps_usr_apply
+        select id, usr_name, tel, org_unit_name, uni_level, email, usr_type, conference_flag, conference_rel, apply_type, review_state, review_msg, usr_wechat_id, content_id, update_time, create_time, create_by, update_by from cps_usr_apply
     </sql>
 
     <select id="selectCpsUsrApplyList" parameterType="com.ruoyi.system.domain.CpsUsrApply" resultMap="CpsUsrApplyResult">
@@ -35,7 +35,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="usrName != null  and usrName != ''"> and usr_name like concat('%', #{usrName}, '%')</if>
             <if test="tel != null  and tel != ''"> and tel = #{tel}</if>
             <if test="orgUnitName != null  and orgUnitName != ''"> and org_unit_name like concat('%', #{orgUnitName}, '%')</if>
-            <if test="uniLevle != null  and uniLevle != ''"> and uni_levle = #{uniLevle}</if>
+            <if test="uniLevel != null  and uniLevel != ''"> and uni_levle = #{uniLevel}</if>
             <if test="usrType != null  and usrType != ''"> and usr_type = #{usrType}</if>
             <if test="conferenceFlag != null  and conferenceFlag != ''"> and conference_flag = #{conferenceFlag}</if>
             <if test="applyType != null  and applyType != ''"> and apply_type = #{applyType}</if>
@@ -54,7 +54,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="usrName != null">usr_name,</if>
             <if test="tel != null">tel,</if>
             <if test="orgUnitName != null">org_unit_name,</if>
-            <if test="uniLevle != null">uni_levle,</if>
+            <if test="uniLevel != null">uni_level,</if>
             <if test="email != null">email,</if>
             <if test="usrType != null">usr_type,</if>
             <if test="conferenceFlag != null">conference_flag,</if>
@@ -73,7 +73,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="usrName != null">#{usrName},</if>
             <if test="tel != null">#{tel},</if>
             <if test="orgUnitName != null">#{orgUnitName},</if>
-            <if test="uniLevle != null">#{uniLevle},</if>
+            <if test="uniLevel != null">#{uniLevel},</if>
             <if test="email != null">#{email},</if>
             <if test="usrType != null">#{usrType},</if>
             <if test="conferenceFlag != null">#{conferenceFlag},</if>
@@ -96,7 +96,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="usrName != null">usr_name = #{usrName},</if>
             <if test="tel != null">tel = #{tel},</if>
             <if test="orgUnitName != null">org_unit_name = #{orgUnitName},</if>
-            <if test="uniLevle != null">uni_levle = #{uniLevle},</if>
+            <if test="uniLevel != null">uni_level = #{uniLevel},</if>
             <if test="email != null">email = #{email},</if>
             <if test="usrType != null">usr_type = #{usrType},</if>
             <if test="conferenceFlag != null">conference_flag = #{conferenceFlag},</if>

+ 1 - 1
ruoyi-ui/.env.test

@@ -9,4 +9,4 @@ NODE_ENV = production
 # 若依管理系统/生产环境
 VUE_APP_BASE_API = '/prod-api'
 
-VUE_APP_BASE_URL = 'http://172.192.13.80:8080/tfc'
+VUE_APP_BASE_URL = 'http://172.192.13.80:8080/tfc'

+ 7 - 7
ruoyi-ui/src/views/cp/usrApply/index.vue

@@ -25,9 +25,9 @@
             @keyup.enter.native="handleQuery"
         />
       </el-form-item>
-      <el-form-item label="参会人职务" prop="uniLevle">
+      <el-form-item label="参会人职务" prop="uniLevel">
         <el-input
-            v-model="queryParams.uniLevle"
+            v-model="queryParams.uniLevel"
             placeholder="请输入参会人职务"
             clearable
             @keyup.enter.native="handleQuery"
@@ -131,7 +131,7 @@
       <el-table-column label="参会人" align="center" prop="usrName" />
       <el-table-column label="联系电话" align="center" prop="tel" />
       <el-table-column label="参会人单位" align="center" prop="orgUnitName" />
-      <el-table-column label="参会人职务" align="center" prop="uniLevle" />
+      <el-table-column label="参会人职务" align="center" prop="uniLevel" />
       <el-table-column label="邮箱信息" align="center" prop="email" />
       <el-table-column label="参会人角色" align="center" prop="usrType">
         <template slot-scope="scope">
@@ -214,8 +214,8 @@
         <el-form-item label="参会人单位" prop="orgUnitName">
           <el-input v-model="form.orgUnitName" placeholder="请输入参会人单位" />
         </el-form-item>
-        <el-form-item label="参会人职务" prop="uniLevle">
-          <el-input v-model="form.uniLevle" placeholder="请输入参会人职务" />
+        <el-form-item label="参会人职务" prop="uniLevel">
+          <el-input v-model="form.uniLevel" placeholder="请输入参会人职务" />
         </el-form-item>
         <el-form-item label="邮箱信息" prop="email">
           <el-input v-model="form.email" placeholder="请输入邮箱信息" />
@@ -327,7 +327,7 @@ export default {
         usrName: null,
         tel: null,
         orgUnitName: null,
-        uniLevle: null,
+        uniLevel: null,
         usrType: null,
         conferenceFlag: null,
         applyType: null,
@@ -412,7 +412,7 @@ export default {
         usrName: null,
         tel: null,
         orgUnitName: null,
-        uniLevle: null,
+        uniLevel: null,
         email: null,
         usrType: null,
         conferenceFlag: null,