deason 4 ani în urmă
părinte
comite
d12163d45d
1 a modificat fișierele cu 169 adăugiri și 21 ștergeri
  1. 169 21
      src/modules/basic/view/sys_login_rule_list.vue

+ 169 - 21
src/modules/basic/view/sys_login_rule_list.vue

@@ -1,14 +1,14 @@
 <template>
   <section style="margin-top: 0px;">
     <el-form
-      :model="formSearch"
+      :model="searchForm"
       :inline="true"
       style="border-bottom: 1px solid rgb(221, 221, 221);margin-bottom: 10px;"
     >
       <el-form-item label="学校">
         <el-select
           v-if="isSuperAdmin"
-          v-model="formSearch.rootOrgId"
+          v-model="searchForm.rootOrgId"
           placeholder="请选择"
           filterable
           clearable
@@ -26,7 +26,7 @@
 
       <el-form-item label="规则类型">
         <el-select
-          v-model="formSearch.type"
+          v-model="searchForm.type"
           size="small"
           class="w180"
           placeholder="请选择"
@@ -34,7 +34,7 @@
           clearable
         >
           <el-option
-            v-for="item in ruleTypes"
+            v-for="item in loginRuleTypes"
             :label="item.label"
             :value="item.value"
             :key="item.value"
@@ -57,6 +57,25 @@
       </el-form-item>
     </el-form>
 
+    <div style="margin-bottom: 5px;">
+      操作:
+      <el-button
+        size="small"
+        type="primary"
+        icon="el-icon-plus"
+        @click="loginRuleDialogOpen(null)"
+        >新增
+      </el-button>
+
+      <el-button
+        size="small"
+        type="primary"
+        icon="el-icon-refresh"
+        @click="doRefreshRule"
+        >刷新
+      </el-button>
+    </div>
+
     <el-table
       v-loading="loading"
       :data="tableData"
@@ -83,13 +102,22 @@
       <el-table-column label="创建时间" prop="creationTime" sortable />
       <el-table-column label="更新时间" prop="updateTime" sortable />
 
-      <el-table-column label="操作" width="100px">
+      <el-table-column label="操作" width="180px">
         <template slot-scope="scope">
+          <el-button
+            size="mini"
+            type="primary"
+            icon="el-icon-edit"
+            @click="loginRuleDialogOpen(scope.row)"
+            plain
+            >编辑
+          </el-button>
+
           <el-button
             size="mini"
             type="danger"
             icon="el-icon-delete"
-            @click="doDelete(scope.row)"
+            @click="doDeleteRule(scope.row)"
             plain
             >删除
           </el-button>
@@ -100,14 +128,78 @@
     <div class="page pull-right">
       <el-pagination
         @current-change="handlePagerNo"
-        :current-page="formSearch.pageNo"
+        :current-page="searchForm.pageNo"
         @size-change="handlePagerSize"
-        :page-size="formSearch.pageSize"
+        :page-size="searchForm.pageSize"
         :page-sizes="[10, 20, 50, 100, 200, 300]"
         :total="totalElements"
         layout="total, sizes, prev, pager, next, jumper"
       ></el-pagination>
     </div>
+
+    <el-dialog
+      title="规则新增"
+      width="380px"
+      :visible.sync="loginRuleDialog"
+      @close="loginRuleDialogClose"
+    >
+      <el-form
+        :model="loginRuleForm"
+        ref="loginRuleForm"
+        :rules="formRules"
+        label-position="right"
+        label-width="120px"
+        inline-message
+      >
+        <el-form-item label="学校">
+          <el-select
+            v-if="isSuperAdmin"
+            v-model="loginRuleForm.rootOrgId"
+            placeholder="请选择"
+            filterable
+            clearable
+            size="small"
+            class="w180"
+          >
+            <el-option
+              v-for="item in rootOrgList"
+              :label="item.name"
+              :value="item.id"
+              :key="item.id"
+            />
+          </el-select>
+        </el-form-item>
+
+        <el-form-item label="规则类型">
+          <el-select
+            v-model="loginRuleForm.type"
+            size="small"
+            class="w180"
+            placeholder="请选择"
+            clearable
+          >
+            <el-option
+              v-for="item in loginRuleTypes"
+              :label="item.label"
+              :value="item.value"
+              :key="item.value"
+            ></el-option>
+          </el-select>
+        </el-form-item>
+
+        <el-form-item label="是否白名单">
+          <el-radio-group v-model="loginRuleForm.allow">
+            <el-radio label="true">是</el-radio>
+            <el-radio label="false">否</el-radio>
+          </el-radio-group>
+        </el-form-item>
+
+        <div style="text-align: center">
+          <el-button type="primary" @click="doAddRule">确 定</el-button>
+          <el-button @click="loginRuleDialogClose">取 消</el-button>
+        </div>
+      </el-form>
+    </el-dialog>
   </section>
 </template>
 
@@ -118,7 +210,7 @@ import { CORE_API } from "@/constants/constants.js";
 export default {
   data() {
     return {
-      formSearch: {
+      searchForm: {
         rootOrgId: null,
         type: null,
         allow: null,
@@ -129,11 +221,25 @@ export default {
       tableData: [],
       totalElements: 0,
       rootOrgList: [],
-      ruleTypes: [
+      loginRuleTypes: [
         { label: "考生登录", value: "STUDENT_LOGIN" },
         { label: "考生端登录", value: "STUDENT_CLIENT_LOGIN" },
         { label: "极验验证码登录", value: "GEETEST_LOGIN" }
-      ]
+      ],
+      loginRuleDialog: false,
+      loginRuleForm: {
+        rootOrgId: null,
+        type: null,
+        allow: null
+      },
+      formRules: {
+        rootOrgId: [
+          { required: true, message: "学校不能为空!", trigger: "change" }
+        ],
+        type: [
+          { required: true, message: "规则类型不能为空!", trigger: "change" }
+        ]
+      }
     };
   },
   methods: {
@@ -147,11 +253,11 @@ export default {
       }
     },
     doSearch(pageNo) {
-      this.formSearch.pageNo = pageNo;
+      this.searchForm.pageNo = pageNo;
 
       this.loading = true;
       let url = CORE_API + "/sys/xlogin/rule/list";
-      this.$http.post(url, this.formSearch).then(
+      this.$http.post(url, this.searchForm).then(
         response => {
           this.tableData = response.data.content;
           this.totalElements = response.data.totalElements;
@@ -163,8 +269,35 @@ export default {
         }
       );
     },
-    doDelete(row) {
-      this.$confirm("确认删除当前规则?", "提示", {
+    loginRuleDialogOpen(row) {
+      if (row) {
+        this.loginRuleForm.rootOrgId = row.rootOrgId;
+        this.loginRuleForm.type = row.type;
+        this.loginRuleForm.allow = row.allow;
+      } else {
+        this.loginRuleForm.rootOrgId = null;
+        this.loginRuleForm.type = null;
+        this.loginRuleForm.allow = null;
+      }
+      this.loginRuleDialog = true;
+    },
+    loginRuleDialogClose() {
+      this.loginRuleDialog = false;
+    },
+    doAddRule() {
+      this.$refs.loginRuleForm.validate(valid => {
+        if (!valid) {
+          return false;
+        }
+
+        this.loginRuleDialogClose();
+      });
+    },
+    doEditRule() {
+      this.loginRuleDialogClose();
+    },
+    doDeleteRule(row) {
+      this.$confirm("确认删除?", "提示", {
         confirmButtonText: "确定",
         cancelButtonText: "取消",
         type: "warning"
@@ -179,27 +312,42 @@ export default {
         });
       });
     },
+    doRefreshRule() {
+      this.$confirm("确认刷新?", "提示", {
+        confirmButtonText: "确定",
+        cancelButtonText: "取消",
+        type: "warning"
+      }).then(() => {
+        let url = CORE_API + "/sys/xlogin/rule/refresh";
+        this.$http.post(url).then(() => {
+          this.$notify({
+            type: "success",
+            message: "刷新成功"
+          });
+        });
+      });
+    },
     handlePagerNo(pageNo) {
       this.doSearch(pageNo);
     },
     handlePagerSize(pageSize) {
-      this.formSearch.pageSize = pageSize;
+      this.searchForm.pageSize = pageSize;
       this.doSearch(1);
     },
     clearTypeValue() {
-      this.formSearch.type = null;
+      this.searchForm.type = null;
     },
     getTypeTitle(val) {
-      for (let type of this.ruleTypes) {
+      for (let type of this.loginRuleTypes) {
         if (type.value == val) {
           return type.label;
         }
       }
     },
     resetSearchForm() {
-      this.formSearch.rootOrgId = null;
-      this.formSearch.type = null;
-      this.formSearch.allow = null;
+      this.searchForm.rootOrgId = null;
+      this.searchForm.type = null;
+      this.searchForm.allow = null;
       this.doSearch(1);
     }
   },