From 6c235963d6fc46b38ea59d9b19c6519b892e080b Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 16 May 2022 09:42:06 +0800 Subject: [PATCH] 20220516 逻辑删除,更新字段IS_Delete字段为已删除,默认为空,删除后其余信息从查询中过滤了 --- zq-erp/src/main/resources/templates/views/admin/sys/sysRole-form.html | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/zq-erp/src/main/resources/templates/views/admin/sys/sysRole-form.html b/zq-erp/src/main/resources/templates/views/admin/sys/sysRole-form.html index 6b1a93f..1209561 100644 --- a/zq-erp/src/main/resources/templates/views/admin/sys/sysRole-form.html +++ b/zq-erp/src/main/resources/templates/views/admin/sys/sysRole-form.html @@ -62,9 +62,9 @@ <div class="form-group"> <label class="col-sm-2 control-label">可查询所有门店客户</label> <div class="col-sm-4"> - <select class="form-control" name="coustomer"> - <option th:selected="${obj?.coustomer == '是'}" >是</option> - <option th:selected="${obj?.coustomer == '否'}" >否</option> + <select class="form-control" name="customer"> + <option th:selected="${obj?.customer == '是'}" >是</option> + <option th:selected="${obj?.customer == '否'}" >否</option> </select> </div> <label class="col-sm-2 control-label">是否允许门店分配本角色</label> -- Gitblit v1.9.1