index.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554
  1. <template>
  2. <div class="Box">
  3. <el-form :model="FormData" :rules="rules" ref="ruleForm" label-width="100px" class="demo-ruleForm">
  4. <div class="topBox">
  5. <div class="titleBtn">
  6. <span class="titleStyle">策略信息新增 </span>
  7. <el-button @click="save()">保存</el-button>
  8. </div>
  9. <!-- 第一排 -->
  10. <div class="fristLine">
  11. <div class="inputBox">
  12. <el-form-item label="策略名称" prop="TacName">
  13. <el-input placeholder="请输入" v-model="FormData.TacName"></el-input>
  14. </el-form-item>
  15. </div>
  16. <div class="inputBox">
  17. <el-form-item label="IP类型" prop="IpType">
  18. <el-select v-model="FormData.IpType" placeholder="请选择类型">
  19. <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value">
  20. </el-option>
  21. </el-select>
  22. </el-form-item>
  23. </div>
  24. <div class="block inputBox1">
  25. <el-form-item label="登录日期" prop="Date">
  26. <el-date-picker v-model="FormData.Date" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" @change="dataChange" value-format="yyyy-MM-dd">
  27. </el-date-picker>
  28. </el-form-item>
  29. </div>
  30. <div class="block inputBox1">
  31. <el-form-item label="登录时间" prop="Time">
  32. <el-time-picker is-range v-model="FormData.Time" range-separator="至" start-placeholder="开始时间" end-placeholder="结束时间" placeholder="选择时间范围" @change="timeChange" value-format="HH:mm:ss">
  33. </el-time-picker>
  34. </el-form-item>
  35. </div>
  36. </div>
  37. <!-- 第二排 -->
  38. <div class="fristLine" style="margin-top: 24px">
  39. <div class="inputBox2">
  40. <el-form-item label="IP段" prop="IpList">
  41. <el-input placeholder="请输入IP,并以‘;’号隔开" v-model="FormData.IpList"></el-input>
  42. </el-form-item>
  43. </div>
  44. <div class="inputBox3">
  45. <el-form-item label="描述" prop="IpList">
  46. <el-input placeholder="请输入" v-model="FormData.TacDesc"></el-input>
  47. </el-form-item>
  48. </div>
  49. </div>
  50. </div>
  51. </el-form>
  52. <div class="centerBox">
  53. <div class="leftB">
  54. <div class="titleBtn">
  55. <span class="titleStyle">已分配职员 </span>
  56. </div>
  57. <div class="center-box">
  58. <el-row class="scCont" :gutter="16">
  59. <el-checkbox-group @change="UnchangeChecked" v-model="UncheckList">
  60. <el-col :span="4" v-for="(item, index) in FormData.UseList" :key="index">
  61. <el-card class="box-card">
  62. <div class="lineTop"></div>
  63. <div class="text item">
  64. <div class="header-top">
  65. <div class="header-mid flex">
  66. <span class="title">{{ item.UserName }}</span>
  67. <el-checkbox checked></el-checkbox>
  68. </div>
  69. <!-- <el-checkbox-group v-model="UncheckList" @change="UnchangeChecked(item, index)">
  70. <el-checkbox checked></el-checkbox>
  71. </el-checkbox-group> -->
  72. </div>
  73. </div>
  74. </el-card>
  75. </el-col>
  76. </el-checkbox-group>
  77. </el-row>
  78. <el-empty v-if="FormData.UseList.length == 0" description="没有选取" style="margin: 0 auto"></el-empty>
  79. </div>
  80. </div>
  81. <div class="rightB">
  82. <div class="titleBtn">
  83. <span class="titleStyle">选择职员 </span>
  84. <div class="searchBox">
  85. <el-input placeholder="请输入内容" clearable @clear="clearData" v-model="keyWords"></el-input>
  86. <el-button @click="getUserData">搜索</el-button>
  87. </div>
  88. </div>
  89. <div class="center-box">
  90. <el-row v-infinite-scroll="load" :infinite-scroll-distance="20" infinite-scroll-disabled="disabled" class="scCont scrollbar" :gutter="16">
  91. <el-checkbox-group @change="changeChecked" v-model="checkList">
  92. <el-col :span="6" v-for="(item, index) in FormData.Unuselist" :key="index">
  93. <el-card class="box-card">
  94. <div class="lineTop"></div>
  95. <div class="text item">
  96. <div class="header-top">
  97. <div class="header-mid flex">
  98. <span class="title">{{ item.UserName }}</span>
  99. <el-checkbox :label="index"></el-checkbox>
  100. </div>
  101. <!-- <el-checkbox-group v-model="checkList" @change="changeChecked(item, index)">
  102. <el-checkbox></el-checkbox>
  103. </el-checkbox-group> -->
  104. </div>
  105. </div>
  106. </el-card>
  107. </el-col>
  108. </el-checkbox-group>
  109. </el-row>
  110. <template v-if="total > 1">
  111. <p class="center" v-if="loading">加载中...</p>
  112. <p class="center" v-if="noMore">没有更多数据了~</p>
  113. </template>
  114. <el-empty v-if="FormData.Unuselist.length == 0" description="没有内容" style="margin: 0 auto"></el-empty>
  115. </div>
  116. </div>
  117. </div>
  118. </div>
  119. </template>
  120. <script>
  121. import { GetUserList } from "@/api/apiAuthority";
  122. import { SaveTac } from "@/api/systemConfiguration";
  123. export default {
  124. data () {
  125. return {
  126. keyWords: "",
  127. checkList: [],
  128. UncheckList: true,
  129. options: [
  130. {
  131. value: 0,
  132. label: "黑名单",
  133. },
  134. {
  135. value: 1,
  136. label: "白名单",
  137. },
  138. ],
  139. boxArr: [],
  140. boxArr1: [],
  141. FormData: {
  142. TacName: "",
  143. TacDesc: "",
  144. DateBegin: "",
  145. DateEnd: "",
  146. TimeBegin: "",
  147. TimeEnd: "",
  148. IpType: 1,
  149. IpList: "",
  150. UseList: [],
  151. Unuselist: [],
  152. Date: null,
  153. Time: null,
  154. },
  155. rules: {
  156. TacName: [
  157. { required: true, message: "请输入策略名称", trigger: "blur" },
  158. {
  159. min: 1,
  160. max: 16,
  161. message: "长度在 1 到 16 个字符",
  162. trigger: "blur",
  163. },
  164. ],
  165. Date: [
  166. { required: true, message: "请选择登录日期", trigger: "change" },
  167. ],
  168. Time: [
  169. { required: true, message: "请选择登录时间", trigger: "change" },
  170. ],
  171. },
  172. pageNum: 1,
  173. PageSize: 50,
  174. loading: false,
  175. total: null,
  176. arrList: [],
  177. dataList: [],
  178. checkData: []
  179. };
  180. },
  181. created: function () {
  182. this.getUserList({
  183. QueryName: this.keyWords,
  184. PageSize: this.PageSize,
  185. PageIndex: this.pageNum
  186. });
  187. },
  188. computed: {
  189. noMore () {
  190. return this.pageNum >= this.total
  191. },
  192. disabled () {
  193. return this.loading || this.noMore
  194. }
  195. },
  196. methods: {
  197. isValidIP: function (ip) {
  198. let reg =
  199. /^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$/;
  200. return reg.test(ip);
  201. },
  202. save () {
  203. let that = this;
  204. let ipArr = this.FormData.IpList.split(";");
  205. let isSave = true;
  206. if (ipArr.length > 0) {
  207. ipArr.forEach((item) => {
  208. if (this.isValidIP(item) == false) {
  209. this.$message.error("请输入正确IP段,并以;号隔开");
  210. isSave = false;
  211. }
  212. });
  213. }
  214. this.$refs["ruleForm"].validate((valid) => {
  215. if (valid && isSave) {
  216. return new Promise((resolve, reject) => {
  217. SaveTac(this.FormData)
  218. .then((response) => {
  219. if (response.code === 0) {
  220. this.FormData = {
  221. TacName: "",
  222. TacDesc: "",
  223. DateBegin: "",
  224. DateEnd: "",
  225. TimeBegin: "",
  226. TimeEnd: "",
  227. IpType: 1,
  228. IpList: "",
  229. UseList: [],
  230. Unuselist: [],
  231. Date: null,
  232. Time: null,
  233. };
  234. this.$message.success("新增成功");
  235. this.$store.dispatch("tagsView/delView", this.$route);
  236. that.$router.push("/LoginPolicy");
  237. }
  238. resolve();
  239. })
  240. .catch((error) => {
  241. reject(error);
  242. });
  243. });
  244. } else {
  245. return false;
  246. }
  247. });
  248. },
  249. getUserList (obj) {
  250. return new Promise((resolve, reject) => {
  251. this.loading = true;
  252. GetUserList(obj)
  253. .then((res) => {
  254. if (res.code === 0) {
  255. const datas = res.returnData.records;
  256. const num = res.returnData.pages;
  257. this.arrList.push(datas);
  258. const arrs = this.arrList.flat();
  259. const msgs = _.unionBy(arrs, "UserId");
  260. this.FormData.Unuselist = msgs;
  261. this.dataList = msgs;
  262. this.total = num;
  263. this.loading = false;
  264. }
  265. resolve();
  266. })
  267. .catch((error) => {
  268. reject(error);
  269. this.loading = false;
  270. });
  271. });
  272. },
  273. changeChecked (arr) {
  274. const datas = this.dataList;
  275. datas.forEach((item, index) => {
  276. arr.forEach(p => {
  277. if (index == p) {
  278. this.checkData.push(item);
  279. this.FormData.Unuselist.splice(index, 1);
  280. }
  281. })
  282. });
  283. this.FormData.UseList = this.checkData;
  284. this.checkList = [];
  285. },
  286. UnchangeChecked (val, index) {
  287. this.UncheckList = true;
  288. this.FormData.Unuselist.push(val);
  289. this.FormData.UseList.splice(index, 1);
  290. },
  291. dataChange: function (data) {
  292. this.FormData.DateBegin = data[0];
  293. this.FormData.DateEnd = data[1];
  294. },
  295. timeChange: function (data) {
  296. this.FormData.TimeBegin = data[0];
  297. this.FormData.TimeEnd = data[1];
  298. },
  299. load () {
  300. this.pageNum += 1;
  301. this.getUserList({
  302. QueryName: this.keyWords,
  303. PageSize: this.PageSize,
  304. PageIndex: this.pageNum
  305. })
  306. },
  307. getUserData () {
  308. this.arrList = [];
  309. this.FormData.Unuselist = [];
  310. this.pageNum = 1;
  311. this.getUserList({
  312. QueryName: this.keyWords,
  313. PageSize: this.PageSize,
  314. PageIndex: this.pageNum
  315. })
  316. },
  317. clearData () {
  318. this.arrList = [];
  319. this.FormData.Unuselist = [];
  320. this.pageNum = 1;
  321. this.getUserList({
  322. QueryName: '',
  323. PageSize: this.PageSize,
  324. PageIndex: this.pageNum
  325. })
  326. }
  327. },
  328. };
  329. </script>
  330. <style lang="scss" scoped>
  331. .Box {
  332. width: 100%;
  333. height: 100%;
  334. padding: 0 64px;
  335. padding-top: 32px;
  336. }
  337. .topBox {
  338. width: 100%;
  339. height: 240px;
  340. background: #ffffff;
  341. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  342. border-radius: 16px;
  343. }
  344. .fristLine {
  345. display: flex;
  346. margin-left: 33px;
  347. }
  348. .inputBox {
  349. display: flex;
  350. height: 32px;
  351. line-height: 32px;
  352. }
  353. .inputBox1 {
  354. display: flex;
  355. height: 32px;
  356. line-height: 32px;
  357. }
  358. .inputBox2 {
  359. display: flex;
  360. height: 32px;
  361. line-height: 32px;
  362. }
  363. .inputBox3 {
  364. display: flex;
  365. height: 32px;
  366. line-height: 32px;
  367. }
  368. .SystemName {
  369. width: 108px;
  370. height: 14px;
  371. font-size: 14px;
  372. font-weight: 400;
  373. color: #303133;
  374. }
  375. .SystemName1 {
  376. width: 70px;
  377. text-align: right;
  378. margin-left: -10px;
  379. height: 14px;
  380. font-size: 14px;
  381. font-weight: 400;
  382. color: #303133;
  383. cursor: pointer;
  384. }
  385. ::v-deep .topBox {
  386. .el-button--default {
  387. width: 80px;
  388. height: 40px;
  389. background: #6e81bc;
  390. color: #ffffff;
  391. border-radius: 6px;
  392. border: none;
  393. }
  394. .inputBox .el-input__inner {
  395. width: 184px;
  396. height: 32px;
  397. background: #f5f7fa;
  398. border: 1px solid #dcdfe6;
  399. border-radius: 6px;
  400. }
  401. .el-select__caret {
  402. text-align: center;
  403. height: 32px;
  404. line-height: 32px;
  405. }
  406. .inputBox1 .el-date-editor {
  407. width: 322px;
  408. height: 32px;
  409. line-height: 32px;
  410. background: #f5f7fa;
  411. border: 1px solid #dcdfe6;
  412. border-radius: 6px;
  413. .el-range-separator {
  414. height: 32px;
  415. line-height: 32px;
  416. }
  417. .el-range-input {
  418. background: #f5f7fa;
  419. }
  420. }
  421. .inputBox2 .el-input__inner {
  422. width: 480px;
  423. height: 32px;
  424. background: #f5f7fa;
  425. border: 1px solid #dcdfe6;
  426. border-radius: 6px;
  427. }
  428. .inputBox3 .el-input__inner {
  429. width: 500px;
  430. height: 32px;
  431. background: #f5f7fa;
  432. border: 1px solid #dcdfe6;
  433. border-radius: 6px;
  434. }
  435. }
  436. .titleBtn {
  437. display: flex;
  438. justify-content: space-between;
  439. padding: 20px;
  440. }
  441. .titleStyle {
  442. width: 200px;
  443. height: 24px;
  444. font-size: 24px;
  445. font-weight: bold;
  446. color: #303133;
  447. margin-left: 10px;
  448. }
  449. .centerBox {
  450. display: flex;
  451. margin-top: 23px;
  452. }
  453. .leftB {
  454. width: 1242px;
  455. height: 760px;
  456. background: #ffffff;
  457. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  458. border-radius: 4px;
  459. overflow: auto;
  460. }
  461. .center-box {
  462. // max-height: calc(100% - 105px);
  463. // margin-top: 12px;
  464. padding: 0 24px 24px 24px;
  465. // overflow: auto;
  466. }
  467. .colorTitle {
  468. margin-top: 20px;
  469. width: 195px;
  470. height: 20px;
  471. display: flex;
  472. justify-content: space-between;
  473. float: left;
  474. }
  475. ::v-deep .box-card {
  476. margin-top: 16px;
  477. height: 80px;
  478. background: #f5f7fa;
  479. box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
  480. border-radius: 8px;
  481. .el-checkbox__label {
  482. display: none;
  483. }
  484. }
  485. // .center-box :hover {
  486. // box-shadow: 0 16px 32px 0 rgba(48, 55, 66, 0.15);
  487. // transform: translate(0, -5px);
  488. // transition-delay: 0s !important;
  489. // }
  490. .title {
  491. max-width: 60px;
  492. height: 16px;
  493. font-size: 16px;
  494. font-weight: 400;
  495. color: #303133;
  496. margin-right: 20px;
  497. display: block;
  498. white-space: nowrap;
  499. overflow: hidden;
  500. text-overflow: ellipsis;
  501. }
  502. // .box-card :hover {
  503. // box-shadow: none;
  504. // transform: none;
  505. // }
  506. .rightB {
  507. width: 670px;
  508. height: 760px;
  509. background: #ffffff;
  510. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  511. border-radius: 16px;
  512. margin-left: 40px;
  513. overflow: auto;
  514. .searchBox {
  515. display: flex;
  516. }
  517. }
  518. ::v-deep .rightB {
  519. .el-input__inner {
  520. width: 200px;
  521. height: 32px;
  522. background: #f5f7fa;
  523. border: 1px solid #c0c4cc;
  524. border-radius: 6px;
  525. }
  526. .el-button--default {
  527. width: 64px;
  528. height: 32px;
  529. line-height: 8px;
  530. background: linear-gradient(0deg, #6983be, #777dba);
  531. border-radius: 6px;
  532. color: #ffffff;
  533. border: none;
  534. margin-left: 10px;
  535. }
  536. }
  537. ::-webkit-scrollbar-track-piece {
  538. background: #d3dce6;
  539. }
  540. ::-webkit-scrollbar {
  541. width: 6px;
  542. }
  543. ::-webkit-scrollbar-thumb {
  544. background: #99a9bf;
  545. border-radius: 20px;
  546. }
  547. </style>