addEdit.vue 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839
  1. <template>
  2. <el-dialog
  3. v-loading="loading"
  4. :title="title"
  5. :center="true"
  6. align="left"
  7. top="5vh"
  8. width="1040px"
  9. :close-on-click-modal="false"
  10. :visible.sync="showModelThis"
  11. element-loading-text="拼命加载中"
  12. element-loading-spinner="el-icon-loading"
  13. element-loading-background="rgba(0, 0, 0, 0.8)"
  14. @close="showModelThis = false"
  15. >
  16. <el-card style="margin-top: -20px">
  17. <el-row :gutter="10">
  18. <el-form
  19. ref="ruleForm"
  20. :model="ruleForm"
  21. status-icon
  22. :size="'mini'"
  23. :rules="rulesThis"
  24. label-width="80px"
  25. class="demo-ruleForm"
  26. >
  27. <el-col :span="9">
  28. <el-form-item label="角色名称" prop="role_name">
  29. <el-input
  30. v-model="ruleForm.role_name"
  31. :disabled="isDetail"
  32. maxlength="50"
  33. placeholder="角色名称"
  34. />
  35. </el-form-item>
  36. </el-col>
  37. <el-col :span="9">
  38. <el-form-item
  39. label="关键字段权限"
  40. prop="private_field"
  41. label-width="110px"
  42. >
  43. <el-checkbox-group
  44. v-model="ruleForm.private_field"
  45. :disabled="isDetail"
  46. placeholder="关键字段权限"
  47. >
  48. <el-checkbox :label="'1'">成本价</el-checkbox>
  49. <el-checkbox :label="'2'">销售价</el-checkbox>
  50. <el-checkbox :label="'3'">毛利率</el-checkbox>
  51. </el-checkbox-group>
  52. </el-form-item>
  53. </el-col>
  54. <el-col :span="6">
  55. <el-form-item label="角色等级" prop="level">
  56. <el-select
  57. v-model="ruleForm.level"
  58. filterable
  59. :disabled="isDetail"
  60. placeholder="请选择角色等级"
  61. style="width: 100%"
  62. >
  63. <el-option
  64. v-for="item in roleLevel"
  65. :key="'ruleid' + item.code"
  66. :label="item.name"
  67. :value="item.code"
  68. />
  69. </el-select>
  70. </el-form-item>
  71. </el-col>
  72. <div class="quanxian-main">
  73. <div class="quanxian-title">
  74. <span style="color: #ff8888">*</span
  75. ><span
  76. style="
  77. font-size: 14px;
  78. color: #606266;
  79. line-height: 40px;
  80. padding: 0 12px 0 0;
  81. font-weight: 700;
  82. "
  83. >功能权限</span
  84. >
  85. </div>
  86. <div class="rule-view">
  87. <div class="rule-list">
  88. <el-row
  89. v-for="(item, index) in actionList"
  90. :key="'menu' + item.id + index"
  91. >
  92. <el-col
  93. v-if="item.child && item.child.length > 0"
  94. class="ffff"
  95. :span="24"
  96. >
  97. <div class="ftitle">
  98. <span>{{ item.menu_name }}</span>
  99. </div>
  100. <div class="fbody">
  101. <div
  102. class="fbody-item"
  103. v-for="(subItem, subIndex) in item.child"
  104. :key="'yemian' + subItem.id + subIndex"
  105. >
  106. <template
  107. v-if="
  108. !(
  109. subItem.action &&
  110. subItem.action.length === 0 &&
  111. subItem.action_data &&
  112. subItem.action_data.length === 0
  113. )
  114. "
  115. >
  116. <div class="stitle">
  117. <span class="_h2">{{ subItem.menu_name }}</span>
  118. <el-radio-group
  119. style="margin: 0 0 0 20px"
  120. size="mini"
  121. :disabled="isDetail"
  122. v-if="
  123. subItem &&
  124. subItem.private &&
  125. subItem.private.length === 2
  126. "
  127. v-model="subItem.is_private_change"
  128. >
  129. <el-radio-button
  130. :disabled="isDetail"
  131. v-for="(radioN, ri) in subItem.private"
  132. :key="radioN.label + ri"
  133. :label="radioN.id"
  134. >{{ radioN.label }}</el-radio-button
  135. >
  136. </el-radio-group>
  137. </div>
  138. <div
  139. class="scheck"
  140. v-if="subItem.action && subItem.action.length > 0"
  141. >
  142. <div class="checkAll">
  143. <el-checkbox
  144. v-model="subItem.checkAll"
  145. :disabled="isDetail"
  146. :indeterminate="indeterminateCheck(subItem)"
  147. @change="
  148. handleCheckAllChange(
  149. $event,
  150. index,
  151. item,
  152. subIndex
  153. )
  154. "
  155. >功能全选</el-checkbox
  156. >
  157. </div>
  158. <div class="checkItem">
  159. <el-checkbox-group
  160. v-model="subItem.checkList"
  161. :disabled="isDetail"
  162. @change="
  163. handleCheckedGroupChange(
  164. $event,
  165. index,
  166. item,
  167. subIndex
  168. )
  169. "
  170. >
  171. <template v-for="children in subItem.action">
  172. <el-checkbox
  173. :disabled="isDetail"
  174. :key="'checkItem' + children.id"
  175. :label="children.id"
  176. @change="
  177. handleCheckedChange(
  178. $event,
  179. children.id,
  180. index,
  181. subIndex,
  182. item
  183. )
  184. "
  185. >{{ children.action_name }}</el-checkbox
  186. >
  187. </template>
  188. </el-checkbox-group>
  189. </div>
  190. </div>
  191. <div
  192. class="sfield"
  193. v-if="
  194. subItem.action_data &&
  195. subItem.action_data.length > 0
  196. "
  197. >
  198. <div class="checkAll">
  199. <el-checkbox
  200. v-model="subItem.fieldAll"
  201. :disabled="isDetail"
  202. :indeterminate="indeterminateField(subItem)"
  203. @change="
  204. handleFieldAllChange(
  205. $event,
  206. index,
  207. item,
  208. subIndex
  209. )
  210. "
  211. >字段全选</el-checkbox
  212. >
  213. </div>
  214. <div class="checkItem">
  215. <el-checkbox-group
  216. v-model="subItem.fieldList"
  217. :disabled="isDetail"
  218. @change="
  219. handleFieldGroupChange(
  220. $event,
  221. index,
  222. item,
  223. subIndex
  224. )
  225. "
  226. >
  227. <template
  228. v-for="children in subItem.action_data"
  229. >
  230. <el-checkbox
  231. :key="'FieldItem' + children.id"
  232. :label="children.id"
  233. :disabled="isDetail"
  234. @change="
  235. handleFieldChange(
  236. $event,
  237. children.id,
  238. index,
  239. subIndex,
  240. item
  241. )
  242. "
  243. >{{ children.field_name }}</el-checkbox
  244. >
  245. </template>
  246. </el-checkbox-group>
  247. </div>
  248. </div>
  249. </template>
  250. </div>
  251. </div>
  252. </el-col>
  253. </el-row>
  254. </div>
  255. </div>
  256. </div>
  257. </el-form>
  258. <el-col :span="24" style="text-align: right">
  259. <el-button
  260. v-if="!isDetail"
  261. type="primary"
  262. :size="'mini'"
  263. @click="submitForm"
  264. >保 存
  265. </el-button>
  266. <el-button @click="showModelThis = false" :size="'mini'">{{
  267. isDetail ? "关 闭" : "取 消"
  268. }}</el-button>
  269. </el-col>
  270. </el-row>
  271. </el-card>
  272. </el-dialog>
  273. </template>
  274. <script>
  275. import asyncRequest from "@/apis/service/interest/role";
  276. import roleLevel from "@/assets/js/roleLevel";
  277. import { isChinese, isEmoticon } from "@/utils/validate";
  278. import resToken from "@/mixins/resToken";
  279. export default {
  280. name: "Role",
  281. props: ["showModel", "id", "isDetail"],
  282. mixins: [resToken],
  283. data() {
  284. const validatename = (rule, value, callback) => {
  285. if (value === "") {
  286. callback(new Error("角色名称不能为空!"));
  287. } else {
  288. if (value.lenght < 2 || value.lenght > 10) {
  289. callback(new Error("角色名称规则为2~10位汉字!"));
  290. } else if (!isChinese(value)) {
  291. callback(new Error("角色名称规则为2~10位汉字!"));
  292. } else if (isEmoticon(value)) {
  293. callback(new Error("角色名称规则为2~10位汉字!"));
  294. } else {
  295. callback();
  296. }
  297. }
  298. };
  299. return {
  300. loading: false,
  301. title: "添加角色",
  302. private_data: [], //私有数据菜单ID
  303. showModelThis: this.showModel,
  304. roleLevel: roleLevel,
  305. ruleForm: {
  306. role_name: "",
  307. level: "1",
  308. private_field: [],
  309. },
  310. action_data: [], // 字段数据
  311. action: [], // 功能数据
  312. // 当前角色
  313. roleActive: {
  314. rules: [],
  315. },
  316. // 角色列表
  317. roleList: [],
  318. // 功能权限列表
  319. ruleList: [],
  320. dataList: [],
  321. actionList: [],
  322. rulesThis: this.rules,
  323. rules: {
  324. private_field: [
  325. {
  326. type: "array",
  327. required: true,
  328. message: "请选择关键字段权限",
  329. trigger: "change",
  330. },
  331. ],
  332. role_name: [
  333. {
  334. required: true,
  335. validator: validatename,
  336. trigger: "blur",
  337. },
  338. ],
  339. level: [
  340. { required: true, message: "请选择角色等级", trigger: "change" },
  341. ],
  342. },
  343. };
  344. },
  345. computed: {
  346. indeterminateCheck() {
  347. return (item) => {
  348. // 选中子节点的数量
  349. const selectItemLength = item.action.filter(
  350. (filitem) =>
  351. item.checkList.findIndex((finditem) => finditem === filitem.id) > -1
  352. ).length;
  353. // 未选中子节点的数量
  354. const noSlectItemLength = item.action.filter(
  355. (filitem) =>
  356. item.checkList.findIndex((finditem) => finditem === filitem.id) ==
  357. -1
  358. ).length;
  359. // // 当前节点的index
  360. // 存在选中子节点且存在未选中子节点为中间态
  361. return selectItemLength > 0 && noSlectItemLength > 0;
  362. };
  363. },
  364. indeterminateField() {
  365. return (item) => {
  366. // 选中子节点的数量
  367. const selectItemLength = item.action_data.filter(
  368. (filitem) =>
  369. item.fieldList.findIndex((finditem) => finditem === filitem.id) > -1
  370. ).length;
  371. // 未选中子节点的数量
  372. const noSlectItemLength = item.action_data.filter(
  373. (filitem) =>
  374. item.fieldList.findIndex((finditem) => finditem === filitem.id) ==
  375. -1
  376. ).length;
  377. // // 当前节点的index
  378. // 存在选中子节点且存在未选中子节点为中间态
  379. return selectItemLength > 0 && noSlectItemLength > 0;
  380. };
  381. },
  382. },
  383. watch: {
  384. showModel: function (val) {
  385. this.showModelThis = val;
  386. if (val) {
  387. this.initForm();
  388. }
  389. },
  390. showModelThis(val) {
  391. if (!val) {
  392. this.$emit("cancel");
  393. }
  394. },
  395. },
  396. methods: {
  397. // 全选/全不选
  398. handleCheckAllChange(checkAll, index, item, subIndex) {
  399. this.actionList[index].child[subIndex].checkAll = checkAll;
  400. this.$set(this.actionList, index, item);
  401. this.actionList[index].child[subIndex].action.forEach((element) => {
  402. const findindex = this.actionList[index].child[
  403. subIndex
  404. ].checkList.findIndex((findItem) => findItem === element.id);
  405. if (checkAll && findindex == -1) {
  406. this.actionList[index].child[subIndex].checkList.push(element.id);
  407. } else if (!checkAll && findindex > -1) {
  408. this.actionList[index].child[subIndex].checkList.splice(findindex, 1);
  409. }
  410. });
  411. },
  412. // 全选/全不选
  413. handleFieldAllChange(fieldAll, index, item, subIndex) {
  414. this.actionList[index].child[subIndex].fieldAll = fieldAll;
  415. this.$set(this.actionList, index, item);
  416. this.actionList[index].child[subIndex].action_data.forEach((element) => {
  417. const findindex = this.actionList[index].child[
  418. subIndex
  419. ].fieldList.findIndex((findItem) => findItem === element.id);
  420. if (fieldAll && findindex == -1) {
  421. this.actionList[index].child[subIndex].fieldList.push(element.id);
  422. } else if (!fieldAll && findindex > -1) {
  423. this.actionList[index].child[subIndex].fieldList.splice(findindex, 1);
  424. }
  425. });
  426. },
  427. // 复选框组内的选中/不选中
  428. handleCheckedGroupChange(event, index, item, subIndex) {
  429. this.actionList[index].child[subIndex].checkAll = this.actionList[
  430. index
  431. ].child[subIndex].action.every(
  432. (evitem) =>
  433. this.actionList[index].child[subIndex].checkList.findIndex(
  434. (finditem) => finditem === evitem.id
  435. ) > -1
  436. );
  437. this.$set(this.actionList, index, item);
  438. },
  439. // 复选框组内的选中/不选中
  440. handleFieldGroupChange(event, index, item, subIndex) {
  441. this.actionList[index].child[subIndex].fieldAll = this.actionList[
  442. index
  443. ].child[subIndex].action_data.every(
  444. (evitem) =>
  445. this.actionList[index].child[subIndex].fieldList.findIndex(
  446. (finditem) => finditem === evitem.id
  447. ) > -1
  448. );
  449. this.$set(this.actionList, index, item);
  450. },
  451. // 单项复选框选中/不选中
  452. handleCheckedChange(checked, id, index, subIndex, item) {
  453. // console.log(checked, id, index, subIndex);
  454. if (checked) {
  455. // 选中时检查pid的选中状态
  456. this.actionList[index].child[subIndex].checkList.indexOf(id) == -1 &&
  457. this.actionList[index].child[subIndex].checkList.push(id);
  458. } else {
  459. const find = this.actionList[index].child[subIndex].checkList.findIndex(
  460. (e) => e == id
  461. );
  462. if (find > -1) {
  463. this.actionList[index].child[subIndex].checkList.splice(find, 1);
  464. }
  465. this.actionList[index].child[subIndex].checkAll = false;
  466. }
  467. this.$set(this.actionList, index, item);
  468. },
  469. // 单项复选框选中/不选中
  470. handleFieldChange(checked, id, index, subIndex, item) {
  471. // console.log(checked, id, index, subIndex);
  472. if (checked) {
  473. // 选中时检查pid的选中状态
  474. this.actionList[index].child[subIndex].fieldList.indexOf(id) == -1 &&
  475. this.actionList[index].child[subIndex].fieldList.push(id);
  476. } else {
  477. const find = this.actionList[index].child[subIndex].fieldList.findIndex(
  478. (e) => e == id
  479. );
  480. if (find > -1) {
  481. this.actionList[index].child[subIndex].fieldList.splice(find, 1);
  482. }
  483. this.actionList[index].child[subIndex].fieldAll = false;
  484. }
  485. this.$set(this.actionList, index, item);
  486. // console.log(this.actionList[index].child[subIndex]);
  487. },
  488. async initForm() {
  489. this.loading = true;
  490. if (this.id === "add") {
  491. this.title = "添加角色";
  492. // this.ruleForm.isAdmin = 0;
  493. this.rulesThis = this.rules;
  494. await this.resetForm();
  495. await this.initActionList();
  496. this.loading = false;
  497. } else {
  498. if (this.isDetail) {
  499. this.title = "角色";
  500. this.rulesThis = {};
  501. } else {
  502. this.title = "修改角色";
  503. this.rulesThis = this.rules;
  504. }
  505. await this.resetForm();
  506. await this.initActionList();
  507. await this.initData();
  508. this.loading = false;
  509. }
  510. },
  511. async initData() {
  512. const res = await asyncRequest.detail({ roleid: this.id });
  513. if (res && res.code === 0 && res.data) {
  514. let resD = res.data;
  515. resD.private_field =
  516. resD.private_field === "" ? [] : resD.private_field;
  517. this.ruleForm = resD;
  518. if (resD.action && resD.action.length > 0) {
  519. this.action = resD.action;
  520. } else {
  521. this.action = [];
  522. }
  523. if (resD.action_data && resD.action_data.length > 0) {
  524. this.action_data = resD.action_data;
  525. } else {
  526. this.action_data = [];
  527. }
  528. if (resD.private_data === "") {
  529. resD.private_data = [];
  530. }
  531. if (resD.private_data && resD.private_data.length > 0) {
  532. this.private_data = resD.private_data;
  533. } else {
  534. this.private_data = [];
  535. }
  536. const arr = JSON.parse(JSON.stringify(this.actionList));
  537. arr.map((x) => {
  538. if (x.child && x.child.length > 0) {
  539. x.child.map((y) => {
  540. if (y.action && y.action.length > 0) {
  541. y.action.map((z) => {
  542. const Aindex = this.action.findIndex((a) => a === z.id);
  543. if (Aindex !== -1) {
  544. y.checkList.push(this.action[Aindex]);
  545. }
  546. return z;
  547. });
  548. if (y.action.length === y.checkList.length) {
  549. y.checkAll = true;
  550. }
  551. }
  552. if (y.action_data && y.action_data.length > 0) {
  553. y.action_data.map((z) => {
  554. const Bindex = this.action_data.findIndex((a) => a === z.id);
  555. if (Bindex !== -1) {
  556. y.fieldList.push(this.action_data[Bindex]);
  557. }
  558. return z;
  559. });
  560. if (y.action_data.length === y.fieldList.length) {
  561. y.fieldAll = true;
  562. }
  563. }
  564. if (y.private && y.private.length === 2) {
  565. let Cindex = this.private_data.findIndex((a) => a === y.id);
  566. if (Cindex !== -1) {
  567. y.is_private_change = "1";
  568. } else {
  569. y.is_private_change = "0";
  570. }
  571. } else {
  572. y.is_private_change = "0";
  573. }
  574. return y;
  575. });
  576. }
  577. return x;
  578. });
  579. this.actionList = arr;
  580. } else if (res && res.code >= 100 && res.code <= 104) {
  581. await this.logout();
  582. } else {
  583. this.$message.warning(res.message);
  584. }
  585. },
  586. async initActionList() {
  587. const res = await asyncRequest.actionList({});
  588. if (res && res.code === 0) {
  589. const list = res.data;
  590. let arr = list.filter((item) => item.child && item.child.length > 0);
  591. arr = arr.map((x) => {
  592. x.child.map((y) => {
  593. y.checkAll = false;
  594. y.checkList = [];
  595. y.fieldAll = false;
  596. y.fieldList = [];
  597. y.is_private_change = "0";
  598. if (y.is_private === "0") {
  599. y.private = [];
  600. } else {
  601. y.private = [
  602. {
  603. id: "0",
  604. label: "公有数据",
  605. },
  606. {
  607. id: "1",
  608. label: "私有数据",
  609. },
  610. ];
  611. }
  612. return y;
  613. });
  614. return x;
  615. });
  616. this.actionList = arr;
  617. } else if (res && res.code >= 100 && res.code <= 104) {
  618. await this.logout();
  619. } else {
  620. this.$message.warning(res.message);
  621. }
  622. },
  623. async resetForm() {
  624. // 重置
  625. await this.$nextTick(() => {
  626. if (this.$refs.ruleForm) {
  627. this.$refs.ruleForm.resetFields();
  628. this.$refs.ruleForm.clearValidate();
  629. this.ruleForm = {
  630. role_name: "",
  631. private_field: [],
  632. level: "1",
  633. };
  634. }
  635. });
  636. },
  637. async submitForm() {
  638. await this.$refs.ruleForm.validate(async (valid) => {
  639. if (valid) {
  640. if (this.loading) {
  641. return;
  642. }
  643. this.action_data = []; // 字段数据
  644. this.action = []; // 功能数据
  645. let arr = [];
  646. this.actionList.forEach((x) => {
  647. x.child.forEach((y) => {
  648. this.action_data.push(...y.fieldList);
  649. this.action.push(...y.checkList);
  650. if (y.is_private_change === "1") {
  651. arr.push(y.id);
  652. }
  653. });
  654. });
  655. // this.action_data.length === 0 ||和字段
  656. if (this.action.length === 0) {
  657. this.$message.warning("请选择功能!");
  658. } else {
  659. this.loading = true;
  660. const model = {
  661. roleid: this.id,
  662. role_name: this.ruleForm.role_name,
  663. private_field: JSON.parse(
  664. JSON.stringify(this.ruleForm.private_field)
  665. ),
  666. level: this.ruleForm.level,
  667. action: this.action,
  668. action_data: this.action_data,
  669. private_data: arr,
  670. };
  671. console.log(this.ruleForm.private_field);
  672. console.log(model);
  673. let res = {};
  674. if (this.id === "add") {
  675. delete model["roleid"];
  676. res = await asyncRequest.add(model);
  677. } else {
  678. res = await asyncRequest.update(model);
  679. }
  680. this.loading = false;
  681. if (res && res.code === 0) {
  682. const title = this.id === "add" ? "添加成功" : "修改成功";
  683. this.$notify.success({
  684. title,
  685. message: "",
  686. });
  687. this.showModelThis = false;
  688. // 刷新
  689. this.$emit("refresh");
  690. } else if (res && res.code >= 100 && res.code <= 104) {
  691. await this.logout();
  692. } else {
  693. this.$message.warning(res.message);
  694. }
  695. }
  696. } else {
  697. console.log("error submit!!");
  698. return false;
  699. }
  700. });
  701. },
  702. },
  703. };
  704. </script>
  705. <style lang="scss" scoped>
  706. .role {
  707. .quanxian-main {
  708. width: 100%;
  709. display: flex;
  710. .quanxian-title {
  711. width: 84px;
  712. position: relative;
  713. padding: 8px 0 0 7px;
  714. }
  715. .rule-view {
  716. width: calc(100% - 84px);
  717. position: relative;
  718. height: 550px;
  719. overflow-y: scroll;
  720. border-top: 1px solid #dfe6ec;
  721. border-left: 1px solid #dfe6ec;
  722. // padding: 0 0 0 16px;
  723. .ffff {
  724. width: 100%;
  725. display: flex;
  726. align-items: stretch;
  727. .ftitle {
  728. width: 110px;
  729. text-align: center;
  730. border-right: 1px solid #dfe6ec;
  731. border-bottom: 1px solid #dfe6ec;
  732. padding: 12px 14px;
  733. display: flex;
  734. align-items: center;
  735. span {
  736. display: inline-block;
  737. width: 100%;
  738. font-size: 17px;
  739. text-align: center;
  740. color: #97a8be;
  741. }
  742. }
  743. .fbody {
  744. width: calc(100% - 110px);
  745. .fbody-item {
  746. border-right: 1px solid #dfe6ec;
  747. border-bottom: 1px solid #dfe6ec;
  748. .stitle {
  749. padding: 18px 18px 12px 18px;
  750. border-bottom: 1px dashed #dfe6ec;
  751. font-size: 14px;
  752. color: #97a8be;
  753. ._h2 {
  754. display: inline-block;
  755. // width: 100px;
  756. }
  757. }
  758. .scheck {
  759. padding: 15px 0 10px 0;
  760. display: flex;
  761. width: 100%;
  762. .checkAll {
  763. width: 140px;
  764. text-align: right;
  765. padding: 0 35px 0 0;
  766. }
  767. .checkItem {
  768. width: calc(100% - 140px);
  769. }
  770. }
  771. .sfield {
  772. padding: 0 0 10px 0;
  773. display: flex;
  774. width: 100%;
  775. .checkAll {
  776. width: 140px;
  777. text-align: right;
  778. padding: 0 35px 0 0;
  779. }
  780. .checkItem {
  781. width: calc(100% - 140px);
  782. }
  783. }
  784. }
  785. }
  786. }
  787. // .rule-list {
  788. // height: 100%;
  789. // overflow-y: auto;
  790. // padding: 0 0 80px 0;
  791. // .rule-title {
  792. // .title {
  793. // font-size: 20px;
  794. // color: #333;
  795. // }
  796. // .desc {
  797. // margin: 10px 0;
  798. // font-size: 12px;
  799. // color: #999;
  800. // }
  801. // }
  802. // .rule-item {
  803. // .title {
  804. // margin: 30px 30px 10px 0;
  805. // font-size: 18px;
  806. // padding-bottom: 12px;
  807. // border-bottom: 1px solid #eee;
  808. // color: #333;
  809. // .el-checkbox {
  810. // margin-left: 10px;
  811. // }
  812. // }
  813. // .el-checkbox-group {
  814. // margin: 10px 30px 30px 0;
  815. // .el-checkbox {
  816. // line-height: 30px;
  817. // }
  818. // .children-checkbox-hr {
  819. // margin: 8px 0;
  820. // border: none;
  821. // border-top: 2px dotted #eee;
  822. // }
  823. // }
  824. // }
  825. // }
  826. }
  827. }
  828. }
  829. </style>