index.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759
  1. <template>
  2. <div class="rightBox">
  3. <div class="whiteBg" style="background:unset;padding: 0;">
  4. <div>
  5. <div class="basic_box" style="padding: 0;">
  6. <div class="big_box">
  7. <div class="left_first">
  8. <div class="c_info_title" style="padding: 0 0 15px;margin: 0 auto 0 0;">设置基础信息</div>
  9. <div>
  10. <div style="width: 100%;">
  11. <div class="course_input_box">
  12. <div class="bb_courseIcon"><img src="../../../../../assets/icon/new/course.png" />
  13. </div>
  14. <input @input="titleChange" type="text" placeholder="请输入表单名称" class="binfo_input"
  15. v-model="courseName"
  16. style="border: 1.5px solid rgb(202, 209, 220);margin: 0px 10px 0px 0px;border-radius: 5px;font-weight: 600;padding: 12px 14px 12px 71px;" />
  17. <el-switch v-model="isTeacherSee" active-text="允许回答后查看正确答案"
  18. style="justify-content: center;" @change="seeChange"></el-switch>
  19. </div>
  20. </div>
  21. </div>
  22. <!-- <div class="typeBox">
  23. <span>权限:</span>
  24. <el-select v-model="sJuri" placeholder="权限" @change="juriChange">
  25. <el-option label="所有人" value="0"></el-option>
  26. <el-option label="老师" value="1"></el-option>
  27. <el-option label="学生" value="2"></el-option>
  28. </el-select>
  29. </div> -->
  30. <div class="typeBox" style="display: flex;align-items: center;">
  31. <span>教研室权限:</span>
  32. <div class="checkJuri" @click="checkJuri">
  33. <span v-if="!getCName(checkList)" style="color: #c0c4d6;">所有人</span>
  34. <span>{{ getCName(checkList) }}</span>
  35. </div>
  36. </div>
  37. <div class="typeBox">
  38. <span>截止日期:</span>
  39. <el-date-picker v-model="selectedDate" type="date" :picker-options="pickerOptions"
  40. @change="DateChange" format="yyyy-MM-dd" clearable=""
  41. placeholder="选择截止日期"></el-date-picker>
  42. </div>
  43. <div class="typeBox" v-if="typeArray.length">
  44. <span>类型:</span>
  45. <el-select v-model="typeCheck" placeholder="选择类型" clearable @change="typeChange2">
  46. <el-option v-for="(item, index) in typeArray" :key="index" :label="item.name"
  47. :value="item.id"></el-option>
  48. </el-select>
  49. </div>
  50. <div class="both">
  51. <div class="choose">
  52. <div class="all_choose" v-for="(item, index) in CourseType[0]" :key="index"
  53. @change="typeChange">
  54. <span v-if="CourseTypeJson[item.id].length > 0">{{ item.name }}:</span>
  55. <el-checkbox-group v-model="courseTypeId" v-if="CourseTypeJson[item.id].length > 0">
  56. <el-checkbox v-for="item1 in CourseTypeJson[item.id]" :key="item1.id"
  57. :label="item1.id">{{
  58. item1.name }}</el-checkbox>
  59. </el-checkbox-group>
  60. </div>
  61. </div>
  62. </div>
  63. <div class="whiteBg" style="border-radius: 0; margin-top: 0px">
  64. <div class="c_info_title" style="padding: 0 0 15px;margin: 0 auto 0 0;">表单描述</div>
  65. <div style="width: 100%;box-sizing: border-box;">
  66. <div style="width: calc((100%))">
  67. <textarea v-autoHeight="68" rows="2" class="binfo_input binfo_textarea" cols
  68. v-model="courseText" placeholder="表单描述" @change="briefChange"></textarea>
  69. </div>
  70. </div>
  71. </div>
  72. </div>
  73. </div>
  74. </div>
  75. </div>
  76. </div>
  77. <div class="whiteBg" style="background:#fff;margin: 10px 0;min-height: 300px;">
  78. <div class="whiteBg" style="border-radius: 0">
  79. <div class="c_info_title">创建表单内容</div>
  80. <div class="c_info_box">
  81. <div class="c_info_tab">
  82. <!-- <span :class="{ active: type == 1 }" @click="type = 1">智能创建</span> -->
  83. <span :class="{ active: type == 2 }" @click="type = 2">手动创建</span>
  84. <!-- <span :class="{ active: type == 3 }" @click="type = 3">题库导入</span> -->
  85. <div class="skip_btn">
  86. <!-- <el-button type="primary" size="mini" @click="openAiCreate">智能创建</el-button> -->
  87. <!-- <el-button type="primary" size="mini" @click="nextSteps">跳过</el-button> -->
  88. </div>
  89. </div>
  90. <div class="c_info_tab_box">
  91. <manualCreate v-if="type == 2" :manualJson.sync="manualJson" @nextSteps="nextSteps"></manualCreate>
  92. </div>
  93. </div>
  94. </div>
  95. </div>
  96. <aiCreate :aiJson.sync="manualJson" :aiDialogVisible.sync="aiDialogVisible" v-if="aiDialogVisible"></aiCreate>
  97. <el-dialog title="选择权限" :visible.sync="juriDialog" :append-to-body="true" :before-close="handleClose"
  98. class="dialog_diy" width="500px">
  99. <van-divider>
  100. <div class="people_name">
  101. <el-checkbox v-model="checkAll" @change="checkAllChange">全选</el-checkbox>
  102. <el-checkbox v-model="ischeckAll" @change="ischeckAllChange">所有人</el-checkbox>
  103. </div>
  104. <div style="max-height: 300px;overflow: auto;">
  105. <el-checkbox-group v-model="checkList2" class="people_name" @change="pChange">
  106. <el-checkbox v-for="item in classJuri" :key="item.id" :label="item.id">
  107. {{ item.name }}
  108. </el-checkbox>
  109. </el-checkbox-group>
  110. </div>
  111. </van-divider>
  112. <span slot="footer" class="dialog-footer">
  113. <el-button @click="juriDialog = false">取 消</el-button>
  114. <el-button type="primary" @click="confirmCheck">确 定
  115. </el-button>
  116. </span>
  117. </el-dialog>
  118. </div>
  119. </template>
  120. <script>
  121. import manualCreate from './manualCreated.vue';
  122. import aiCreate from './aiCreate.vue';
  123. export default {
  124. components: {
  125. manualCreate,
  126. aiCreate
  127. },
  128. props: {
  129. oid: {
  130. type: String
  131. },
  132. org: {
  133. type: String
  134. },
  135. title: {
  136. type: String
  137. },
  138. testType: {
  139. type: Array
  140. },
  141. see: {
  142. type: Boolean
  143. },
  144. steps: {
  145. type: Number
  146. },
  147. cJson: {
  148. type: Array
  149. },
  150. typeid: {
  151. type: String
  152. },
  153. brief: {
  154. type: String
  155. },
  156. juri: {
  157. type: String
  158. },
  159. overDate: {
  160. type: String
  161. },
  162. juriList: {
  163. type: Array
  164. }
  165. },
  166. data() {
  167. return {
  168. CourseType: [],
  169. courseTypeId: [],
  170. CourseTypeJson: {},
  171. courseName: "",
  172. isTeacherSee: false,
  173. type: 2,
  174. manualJson: [],
  175. aiDialogVisible: false,
  176. typeArray: [],
  177. typeCheck: '',
  178. sJuri: '',
  179. courseText: '',
  180. selectedDate: '',
  181. pickerOptions: {
  182. disabledDate(time) {
  183. return time.getTime() < Date.now(); // 只能选择大于今天的日期
  184. },
  185. },
  186. classJuri: [],
  187. checkList: [],
  188. checkList2: [],
  189. juriDialog: false,
  190. checkAll: false,
  191. ischeckAll: false
  192. }
  193. },
  194. computed: {
  195. getCName() {
  196. return function (clist) {
  197. let _people = [];
  198. let _people2 = [];
  199. let _people3 = [];
  200. if (this.classJuri.length) {
  201. for (var i = 0; i < this.classJuri.length; i++) {
  202. _people2.push(this.classJuri[i].id);
  203. }
  204. for(var i = 0; i < clist.length; i++){
  205. if(_people2.indexOf(clist[i]) !== -1){
  206. _people3.push(clist[i]);
  207. }
  208. }
  209. for (var i = 0; i < this.classJuri.length; i++) {
  210. if(_people3.indexOf(this.classJuri[i].id) !== -1){
  211. _people.push(this.classJuri[i].name);
  212. }
  213. }
  214. }
  215. return this.classJuri.length ? _people.join(',') : "所有人";
  216. };
  217. },
  218. },
  219. directives: {
  220. autoHeight: {
  221. update(el, binding) {
  222. const { value } = binding
  223. if (value && typeof value === 'number') {
  224. el.style.height = `${value}px`
  225. } else {
  226. el.style.height = 'auto'
  227. }
  228. },
  229. componentUpdated(el) {
  230. el.style.height = `${el.scrollHeight + 5}px`
  231. },
  232. },
  233. },
  234. methods: {
  235. handleClose(done) {
  236. done();
  237. },
  238. selectAllType() {
  239. let params = {
  240. org: this.org && this.org != "" ? this.org : "",
  241. oid: this.oid && this.oid != "" ? this.oid : "",
  242. };
  243. this.ajax
  244. .get(this.$store.state.api + "selectAllTypeT", params)
  245. .then((res) => {
  246. this.CourseType = res.data;
  247. for (var cti = 0; cti < res.data[0].length; cti++) {
  248. if (res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86db5" || res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86ac5") {
  249. res.data[0][cti].name = "年级";
  250. } else if (res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86db5" || res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86ac5") {
  251. res.data[0][cti].name = "学科";
  252. }
  253. }
  254. let _courseTypeId = [];
  255. for (var i = 0; i < res.data[0].length; i++) {
  256. if (!this.cid) {
  257. this.courseTypeId[res.data[0][i].id] = [];
  258. }
  259. // if (!this.CourseTypeJson[res.data[0][i].id]) {
  260. // }
  261. this.CourseTypeJson[res.data[0][i].id] = [];
  262. if (res.data[2].length == 0 && res.data[3].length == 0) {
  263. for (var j = 0; j < res.data[1].length; j++) {
  264. if (
  265. this.courseTypeId.indexOf(res.data[1][j].id) != -1 &&
  266. _courseTypeId.indexOf(res.data[1][j].id) == -1
  267. ) {
  268. _courseTypeId.push(res.data[1][j].id);
  269. }
  270. if (res.data[0][i].id == res.data[1][j].pid) {
  271. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
  272. }
  273. }
  274. } else {
  275. if (res.data[2].length > 0) {
  276. for (var j = 0; j < res.data[2].length; j++) {
  277. if (
  278. this.courseTypeId.indexOf(res.data[2][j].id) != -1 &&
  279. _courseTypeId.indexOf(res.data[2][j].id) == -1
  280. ) {
  281. _courseTypeId.push(res.data[2][j].id);
  282. }
  283. if (res.data[0][i].id == res.data[2][j].pid) {
  284. this.CourseTypeJson[res.data[0][i].id].push(res.data[2][j]); // 去除公共分类
  285. }
  286. }
  287. }
  288. if (res.data[3].length > 0) {
  289. for (var j = 0; j < res.data[3].length; j++) {
  290. if (
  291. this.courseTypeId.indexOf(res.data[3][j].id) != -1 &&
  292. _courseTypeId.indexOf(res.data[3][j].id) == -1
  293. ) {
  294. _courseTypeId.push(res.data[3][j].id);
  295. }
  296. if (res.data[0][i].id == res.data[3][j].pid) {
  297. this.CourseTypeJson[res.data[0][i].id].push(res.data[3][j]); // 去除公共分类
  298. }
  299. }
  300. }
  301. }
  302. }
  303. this.courseTypeId = _courseTypeId;
  304. })
  305. .catch((err) => {
  306. console.error(err);
  307. });
  308. },
  309. titleChange() {
  310. this.$emit("update:title", this.courseName)
  311. },
  312. typeChange() {
  313. this.$emit("update:testType", this.courseTypeId)
  314. },
  315. seeChange() {
  316. this.$emit("update:see", this.isTeacherSee)
  317. },
  318. typeChange2() {
  319. this.$emit("update:typeid", this.typeCheck)
  320. },
  321. juriChange() {
  322. this.$emit("update:juri", this.sJuri)
  323. },
  324. DateChange() {
  325. this.$emit("update:overDate", this.selectedDate)
  326. },
  327. briefChange() {
  328. this.$emit("update:brief", this.courseText)
  329. },
  330. depthCopy(s) {
  331. return JSON.parse(JSON.stringify(s))
  332. },
  333. openAiCreate() {
  334. this.aiDialogVisible = true
  335. },
  336. nextSteps() {
  337. if (this.type == 2) {
  338. this.$emit("update:cJson", this.manualJson)
  339. }
  340. this.$emit('update:steps', this.steps + 1)
  341. console.log(this.cJson);
  342. console.log(this.manualJson);
  343. },
  344. selectType() {
  345. let params = {
  346. oid: this.oid,
  347. };
  348. this.ajax
  349. .get(this.$store.state.api + "selectTestType", params)
  350. .then((res) => {
  351. this.typeArray = res.data[0];
  352. })
  353. .catch((err) => {
  354. console.error(err);
  355. });
  356. },
  357. //获取教研室列表
  358. getClass2() {
  359. let params = {
  360. oid: this.oid,
  361. };
  362. this.ajax
  363. .get(this.$store.state.api + "selectTeacherOfficeBySchool", params)
  364. .then((res) => {
  365. this.classJuri = res.data[0];
  366. })
  367. .catch((err) => {
  368. this.isLoading = false;
  369. console.error(err);
  370. });
  371. },
  372. checkJuri() {
  373. let clist = []
  374. let clist2 = []
  375. for(var i = 0; i< this.classJuri.length;i++){
  376. clist2.push(this.classJuri[i].id)
  377. }
  378. for(var i = 0; i< this.checkList.length;i++){
  379. if(clist2.indexOf(this.checkList[i]) !== -1){
  380. clist.push(this.checkList[i])
  381. }
  382. }
  383. this.checkList2 = JSON.parse(JSON.stringify(clist));
  384. this.checkAll = this.checkList2.length == this.classJuri.length;
  385. this.ischeckAll = !this.checkList2.length;
  386. this.juriDialog = true
  387. },
  388. checkAllChange(){
  389. if(this.checkAll){
  390. this.checkList2 = []
  391. for(var i = 0; i < this.classJuri.length; i++){
  392. this.checkList2.push(this.classJuri[i].id)
  393. }
  394. this.ischeckAll = false
  395. }else{
  396. this.checkList2 = []
  397. this.ischeckAll = true
  398. }
  399. },
  400. ischeckAllChange(){
  401. if(this.ischeckAll){
  402. this.checkAll = false
  403. this.checkList2 = []
  404. }else{
  405. }
  406. this.ischeckAll = !this.checkList2.length;
  407. },
  408. pChange(val){
  409. if(val.length == this.classJuri.length){
  410. this.checkAll = true
  411. }else{
  412. this.checkAll = false
  413. }
  414. this.ischeckAll = !this.checkList2.length;
  415. },
  416. confirmCheck(){
  417. this.checkList = JSON.parse(JSON.stringify(this.checkList2));
  418. this.$emit("update:juriList", this.checkList)
  419. this.juriDialog = false
  420. }
  421. },
  422. mounted() {
  423. this.courseTypeId = this.depthCopy(this.testType)
  424. this.courseName = this.depthCopy(this.title)
  425. this.isTeacherSee = this.depthCopy(this.see)
  426. this.manualJson = this.depthCopy(this.cJson)
  427. this.typeCheck = this.depthCopy(this.typeid)
  428. this.courseText = this.depthCopy(this.brief)
  429. this.sJuri = this.depthCopy(this.juri)
  430. this.selectedDate = this.depthCopy(this.overDate)
  431. this.checkList = this.depthCopy(this.juriList)
  432. this.$forceUpdate()
  433. // this.selectAllType();
  434. this.selectType();
  435. this.getClass2();
  436. }
  437. }
  438. </script>
  439. <style scoped>
  440. .rightBox {
  441. width: calc(100%);
  442. background: #F0F2F5;
  443. overflow: auto;
  444. height: calc(100%);
  445. margin: 0 auto;
  446. position: relative;
  447. box-sizing: border-box;
  448. }
  449. .whiteBg {
  450. /* background: #fff; */
  451. border-radius: 10px;
  452. }
  453. .basic_box {
  454. margin: 0 auto;
  455. position: relative;
  456. padding: 0 20px 0 20px;
  457. }
  458. .big_box {
  459. /* margin-top: 20px; */
  460. display: flex;
  461. justify-content: space-between;
  462. /* border-bottom: 1px solid #E0E2ED; */
  463. }
  464. .left_first {
  465. display: flex;
  466. flex-direction: column;
  467. flex-wrap: nowrap;
  468. width: calc(100%);
  469. padding: 20px;
  470. box-sizing: border-box;
  471. background: #fff;
  472. border-radius: 5px;
  473. }
  474. .course_input_box {
  475. display: flex;
  476. margin-right: 20px;
  477. width: 100%;
  478. align-items: center;
  479. position: relative;
  480. }
  481. .course_input_box>.binfo_input {
  482. width: calc(100% - 290px);
  483. margin: 0 10px;
  484. }
  485. .bb_courseIcon {
  486. width: 57px;
  487. height: 45px;
  488. background: #F0F4FA;
  489. border-radius: 5px 0px 0px 5px;
  490. display: flex;
  491. align-items: center;
  492. justify-content: center;
  493. border-right: 1.5px solid rgb(202, 209, 220);
  494. box-sizing: border-box;
  495. position: absolute;
  496. left: 1.5px
  497. }
  498. .bb_courseIcon>img {
  499. width: 25px;
  500. height: auto
  501. }
  502. .all_choose {
  503. display: flex;
  504. flex-direction: row;
  505. align-items: flex-start;
  506. width: 100%;
  507. }
  508. .all_choose+.all_choose {
  509. /* margin-top: 10px */
  510. }
  511. .all_choose>span {
  512. min-width: fit-content;
  513. display: block;
  514. white-space: nowrap;
  515. overflow: hidden;
  516. text-overflow: ellipsis;
  517. margin-right: 20px;
  518. font-weight: bold;
  519. font-size: 14px;
  520. }
  521. .all_choose>>>.el-checkbox-group {
  522. display: flex;
  523. flex-direction: row;
  524. width: 100%;
  525. flex-wrap: wrap;
  526. align-content: center;
  527. justify-content: flex-start;
  528. align-items: center;
  529. margin-top: 3px;
  530. }
  531. .all_choose>.el-checkbox-group>>>.el-checkbox {
  532. margin-bottom: 10px;
  533. display: flex;
  534. flex-direction: row;
  535. align-items: center;
  536. margin-right: 10px;
  537. }
  538. .all_choose>.el-checkbox-group>.el-checkbox>>>.el-checkbox__label {
  539. min-width: 80px;
  540. overflow: hidden;
  541. width: 80px;
  542. text-overflow: ellipsis;
  543. white-space: nowrap;
  544. }
  545. .all_choose>.el-checkbox-group>.el-checkbox>>>.el-checkbox__label:hover {
  546. width: auto;
  547. }
  548. .choose>div:nth-child(3)>span {
  549. /* letter-spacing: 0 !important; */
  550. }
  551. .choose {
  552. display: flex;
  553. flex-direction: column;
  554. flex-wrap: nowrap;
  555. height: 100%;
  556. justify-content: space-evenly;
  557. align-items: flex-start;
  558. }
  559. .both {
  560. display: flex;
  561. flex-direction: row;
  562. flex-wrap: wrap;
  563. width: 100%;
  564. align-items: center;
  565. justify-content: flex-start;
  566. margin: 15px 0;
  567. }
  568. .binfo_input {
  569. width: 100%;
  570. margin: 0;
  571. padding: 12px 14px;
  572. display: block;
  573. min-width: 0;
  574. outline: none;
  575. box-sizing: border-box;
  576. background: none;
  577. border: none;
  578. border-radius: 4px;
  579. background: #fff;
  580. font-size: 16px;
  581. resize: none;
  582. font-family: 'Microsoft YaHei';
  583. min-height: 48px;
  584. border: 1.5px solid #CAD1DC;
  585. }
  586. .c_info_title {
  587. padding: 15px 0 15px 0;
  588. font-size: 16px;
  589. font-weight: bold;
  590. margin: 0 0 0 20px;
  591. box-sizing: border-box;
  592. display: flex;
  593. align-items: center;
  594. line-height: 20px;
  595. }
  596. .c_info_title::before {
  597. content: '';
  598. display: block;
  599. width: 3px;
  600. height: 20px;
  601. background: #0061FF;
  602. border-radius: 3px;
  603. margin: 0 5px 0 0;
  604. }
  605. .c_info_box {
  606. width: 100%;
  607. }
  608. .c_info_tab {
  609. display: flex;
  610. align-items: center;
  611. justify-content: center;
  612. }
  613. .c_info_tab>span {
  614. cursor: pointer;
  615. padding-bottom: 10px;
  616. font-weight: bold;
  617. }
  618. .c_info_tab>span+span {
  619. margin-left: 20px;
  620. }
  621. .c_info_tab>.active {
  622. color: #3e88f4;
  623. border-bottom: 2px solid #2f80f3;
  624. }
  625. .c_info_tab_box {
  626. overflow: hidden;
  627. }
  628. .skip_btn {
  629. position: absolute;
  630. right: 20px;
  631. }
  632. .typeBox {
  633. margin-top: 20px;
  634. }
  635. .typeBox>span {
  636. font-weight: bold;
  637. font-size: 14px;
  638. }
  639. .binfo_textarea {
  640. border: 1.5px solid #CAD1DC;
  641. font-size: 16px;
  642. resize: none;
  643. /* background: #f6f6f6; */
  644. font-family: 'Microsoft YaHei';
  645. }
  646. .checkJuri {
  647. width: 220px;
  648. height: 40px;
  649. border: 1px solid #DCDFE6;
  650. padding: 0 15px;
  651. display: flex;
  652. align-items: center;
  653. box-sizing: border-box;
  654. margin-left: 5px;
  655. border-radius: 4px;
  656. overflow: hidden;
  657. text-overflow: ellipsis;
  658. white-space: nowrap;
  659. cursor: pointer;
  660. font-size: 14px;
  661. color: #464646;
  662. }
  663. .dialog_diy>>>.el-dialog {
  664. /* height: 100%; */
  665. /* margin: 15vh auto !important; */
  666. }
  667. .dialog_diy>>>.el-dialog__header {
  668. background: #454545 !important;
  669. padding: 15px 20px;
  670. }
  671. .dialog_diy>>>.el-dialog__body {
  672. /* height: calc(100% - 54px); */
  673. box-sizing: border-box;
  674. /* padding: 0px; */
  675. }
  676. .dialog_diy>>>.el-dialog__title {
  677. color: #fff;
  678. }
  679. .dialog_diy>>>.el-dialog__headerbtn {
  680. top: 19px;
  681. }
  682. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close {
  683. color: #fff;
  684. }
  685. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close:hover {
  686. color: #fff;
  687. }
  688. .dialog_diy>>>.el-dialog__body,
  689. .dialog_diy>>>.el-dialog__footer {
  690. /* background: #e8ebf1; */
  691. overflow: hidden;
  692. }
  693. .people_name>>>.el-checkbox {
  694. width: 100%;
  695. display: flex;
  696. align-items: center;
  697. margin-bottom: 10px;
  698. }
  699. .people_name>>>.el-checkbox__label {
  700. text-overflow: ellipsis;
  701. overflow: hidden;
  702. width: calc(100%);
  703. }
  704. .people_name2>>>.el-checkbox__label {
  705. width: calc(100% - 130px);
  706. }
  707. </style>