invite.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891
  1. <template>
  2. <div class="record-warp">
  3. <div class="record-main">
  4. <el-row>
  5. <el-col :span="24">
  6. <div class="search-head">
  7. <div class="invite">
  8. <el-input v-model="planName" clearable placeholder="请输入名称"></el-input
  9. >&nbsp;&nbsp;&nbsp;&nbsp;
  10. </div>
  11. <el-select v-model="planStatus" clearable placeholder="请选择状态">
  12. <el-option
  13. v-for="item in options"
  14. :key="item.value"
  15. :label="item.label"
  16. :value="item.value"
  17. >
  18. </el-option>
  19. </el-select>
  20. &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;
  21. <el-button type="primary" round icon="el-icon-search" @click="searchTarget"
  22. >搜索</el-button
  23. >
  24. <el-button type="info" round @click="clearSearch">清空</el-button>
  25. <el-button
  26. v-show="userInfo.roleType=='4'||userInfo.roleType=='3'"
  27. type="success"
  28. round
  29. class="add_class"
  30. icon="el-icon-plus"
  31. @click="addPlan"
  32. >新增计划</el-button
  33. >
  34. </div>
  35. </el-col>
  36. </el-row>
  37. <el-row class="add_user_class">
  38. <el-col :span="24">
  39. <div class="search-head"></div>
  40. </el-col>
  41. </el-row>
  42. <div class="table-content">
  43. <el-table
  44. height="100%"
  45. :data="tableData"
  46. :row-style="{ height: '0px' }"
  47. :cell-style="{ padding: '5px' }"
  48. :header-cell-style="{ background: '#F8F8F8', color: '#606266' }"
  49. >
  50. <!-- <el-table-column prop="name" label="姓名" align="center" width="" show-overflow-tooltip>
  51. </el-table-column> -->
  52. <el-table-column
  53. show-overflow-tooltip
  54. prop="planName"
  55. label="计划名称"
  56. align="center"
  57. width="300px"
  58. >
  59. </el-table-column>
  60. <el-table-column
  61. prop="createTime"
  62. label="创建时间"
  63. :show-overflow-tooltip="true"
  64. align="center"
  65. width=""
  66. >
  67. </el-table-column>
  68. <el-table-column
  69. :show-overflow-tooltip="true"
  70. prop="planEndTime"
  71. label="结束时间"
  72. align="center"
  73. width=""
  74. ></el-table-column>
  75. <el-table-column
  76. prop="createUserName"
  77. label="创建人"
  78. align="center"
  79. width=""
  80. ></el-table-column>
  81. <el-table-column
  82. prop="planStatus"
  83. label="状态"
  84. align="center"
  85. width=""
  86. :formatter="planStatusFun"
  87. >
  88. <template slot-scope="scope">
  89. <!-- <div v-if="scope.row.planStatus == '1'" style="color: #ff7800">未开始</div>
  90. <div v-if="scope.row.planStatus == '2'" style="color: #2342ff">进行中</div>
  91. <div v-if="scope.row.planStatus == '3'" style="color: #333333">已完成</div> -->
  92. <div
  93. style="display: flex; justify-content: center; align-items: center"
  94. v-if="scope.row.planStatus == '3'"
  95. >
  96. <img
  97. style="width: 16px"
  98. src="../../../assets/img/home/isCom.png"
  99. alt=""
  100. />&nbsp;&nbsp;
  101. <div style="color: #00955e">已完成</div>
  102. </div>
  103. <div
  104. style="display: flex; justify-content: center; align-items: center"
  105. v-if="scope.row.planStatus == '2'"
  106. >
  107. <img
  108. style="width: 16px"
  109. src="../../../assets/img/home/isRun.png"
  110. alt=""
  111. />&nbsp;&nbsp;
  112. <div style="color: #f6cb00">进行中</div>
  113. </div>
  114. <div
  115. style="display: flex; justify-content: center; align-items: center"
  116. v-if="scope.row.planStatus == '1'"
  117. >
  118. <img
  119. style="width: 16px"
  120. src="../../../assets/img/home/isNo.png"
  121. alt=""
  122. />&nbsp;&nbsp;
  123. <div style="color: #d52121">未开始</div>
  124. </div>
  125. </template>
  126. </el-table-column>
  127. <el-table-column label="操作" width="450px" align="center">
  128. <template slot-scope="scope">
  129. <div class="detail_button_out">
  130. <div class="detail_button" @click="viewPlan(scope.row)">
  131. <img src="../../../assets/img/table/search.png" />
  132. <span> 查看 </span>
  133. </div>
  134. <div
  135. class="detail_button"
  136. v-show="scope.row.planStatus == '1'"
  137. @click="editUser(scope.row)"
  138. >
  139. <img src="../../../assets/img/table/edit.png" />
  140. <span> 编辑 </span>
  141. </div>
  142. <div
  143. class="detail_button"
  144. v-show="scope.row.planStatus == '1'"
  145. @click="resetPlan('1', scope.row)"
  146. >
  147. <img src="../../../assets/img/table/xiafa.png" />
  148. <span> 下发 </span>
  149. </div>
  150. <div
  151. class="detail_button"
  152. v-show="
  153. scope.row.planStatus == '3' &&
  154. userInfo.roleType == '5' &&
  155. scope.row.enable != 1
  156. "
  157. @click="resetPlan('3', scope.row)"
  158. >
  159. <img src="../../../assets/img/table/accredit.png" />
  160. <span> 授权 </span>
  161. </div>
  162. <!-- <div class="detail_button" @click="userOp(scope.row)">
  163. <img src="../../../assets/img/table/people.png" />
  164. <span> 人员配置 </span>
  165. </div> -->
  166. <div class="detail_button" @click="userPlanStatusFun(scope.row)">
  167. <img src="../../../assets/img/table/pro.png" />
  168. <span> 进度查看 </span>
  169. </div>
  170. <div
  171. class="detail_button"
  172. v-show="scope.row.planStatus == '1'"
  173. @click="resetPlan('2', scope.row)"
  174. >
  175. <img src="../../../assets/img/table/delete.png" />
  176. <span> 删除 </span>
  177. </div>
  178. </div>
  179. </template>
  180. </el-table-column>
  181. </el-table>
  182. </div>
  183. <!-- small -->
  184. <el-pagination
  185. class="pag_class"
  186. background
  187. @size-change="handleSizeChange"
  188. @current-change="handleCurrentChange"
  189. :current-page.sync="pageNum"
  190. layout="total, sizes, prev, pager, next"
  191. :page-size="pageSize"
  192. :page-sizes="[10, 20, 50, 100]"
  193. :total="total"
  194. >
  195. </el-pagination>
  196. <!-- <el-pagination small background layout="total prev, pager, next" :total="36">
  197. </el-pagination> -->
  198. </div>
  199. <PlanRegister ref="register" @search="searchTarget" @configuration="userOp" />
  200. <PlanUser ref="planUserAdd" />
  201. <PlanUserStatus ref="userStatus" />
  202. <el-dialog
  203. class="dig_update"
  204. :visible.sync="centerDialogVisible"
  205. width="40%"
  206. center
  207. style="border-radius: 40px"
  208. >
  209. <div slot="title">
  210. <div class="demo-ruleForm">
  211. <p class="dig_title">详情</p>
  212. <div class="user_out">
  213. <div class="user_out_sub">计划名称</div>
  214. <div class="user_out_subNext">
  215. {{ view.planName }}
  216. </div>
  217. </div>
  218. <div class="user_out">
  219. <div class="user_out_sub">创建时间</div>
  220. <div class="user_out_subNext">
  221. {{ view.creatTime }}
  222. </div>
  223. </div>
  224. <div class="user_out">
  225. <div class="user_out_sub">结束时间</div>
  226. <div class="user_out_subNext">
  227. {{ view.endTime }}
  228. </div>
  229. </div>
  230. <div class="user_out">
  231. <div class="user_out_sub">创建人</div>
  232. <div class="user_out_subNext">
  233. {{ view.creatUser }}
  234. </div>
  235. </div>
  236. <div class="user_out">
  237. <div class="user_out_sub">状态</div>
  238. <div class="user_out_subNext">
  239. <!-- <span v-if=" view.status=='进行中'" style="color: #2342ff"> {{ view.status }}</span>
  240. <span v-if=" view.status=='未开始'" style="color: #ff7800"> {{ view.status }}</span>
  241. <span v-if=" view.status=='已完成'" style="color: #333333"> {{ view.status }}</span> -->
  242. <div
  243. style="display: flex; justify-content: start; align-items: center"
  244. v-if="view.status == '已完成'"
  245. >
  246. <img
  247. style="width: 16px"
  248. src="../../../assets/img/home/isCom.png"
  249. alt=""
  250. />&nbsp;&nbsp;
  251. <div style="color: #00955e">已完成</div>
  252. </div>
  253. <div
  254. style="display: flex; justify-content: start; align-items: center"
  255. v-if="view.status == '进行中'"
  256. >
  257. <img
  258. style="width: 16px"
  259. src="../../../assets/img/home/isRun.png"
  260. alt=""
  261. />&nbsp;&nbsp;
  262. <div style="color: #f6cb00">进行中</div>
  263. </div>
  264. <div
  265. style="display: flex; justify-content: start; align-items: center"
  266. v-if="view.status == '未开始'"
  267. >
  268. <img
  269. style="width: 16px"
  270. src="../../../assets/img/home/isNo.png"
  271. alt=""
  272. />&nbsp;&nbsp;
  273. <div style="color: #d52121">未开始</div>
  274. </div>
  275. </div>
  276. </div>
  277. </div>
  278. </div>
  279. </el-dialog>
  280. <el-dialog
  281. class="dig_update"
  282. :visible.sync="resetVisible"
  283. width="30%"
  284. center
  285. style="border-radius: 40px"
  286. >
  287. <div slot="title">
  288. <div class="demo-ruleForm">
  289. <p v-show="isDelete == '1'" class="dig_title">下发计划</p>
  290. <p v-show="isDelete == '2'" class="dig_title">删除计划</p>
  291. <p v-show="isDelete == '3'" class="dig_title">授权</p>
  292. <p v-show="isDelete == '1'">将下发{{ opPlanName }}计划吗?</p>
  293. <p v-show="isDelete == '2'">确认将删除{{ opPlanName }}计划?</p>
  294. <p v-show="isDelete == '3'">确认将授权{{ opPlanName }}计划的报告允许下载吗?</p>
  295. <div class="dig_button">
  296. <el-button type="info" round @click="cancle()">取消</el-button>
  297. <!-- <el-button type="success" round @click="submitForm('ruleForm')"
  298. >提交</el-button
  299. > -->
  300. <el-button type="success" round @click="submitCom()">确定</el-button>
  301. </div>
  302. </div>
  303. </div>
  304. </el-dialog>
  305. <el-dialog
  306. class="dig_update"
  307. :visible.sync="fileVisible"
  308. width="40%"
  309. center
  310. style="border-radius: 40px"
  311. >
  312. <div slot="title">
  313. <div class="demo-ruleForm">
  314. <p v-show="!isDelete" class="dig_title">批量导入</p>
  315. <el-upload
  316. class="upload-demo"
  317. drag
  318. :action="basePath + '/user/userImport'"
  319. :on-success="fileSuccess"
  320. :on-error="fileError"
  321. >
  322. <i class="el-icon-upload"></i>
  323. <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
  324. <div class="el-upload__tip" slot="tip">建议文件不超过500kb</div>
  325. </el-upload>
  326. <a
  327. style="
  328. display: flex;
  329. margin-top: 20px;
  330. margin-bottom: 20px;
  331. color: #409eff;
  332. cursor: pointer;
  333. "
  334. :href="basePath + '/user/templateDownload'"
  335. >
  336. 下载模版
  337. </a>
  338. <!-- <div class="dig_button">
  339. <el-button type="info" round @click="cancle()">取消</el-button>
  340. <el-button type="success" round @click="submitCom()">确定</el-button>
  341. </div> -->
  342. </div>
  343. </div>
  344. </el-dialog>
  345. </div>
  346. </template>
  347. <script>
  348. import { oSessionStorage } from "../../../utils/utils";
  349. import planRegister from "../../../components/PlanRegister.vue";
  350. import planUser from "../../../components/PlanUser.vue";
  351. import planUserStatus from "../../../components/PlanUserStatus.vue";
  352. import { basePath } from "../../../utils/http";
  353. export default {
  354. name: "userManage",
  355. components: {
  356. PlanRegister: planRegister,
  357. PlanUser: planUser,
  358. PlanUserStatus: planUserStatus,
  359. },
  360. data() {
  361. return {
  362. basePath: basePath,
  363. //上传文件的弹出款的标志
  364. fileVisible: false,
  365. //判断点击的是重置密码还是点击删除
  366. isDelete: false,
  367. //重置密码需要调用个userId
  368. userId: "",
  369. //充值密码使用userName
  370. userName: "",
  371. //重置密码弹出框
  372. resetVisible: false,
  373. //根据名称搜索
  374. name: "",
  375. //搜索的用户编号
  376. studentNumber: "",
  377. //搜索的组织架构
  378. // 搜索需要的性别
  379. sex: "",
  380. group: "",
  381. ppData: [],
  382. groupData: [],
  383. centerDialogVisible: false,
  384. editUserFlag: false,
  385. startTime: "",
  386. endTime: "",
  387. value1: null,
  388. total: 0,
  389. pageSize: 10,
  390. pageNum: 1,
  391. keyword: "",
  392. tableData: [],
  393. userInfo: {}, //用户信息
  394. invitationCode: "",
  395. roleType: "0",
  396. type: 0,
  397. view: {
  398. planName: "",
  399. creatTime: "",
  400. endTime: "",
  401. creatUser: "",
  402. status: "",
  403. },
  404. channel: "",
  405. channelList: [{ name: "渠道天成", id: "1" }],
  406. options: [
  407. {
  408. value: "1",
  409. label: "未开始",
  410. },
  411. {
  412. value: "2",
  413. label: "进行中",
  414. },
  415. {
  416. value: "3",
  417. label: "已完成",
  418. },
  419. ],
  420. planStatus: "",
  421. planName: "",
  422. //删除时用的planId
  423. opPlanId: "",
  424. //删除时用的planName
  425. opPlanName: "",
  426. };
  427. },
  428. created() {},
  429. mounted() {
  430. this.userInfo = JSON.parse(oSessionStorage.getItem("userInfo"));
  431. this.getChannel();
  432. if (!this.userInfo) {
  433. //如果用户信息不存在跳转登陆页
  434. this.$router.push({ path: "/" });
  435. }
  436. this.searchTarget();
  437. },
  438. methods: {
  439. //打开用户列表弹出框
  440. userOp(val) {
  441. this.$refs.planUserAdd.open(val);
  442. },
  443. userPlanStatusFun(val) {
  444. this.$refs.userStatus.open(val);
  445. },
  446. //文件上传成功
  447. fileSuccess(res) {
  448. if (res.code == 200) {
  449. this.searchTarget();
  450. this.$message({
  451. message: res.msg,
  452. type: "success",
  453. });
  454. } else {
  455. this.$message({
  456. message: res.msg,
  457. type: "error",
  458. });
  459. }
  460. //查询列表
  461. },
  462. //文件上传失败
  463. fileError() {
  464. this.$message({
  465. message: "上传失败",
  466. type: "error",
  467. });
  468. },
  469. cancle() {
  470. this.resetVisible = false;
  471. },
  472. //提交文本
  473. submitCom() {
  474. //判断当前是否是
  475. if (this.isDelete == "2") {
  476. this.deletePlan();
  477. //调用删除方法
  478. } else if (this.isDelete == "1") {
  479. this.resetFun();
  480. // 调用重置密码方法
  481. } else if (this.isDelete == "3") {
  482. //调用授权 方法进行授权
  483. this.accreditFun();
  484. }
  485. },
  486. accreditFun() {
  487. this.$http.get(`/plan/empowerPlan?id=${this.opPlanId}`, {}, (res) => {
  488. // this.$toast.success({message:'成功'});
  489. if (res && res.code == 200) {
  490. this.resetVisible = false;
  491. this.$message.success("授权成功");
  492. this.searchTarget();
  493. } else {
  494. this.$message.error(res.msg);
  495. }
  496. });
  497. },
  498. //性别---
  499. planStatusFun(val) {
  500. let planStatus = val.planStatus;
  501. if (planStatus == "1") {
  502. return `未开始`;
  503. // return "未开始";
  504. } else if (planStatus == "2") {
  505. return "进行中";
  506. } else if (planStatus == "3") {
  507. return "已完成";
  508. } else {
  509. return "";
  510. }
  511. },
  512. //每页多少条
  513. handleSizeChange(val) {
  514. this.pageSize = val;
  515. this.searchTarget();
  516. // console.log(`每页 ${val} 条`);
  517. //将首页重置为1时---且总条数变化
  518. //设置为当前总条数
  519. },
  520. //获取组织架构方法--------------------开始-----------------------
  521. getChannel() {
  522. this.$http.get(`/org/findAllOrgByPOrgNo`, {}, (res) => {
  523. // this.$toast.success({message:'成功'});
  524. if (res && res.code == 200) {
  525. //将值赋值给list
  526. if (res.data.length > 0) {
  527. let resAdd = this.addPro(res.data);
  528. this.ppData = JSON.parse(JSON.stringify(resAdd));
  529. let forRes = this.arrToTree(resAdd);
  530. // console.log('格式化的结构')
  531. // console.log(forRes)
  532. let resultRes = this.deleteChildren(forRes);
  533. this.groupData = resultRes;
  534. } else {
  535. this.groupData = [];
  536. }
  537. // this.channelList = res.data;
  538. } else {
  539. this.$message.error(res.msg);
  540. }
  541. });
  542. },
  543. //z增加
  544. addPro(val) {
  545. let data = JSON.parse(JSON.stringify(val));
  546. for (let i = 0; i < val.length; i++) {
  547. data[i].value = val[i].orgNo;
  548. data[i].label = val[i].orgName;
  549. }
  550. return data;
  551. },
  552. //非递归方式:将平铺数据转换为树形结构数据
  553. arrToTree(arr) {
  554. let data = arr.filter((item) => {
  555. item.children = arr.filter((e) => {
  556. return item.orgNo === e.parentOrgNo;
  557. });
  558. return !item.parentOrgNo;
  559. });
  560. return data;
  561. },
  562. //去除转换树形结构数据后存在的空children
  563. deleteChildren(arr) {
  564. let childs = arr;
  565. for (let i = childs.length; i--; i > 0) {
  566. if (childs[i].children) {
  567. if (childs[i].children.length) {
  568. this.deleteChildren(childs[i].children);
  569. } else {
  570. delete childs[i].children;
  571. }
  572. }
  573. }
  574. return arr;
  575. },
  576. //获取组织架构方法--------------------结束-----------------------
  577. formatterDelete(row) {
  578. if (row.state == 0) {
  579. return "已删除";
  580. } else {
  581. return "正常";
  582. }
  583. },
  584. resetPlan(flag, val) {
  585. //下发----flag为1
  586. //删除----flag为2
  587. //授权----flag为3
  588. this.isDelete = flag;
  589. this.resetVisible = true;
  590. this.opPlanId = val.id;
  591. this.opPlanName = val.planName;
  592. //当前用户id
  593. //重置密码
  594. },
  595. editUser(row) {
  596. this.editRegisterUser(row);
  597. },
  598. viewPlan(row) {
  599. this.view.planName = row.planName;
  600. this.view.creatTime = row.createTime;
  601. this.view.endTime = row.planEndTime;
  602. this.view.creatUser = row.createUserName;
  603. let st = "";
  604. if (row.planStatus == "1") {
  605. st = "未开始";
  606. } else if (row.planStatus == "2") {
  607. st = "进行中";
  608. } else if (row.planStatus == "3") {
  609. st = "已完成";
  610. }
  611. this.view.status = st;
  612. this.centerDialogVisible = true;
  613. },
  614. addPlan() {
  615. this.addRegisterUser(true);
  616. },
  617. clearSearch() {
  618. this.planName = "";
  619. //搜索的用户编号
  620. this.planStatus = "";
  621. this.searchTarget();
  622. },
  623. addRegisterUser(val) {
  624. this.$refs.register.open(val);
  625. },
  626. editRegisterUser(val) {
  627. this.$refs.register.edit(val);
  628. },
  629. resetFun() {
  630. this.$http.get(`/plan/issuedPlanById?id=${this.opPlanId}`, {}, (res) => {
  631. // this.$toast.success({message:'成功'});
  632. if (res && res.code == 200) {
  633. this.resetVisible = false;
  634. this.$message.success("下发成功");
  635. this.searchTarget();
  636. } else {
  637. this.$message.error(res.msg);
  638. }
  639. });
  640. },
  641. deletePlan() {
  642. this.$http.get(`/plan/deletePlanById?id=${this.opPlanId}`, {}, (res) => {
  643. // this.$toast.success({message:'成功'});
  644. if (res && res.code == 200) {
  645. this.$message.success("删除成功");
  646. this.resetVisible = false;
  647. this.searchTarget();
  648. } else {
  649. this.$message.error("删除失败");
  650. }
  651. });
  652. },
  653. handleCurrentChange(val) {
  654. this.pageNum = val;
  655. this.searchList();
  656. },
  657. //根据现有情况进行搜索
  658. searchList() {
  659. let url = `/plan/findListByPage?pageSize=${this.pageSize}&pageNum=${
  660. this.pageNum
  661. }&orgNo=${this.userInfo.orgNo}${
  662. this.planName == "" ? "" : `&planName=${this.planName}`
  663. }${this.planStatus == "" ? "" : `&planStatus=${this.planStatus}`}`;
  664. this.$http.get(url, {}, (res) => {
  665. if (res && res.code == 200) {
  666. this.tableData = res.data.content;
  667. this.total = res.data.totalElements;
  668. } else {
  669. // this.$toast.fail(res.msg);
  670. this.$message.error(res.msg);
  671. }
  672. });
  673. },
  674. searchTarget() {
  675. this.pageNum = 1;
  676. this.searchList();
  677. },
  678. //跳转首页
  679. goHome() {
  680. this.$router.push({ path: "/home" });
  681. },
  682. //跳转记录页
  683. goRecord() {
  684. this.$router.push({ path: "/record" });
  685. },
  686. //退出登陆
  687. logout() {
  688. oSessionStorage.removeItem("userInfo");
  689. oSessionStorage.removeItem("token");
  690. this.$router.push({ path: "/" });
  691. },
  692. //点击获取月出勤次数
  693. getTimes(param) {
  694. this.monthTimes = param;
  695. },
  696. },
  697. };
  698. </script>
  699. <style lang="less" scoped>
  700. @import "../../../styles/theme.less";
  701. .pag_class {
  702. text-align: end;
  703. }
  704. .pag_class /deep/.el-input__inner {
  705. width: 100% !important;
  706. }
  707. .pag_class /deep/.el-pagination--small span:not([class*="suffix"]) {
  708. height: 22px;
  709. line-height: 28px !important;
  710. }
  711. .invite /deep/ .el-input {
  712. width: 300px;
  713. }
  714. .invite /deep/ .el-input__inner {
  715. width: 300px;
  716. }
  717. .record-warp {
  718. width: 100%;
  719. height: 80vh;
  720. //background: url(../../assets/img/index/19.png) no-repeat center;
  721. //background-size: 100% 100%;
  722. position: relative;
  723. .record-main {
  724. width: 100%;
  725. height: 100%;
  726. box-sizing: border-box;
  727. // overflow-y: auto;
  728. display: flex;
  729. flex-direction: column;
  730. .search-head {
  731. width: 100%;
  732. display: flex;
  733. flex-direction: row;
  734. justify-content: flex-start;
  735. align-items: center;
  736. .zc-title {
  737. color: #606266;
  738. font-size: 14px;
  739. }
  740. }
  741. .table-content {
  742. margin: 10px 0;
  743. flex: 1;
  744. overflow: auto;
  745. }
  746. }
  747. }
  748. .add_user_class {
  749. margin-top: 10px;
  750. }
  751. .user_out {
  752. display: flex;
  753. width: 100%;
  754. align-items: center;
  755. border: 1px solid #eeeeef;
  756. // line-height: 50px;
  757. height: 100%;
  758. margin-top: 10px;
  759. }
  760. .user_out_sub {
  761. padding: 20px 0px;
  762. flex: 1;
  763. text-align: center;
  764. height: 100%;
  765. background-color: #fafafa;
  766. // color:#ffffff
  767. }
  768. .user_out_subNext {
  769. text-align: left;
  770. padding-left: 10px;
  771. flex: 3;
  772. }
  773. .detail_button_out {
  774. display: flex;
  775. justify-content: center;
  776. .detail_button {
  777. display: flex;
  778. margin-left: 20px;
  779. align-items: center;
  780. cursor: pointer;
  781. letter-spacing: 2px;
  782. img {
  783. width: 15px;
  784. margin-right: 5px;
  785. }
  786. span {
  787. color: #00bf78;
  788. // font-weight: 600;
  789. }
  790. }
  791. }
  792. //弹出框样式
  793. .dig_update /deep/.el-cascader {
  794. position: relative;
  795. font-size: 14px;
  796. line-height: 40px;
  797. width: 100%;
  798. }
  799. .dig_update /deep/.el-dialog {
  800. box-shadow: none !important;
  801. background: transparent !important;
  802. }
  803. .demo-ruleForm /deep/ .el-form-item {
  804. margin-right: 10px;
  805. vertical-align: top;
  806. display: flex !important;
  807. flex-direction: column;
  808. }
  809. .demo-ruleForm /deep/.el-dialog__header {
  810. background-color: #ffffff;
  811. padding-left: 140px !important;
  812. }
  813. .demo-ruleForm /deep/.el-form-item__label {
  814. text-align: left;
  815. vertical-align: middle;
  816. float: left;
  817. font-size: 14px;
  818. color: #606266;
  819. line-height: 40px;
  820. padding: 0 12px 0 0;
  821. -webkit-box-sizing: border-box;
  822. box-sizing: border-box;
  823. }
  824. .demo-ruleForm /deep/.el-input {
  825. width: 100% !important;
  826. }
  827. .demo-ruleForm /deep/.el-input__inner {
  828. width: 100% !important;
  829. background-color: #f7f7f7;
  830. border: 0px;
  831. }
  832. .dig_button {
  833. margin-top: 40px;
  834. display: flex;
  835. width: 100%;
  836. justify-content: space-around;
  837. }
  838. .demo-ruleForm {
  839. background-color: #ffffff;
  840. // border-radius: 20px;
  841. margin-right: -10px;
  842. margin-top: -10px;
  843. padding-right: 100px;
  844. padding-left: 100px;
  845. border-radius: 20px;
  846. padding-top: 20px;
  847. padding-bottom: 20px;
  848. .dig_title {
  849. margin-bottom: 30px;
  850. text-align: center;
  851. font-weight: 700;
  852. }
  853. }
  854. </style>