Bläddra i källkod

业务系统新增bug

zxy 2 år sedan
förälder
incheckning
0eb3d295e6

+ 1 - 1
spring-cloud/server-basic/src/main/resources/mapper/BusinessSystemMapper.xml

@@ -9,7 +9,7 @@
 INSERT INTO t_business_system
 (system_name,login_address,login_account,password,system_category,
 	login_mode,interface_url,system_img,create_time,voice,voice_event, sortno,
- office_id, org_type, grade_eval, eval_time, show_auxiliary_terminal)
+ office_id, org_type, grade_eval, eval_time, show_auxiliary_terminal,url)
 VALUES(#{systemName},#{loginAddress},#{loginAccount},#{password},#{systemCategory},
 	#{loginMode},#{InterfaceUrl},#{systemImg},NOW(),#{voice},#{voiceEvent},#{sortno},
        #{officeId}, #{orgType}, #{gradeEval}, #{evalTime}, #{showAuxiliaryTerminal}, #{url})

+ 4 - 4
spring-cloud/server-page/src/main/resources/static/page/businessSystemManager.html

@@ -74,7 +74,7 @@
             <div class="layui-form-item">
                 <label class="layui-form-label"><span class="font-red">*</span>系统分类:</label>
                 <div class="layui-input-inline">
-                    <select name="systemCategory" lay-search="" id="systemCategory" lay-filter="systemCategory">
+                    <select name="systemCategory" lay-search="" id="systemCategory" lay-verify="systemCategory">
                         <option value="">请选择业务系统分类</option>
                     </select>
                 </div>
@@ -93,14 +93,14 @@
                 </div>
             </div>
             <div class="layui-form-item">
-                <label class="layui-form-label"><span class="font-red">*</span>登录账号:</label>
+                <label class="layui-form-label">登录账号:</label>
                 <div class="layui-input-inline">
                     <input type="text" name="loginAccount" id="loginAccount" maxlength="50" lay-verify="loginAccount"
                            autocomplete="off" placeholder="请输入登录账号" class="layui-input">
                 </div>
             </div>
             <div class="layui-form-item">
-                <label class="layui-form-label"><span class="font-red">*</span>登录密码:</label>
+                <label class="layui-form-label">登录密码:</label>
                 <div class="layui-input-inline">
                     <input type="password" name="password" id="password" maxlength="50" lay-verify="account" password="off"
                            placeholder="请输入登录密码" class="layui-input">
@@ -114,7 +114,7 @@
                 </div>
             </div>
             <div class="layui-form-item">
-                <label class="layui-form-label"><span class="font-red">*</span>接口地址:</label>
+                <label class="layui-form-label">接口地址:</label>
                 <div class="layui-input-inline">
                     <input type="text" name="InterfaceUrl" id="InterfaceUrl" autocomplete="off" placeholder="请输入接口地址" class="layui-input">
                 </div>

+ 0 - 5
spring-cloud/server-page/src/main/resources/static/page/js/basic/businessSystemManager.js

@@ -171,11 +171,6 @@ layui.config({
                 return '系统名称不能为空!';
             }
         },
-        loginAddress: function (value, item) {
-            if (!value.trim()) {
-                return '登录地址不能为空!';
-            }
-        },
         voice: function (value, item) {
             if (!value.trim()) {
                 return '请输入语音关键字!';