program.vue 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691
  1. <template>
  2. <div class="page">
  3. <div class="title">{{ title }}</div>
  4. <div class="tabs">
  5. <div class="t_pre" :class="{'active':tidx===1}" @click="handleChangeTab(1)">活动项目</div>
  6. <div class="t_pre" :class="{'active':tidx===2}" @click="handleChangeTab(2)">已完成</div>
  7. <!-- <div class="t_pre" :class="{'active':tidx===3}" @click="handleChangeTab(3)">已归档</div>-->
  8. <div class="t_add" @click="handleAdd" v-hasPermi="['core:project:add']">+ 创建新项目</div>
  9. </div>
  10. <template v-if="tidx===1">
  11. <div class="content">
  12. <template v-if="teamList.length">
  13. <div class="team_user_list">
  14. <div class="tul_left">
  15. <div class="tull_top">
  16. <div class="tullt_l">项目管理</div>
  17. <div class="tullt_r" @click="handleAddTeam" v-hasPermi="['core:project:addTeam']">+添加团队</div>
  18. </div>
  19. <div class="tull_query queryInput">
  20. <el-input v-model="programName" placeholder="请输入项目名称"></el-input>
  21. <img src="@/assets/images/agent/query_mini.png">
  22. </div>
  23. <div class="tull_list">
  24. <div class="tull_item" v-for="(item,index) in companyList" :key="index" @click="handleExpand(item,index)">
  25. <div class="tname">
  26. <img src="@/assets/images/agent/down_sj.png">
  27. <span>{{ item.enterpriseName }}</span>
  28. </div>
  29. <template v-if="item.expand&&item.teams&&item.teams.length">
  30. <div class="tuser_list" :class="{'active':team.select}" v-for="(team,idx) in item.teams" :key="idx" @click.stop="handleSelect(team,idx)">
  31. <span>{{ team.teamName }}</span>
  32. <span>({{ team.teamNum }}人)</span>
  33. <el-popover placement="right" width="177" trigger="click">
  34. <div class="tl_czs">
  35. <div class="tlc_pre" v-hasPermi="['core:project:updateTeamCoach']">修改团队教练</div>
  36. <div class="tlc_pre" v-hasPermi="['core:project:updateTeamName']">修改团队名称</div>
  37. <div class="tlc_pre" @click="handleTeamDetail(item)" v-hasPermi="['core:project:teamInfo']">团队详情</div>
  38. <div class="tlc_pre" v-hasPermi="['core:project:deleteTeam']">删除团队</div>
  39. </div>
  40. <i slot="reference" class="el-icon-more" style="font-size: 14px;color: #999; transform: rotate(90deg);" @click.stop="handleSetTeam(team,idx)"></i>
  41. </el-popover>
  42. </div>
  43. </template>
  44. </div>
  45. </div>
  46. </div>
  47. <div class="tul_right">
  48. <div class="tulr_top">
  49. <div class="tulrt_l queryInput">
  50. <el-input v-model="queryParams.name" placeholder="请输入姓名查询"></el-input>
  51. <img src="@/assets/images/agent/query_mini.png">
  52. </div>
  53. <div class="tulrt_r">
  54. <div class="tr_btn" v-hasPermi="['sys:user:export']">批量导入</div>
  55. <div class="tr_btn" @click="userShow=true" v-hasPermi="['sys:user:add']">添加成员</div>
  56. </div>
  57. </div>
  58. <el-table :data="userList" border cell-class-name="vertical-top-cell" v-loading="loading" empty-text="暂无人员" max-height="578px" style="margin-top: 16px;">
  59. <el-table-column label="序号" width="50">
  60. <template #default="scope">
  61. {{ scope.$index + 1 }}
  62. </template>
  63. </el-table-column>
  64. <el-table-column label="姓名" prop="aaa"></el-table-column>
  65. <el-table-column label="性别" prop="bbb">
  66. <template #default="{ row }"></template>
  67. </el-table-column>
  68. <el-table-column label="出生日期" prop="aaa"></el-table-column>
  69. <el-table-column label="所属部门" prop="aaa"></el-table-column>
  70. <el-table-column label="职位" prop="aaa"></el-table-column>
  71. <el-table-column label="级别" prop="aaa"></el-table-column>
  72. <el-table-column label="分工" prop="aaa"></el-table-column>
  73. <el-table-column label="上级" prop="aaa"></el-table-column>
  74. <el-table-column label="手机号码" prop="aaa"></el-table-column>
  75. <el-table-column label="创建时间" prop="aaa"></el-table-column>
  76. <el-table-column label="操作" width="150">
  77. <template #default="scope">
  78. <el-button link type="text" size="mini" @click="handleEdit(scope.row)" v-hasPermi="['sys:user:update']">编辑</el-button>
  79. <el-button link type="text" size="mini" @click="handleDelete(scope.row)" v-hasPermi="['sys:user:delete']">删除</el-button>
  80. </template>
  81. </el-table-column>
  82. </el-table>
  83. <el-row style="display: flex;justify-content: center;">
  84. <el-pagination
  85. @size-change="handleSizeChange"
  86. @current-change="handleCurrentChange"
  87. :current-page="queryParams.page"
  88. :page-sizes="[5, 10, 20, 50]"
  89. :page-size="10"
  90. layout="total, sizes, prev, pager, next, jumper"
  91. :total="total"
  92. v-show="total > 0">
  93. </el-pagination>
  94. </el-row>
  95. </div>
  96. </div>
  97. </template>
  98. <template v-else>
  99. <div class="empty">
  100. <img src="@/assets/images/agent/team.png">
  101. <p>您还没有任何项目及团队成员信息</p>
  102. <div class="e_add" @click="handleAdd" v-hasPermi="['core:project:add']">+ 创建新项目</div>
  103. </div>
  104. </template>
  105. </div>
  106. </template>
  107. <template v-else-if="tidx===2"></template>
  108. <template v-else-if="tidx===3"></template>
  109. <el-drawer :title="userTitle" :visible.sync="userShow" append-to-body size="60%" @close="userShow=false">
  110. <el-form ref="userRef" :model="userForm" :rules="userRules" label-width="100px" style="width: 90%;margin: 0 auto;">
  111. <el-row>
  112. <el-col :span="12">
  113. <el-form-item label="姓名" prop="aaa">
  114. <el-input v-model="userForm.aaa" placeholder="请输入姓名" />
  115. </el-form-item>
  116. </el-col>
  117. <el-col :span="12">
  118. <el-form-item label="性别" prop="bbb">
  119. <el-select v-model="userForm.bbb" placeholder="请选择性别" style="width: 100%;"></el-select>
  120. </el-form-item>
  121. </el-col>
  122. </el-row>
  123. <el-row>
  124. <el-col :span="12">
  125. <el-form-item label="出生日期" prop="ccc">
  126. <el-select v-model="userForm.ccc" placeholder="请选择出生日期" style="width: 100%;"></el-select>
  127. </el-form-item>
  128. </el-col>
  129. <el-col :span="12">
  130. <el-form-item label="手机号码" prop="ddd">
  131. <el-input v-model="userForm.ddd" placeholder="请输入手机号码" />
  132. </el-form-item>
  133. </el-col>
  134. </el-row>
  135. <el-row>
  136. <el-col :span="12">
  137. <el-form-item label="所属部门" prop="eee">
  138. <el-input v-model="userForm.eee" placeholder="请输入所属部门" />
  139. </el-form-item>
  140. </el-col>
  141. <el-col :span="12">
  142. <el-form-item label="教育程度" prop="fff">
  143. <el-select v-model="userForm.fff" placeholder="请选择教育程度" style="width: 100%;"></el-select>
  144. </el-form-item>
  145. </el-col>
  146. </el-row>
  147. <el-row>
  148. <el-col :span="12">
  149. <el-form-item label="分工" prop="ggg">
  150. <el-input v-model="userForm.ggg" placeholder="请输入分工" />
  151. </el-form-item>
  152. </el-col>
  153. <el-col :span="12">
  154. <el-form-item label="职位" prop="hhh">
  155. <el-input v-model="userForm.hhh" placeholder="请输入职位" />
  156. </el-form-item>
  157. </el-col>
  158. </el-row>
  159. <el-row>
  160. <el-col :span="12">
  161. <el-form-item label="级别" prop="iii">
  162. <el-select v-model="userForm.iii" placeholder="请选择级别" style="width: 100%;"></el-select>
  163. </el-form-item>
  164. </el-col>
  165. <el-col :span="12">
  166. <el-form-item label="上级" prop="jjj">
  167. <el-input v-model="userForm.jjj" placeholder="请输入上级" />
  168. </el-form-item>
  169. </el-col>
  170. </el-row>
  171. </el-form>
  172. <div class="demo-drawer__footer" style="display: flex;justify-content: end;">
  173. <el-button :loading="buttonLoading2" type="primary" @click="submitForm2" v-hasPermi="['sys:user:save']">保 存</el-button>
  174. <el-button @click="cancel2" style="margin-right: 5%;">取 消</el-button>
  175. </div>
  176. </el-drawer>
  177. <el-drawer title="团队详情" :visible.sync="teamShow" append-to-body size="60%" @close="teamShow=false">
  178. <el-form ref="teamRef" :model="teamForm" :rules="teamRules" label-width="120px" style="width: 90%;margin: 0 auto;">
  179. <el-row>
  180. <el-col :span="12">
  181. <el-form-item label="所属项目" prop="aaa">
  182. <el-input v-model="teamForm.aaa" placeholder="请输入所属项目" />
  183. </el-form-item>
  184. </el-col>
  185. <el-col :span="12">
  186. <el-form-item label="团队名称" prop="bbb">
  187. <el-input v-model="teamForm.bbb" placeholder="请输入团队名称" />
  188. </el-form-item>
  189. </el-col>
  190. </el-row>
  191. <el-row>
  192. <el-col :span="24">
  193. <el-form-item label="团队介绍" prop="ccc">
  194. <el-input type="textarea" v-model="teamForm.ccc" placeholder="请输入团队介绍" />
  195. </el-form-item>
  196. </el-col>
  197. </el-row>
  198. <el-row>
  199. <el-col :span="24">
  200. <el-form-item label="工作任务" prop="ddd">
  201. <el-input type="textarea" v-model="teamForm.ddd" placeholder="请输入工作任务" />
  202. </el-form-item>
  203. </el-col>
  204. </el-row>
  205. <el-row>
  206. <el-col :span="24">
  207. <el-form-item label="团队项目情况" prop="eee">
  208. <el-input type="textarea" v-model="teamForm.eee" placeholder="请输入团队项目情况" />
  209. </el-form-item>
  210. </el-col>
  211. </el-row>
  212. </el-form>
  213. <div class="demo-drawer__footer" style="display: flex;justify-content: end;">
  214. <el-button :loading="buttonLoading3" type="primary" @click="submitForm3">保 存</el-button>
  215. <el-button @click="cancel3" style="margin-right: 5%;">取 消</el-button>
  216. </div>
  217. </el-drawer>
  218. </div>
  219. </template>
  220. <script setup name="">
  221. import { ref, getCurrentInstance,onMounted } from 'vue'
  222. const { proxy } = getCurrentInstance();
  223. import { getCoachProgramList,getCoachProgramInfo,deleteCoachProgram } from '@/api/agent/index.js'
  224. const tidx = ref(1);
  225. const teamList = ref([1]);
  226. const programName = ref('')
  227. const companyList = ref([]);
  228. const loading = ref(false);
  229. const queryParams = ref({
  230. page:1,
  231. limit:10,
  232. name:'',
  233. })
  234. const userList = ref([]);
  235. const total = ref(0);
  236. const userTitle = ref('添加成员信息');
  237. const userShow = ref(false);
  238. const userForm = ref({
  239. aaa: '',
  240. bbb: '',
  241. ccc: '',
  242. ddd: '',
  243. eee: ''
  244. });
  245. const userRules = ref({
  246. aaa: [
  247. { required: true, message: '请输入姓名', trigger: 'blur' }
  248. ],
  249. bbb: [
  250. { required: true, message: '请选择性别', trigger: 'change' }
  251. ],
  252. ccc: [
  253. { required: true, message: '请选择出生日期', trigger: 'change' }
  254. ],
  255. ddd: [
  256. { required: true, message: '请输入手机号码', trigger: 'blur' }
  257. ],
  258. eee: [
  259. { required: true, message: '请输入所属部门', trigger: 'blur' }
  260. ],
  261. fff: [
  262. { required: true, message: '请选择教育程度', trigger: 'change' }
  263. ],
  264. ggg: [
  265. { required: true, message: '请输入分工', trigger: 'blur' }
  266. ],
  267. hhh: [
  268. { required: true, message: '请输入职位', trigger: 'blur' }
  269. ],
  270. iii: [
  271. { required: true, message: '请选择级别', trigger: 'change' }
  272. ],
  273. jjj: [
  274. { required: true, message: '请输入上级', trigger: 'blur' }
  275. ]
  276. });
  277. const buttonLoading2 = ref(false);
  278. const teamShow = ref(false);
  279. const teamForm = ref({
  280. aaa: '',
  281. bbb: '',
  282. ccc: '',
  283. ddd: '',
  284. eee: ''
  285. });
  286. const teamRules = ref({
  287. aaa: [
  288. { required: true, message: '请输入团队名称', trigger: 'blur' }
  289. ],
  290. bbb: [
  291. { required: true, message: '请选择团队类型', trigger: 'change' }
  292. ],
  293. ccc: [
  294. { required: true, message: '请输入团队人数', trigger: 'blur' }
  295. ],
  296. ddd: [
  297. { required: true, message: '请选择团队负责人', trigger: 'change' }
  298. ],
  299. eee: [
  300. { required: true, message: '请输入团队描述', trigger: 'blur' }
  301. ]
  302. });
  303. const buttonLoading3 = ref(false);
  304. const title = proxy.$route.meta.title;
  305. const handleChangeTab = (idx) => {
  306. tidx.value = idx;
  307. }
  308. const handleAdd = () => {
  309. proxy.$router.push('/agentProgramAddTeam');
  310. };
  311. const handleExpand = (item, index) => {
  312. item.expand = !item.expand;
  313. };
  314. const handleSelect = (team, index) => {
  315. companyList.value.forEach(item => {
  316. if(item.teams){
  317. item.teams.forEach(t => t.select = false);
  318. }
  319. });
  320. team.select = true;
  321. };
  322. const handleSetTeam = (team, index) => {
  323. };
  324. const handleAddTeam = () => {
  325. proxy.$router.push('/agentProgramAddTeam');
  326. };
  327. const getList = async () => {
  328. let query = {...queryParams.value};
  329. loading.value = true;
  330. // const res = await listOrder(query);
  331. // userList.value = res.data.list;
  332. // total.value = res.data.total;
  333. loading.value = false;
  334. }
  335. const handleSizeChange = (e)=>{
  336. queryParams.value.limit = e;
  337. getList();
  338. }
  339. const handleCurrentChange = (e)=>{
  340. queryParams.value.page = e;
  341. getList();
  342. }
  343. const handleTeamDetail = team => {
  344. teamShow.value = true;
  345. }
  346. const getProgramList = async () => {
  347. loading.value = true;
  348. const res = await getCoachProgramList(programName.value);
  349. companyList.value = res.data;
  350. companyList.value.forEach(t => t.expand = false);
  351. companyList.value.teams.forEach(t => t.select = false);
  352. loading.value = false;
  353. }
  354. onMounted(() => {
  355. getProgramList();
  356. });
  357. </script>
  358. <style scoped lang="scss">
  359. ::v-deep .queryInput .el-input__inner{
  360. border: none !important;
  361. height: 30px !important;
  362. line-height: 30px !important;
  363. padding: 0 !important;
  364. width: 200px !important;
  365. }
  366. .page{
  367. padding: 28px 16px 12px;
  368. background: #FAFAFA;
  369. .title{
  370. font-family: PingFang-SC, PingFang-SC;
  371. font-weight: bold;
  372. font-size: 16px;
  373. color: #111111;
  374. line-height: 16px;
  375. }
  376. .tabs{
  377. position: relative;
  378. display: flex;
  379. align-items: center;
  380. border-bottom: 1px solid #E5E7EB;
  381. padding-bottom: 18px;
  382. margin-top: 32px;
  383. .t_pre{
  384. width: 116px;
  385. font-family: PingFangSC, PingFang SC;
  386. font-weight: 400;
  387. font-size: 14px;
  388. color: #111111;
  389. line-height: 16px;
  390. text-align: center;
  391. position: relative;
  392. cursor: pointer;
  393. &.active{
  394. font-weight: bold;
  395. color: #761E6A;
  396. &::after{
  397. content: '';
  398. position: absolute;
  399. bottom: -18px;
  400. left: 0;
  401. width: 100%;
  402. height: 2px;
  403. background: #761E6A;
  404. }
  405. }
  406. }
  407. .t_add{
  408. width: 114px;
  409. height: 32px;
  410. background: #761E6A;
  411. border-radius: 6px;
  412. font-family: PingFangSC, PingFang SC;
  413. font-weight: 400;
  414. font-size: 14px;
  415. color: #FFFFFF;
  416. line-height: 32px;
  417. text-align: center;
  418. position: absolute;
  419. top: -10px;
  420. right: 0;
  421. cursor: pointer;
  422. }
  423. }
  424. .content{
  425. width: 100%;
  426. height: calc(100vh - 140px);
  427. background: #FFFFFF;
  428. border: 1px solid #F3F4F6;
  429. margin-top: 15px;
  430. .team_user_list{
  431. height: 100%;
  432. padding: 20px;
  433. background: #FFFFFF;
  434. display: flex;
  435. .tul_left{
  436. width: 280px;
  437. padding-right: 20px;
  438. box-sizing: border-box;
  439. border-right: 1px solid #E5E7EB;
  440. .tull_top{
  441. display: flex;
  442. align-items: center;
  443. justify-content: space-between;
  444. .tullt_l{
  445. font-family: PingFangSC, PingFang SC;
  446. font-weight: 600;
  447. font-size: 16px;
  448. color: #0D162A;
  449. line-height: 16px;
  450. }
  451. .tullt_r{
  452. width: 73px;
  453. height: 28px;
  454. border-radius: 6px;
  455. border: 1px solid #761E6A;
  456. font-family: PingFangSC, PingFang SC;
  457. font-weight: 400;
  458. font-size: 12px;
  459. color: #761E6A;
  460. line-height: 24px;
  461. text-align: center;
  462. cursor: pointer;
  463. }
  464. }
  465. .tull_query{
  466. margin-top: 12px;
  467. width: 100%;
  468. height: 34px;
  469. border-radius: 6px;
  470. border: 1px solid #E2E7F5;
  471. padding: 0 16px;
  472. box-sizing: border-box;
  473. display: flex;
  474. align-items: center;
  475. justify-content: space-between;
  476. img{
  477. width: 16px;
  478. height: 16px;
  479. cursor: pointer;
  480. }
  481. }
  482. .tull_list{
  483. height: calc(100% - 100px);
  484. overflow-y: auto;
  485. margin-top: 24px;
  486. .tull_item{
  487. margin-top: 24px;
  488. &:first-child{
  489. margin-top: 0;
  490. }
  491. .tname{
  492. display: flex;
  493. align-items: center;
  494. img{
  495. width: 16px;
  496. height: 16px;
  497. cursor: pointer;
  498. }
  499. span{
  500. font-family: PingFangSC, PingFang SC;
  501. font-weight: 400;
  502. font-size: 14px;
  503. color: #111111;
  504. line-height: 16px;
  505. margin-left: 10px;
  506. }
  507. }
  508. .tuser_list{
  509. margin-top: 11px;
  510. width: 100%;
  511. height: 36px;
  512. padding-left: 34px;
  513. display: flex;
  514. align-items: center;
  515. cursor: pointer;
  516. position: relative;
  517. span{
  518. font-family: PingFangSC, PingFang SC;
  519. font-weight: 400;
  520. font-size: 14px;
  521. color: #4B5563;
  522. line-height: 16px;
  523. &:first-child{
  524. margin-right: 5px;
  525. }
  526. }
  527. &:hover,&.active{
  528. background: #F0F2F8;
  529. border-radius: 6px;
  530. span{
  531. font-weight: bold;
  532. color: #761E6A;
  533. }
  534. i{
  535. color: #761E6A !important;
  536. }
  537. }
  538. i{
  539. position: absolute;
  540. right: 10px;
  541. top: 12px;
  542. }
  543. }
  544. }
  545. }
  546. }
  547. .tul_right{
  548. width: calc(100% - 281px);
  549. padding-left: 23px;
  550. box-sizing: border-box;
  551. .tulr_top{
  552. display: flex;
  553. align-items: center;
  554. justify-content: space-between;
  555. .tulrt_l{
  556. width: 278px;
  557. height: 34px;
  558. border-radius: 6px;
  559. border: 1px solid #E2E7F5;
  560. padding: 0 16px;
  561. box-sizing: border-box;
  562. display: flex;
  563. align-items: center;
  564. justify-content: space-between;
  565. img{
  566. width: 16px;
  567. height: 16px;
  568. cursor: pointer;
  569. }
  570. }
  571. .tulrt_r{
  572. display: flex;
  573. .tr_btn{
  574. width: 92px;
  575. height: 36px;
  576. border-radius: 6px;
  577. border: 1px solid #C1C7D2;
  578. margin-left: 20px;
  579. cursor: pointer;
  580. font-family: PingFangSC, PingFang SC;
  581. font-weight: 400;
  582. font-size: 14px;
  583. color: #111111;
  584. line-height: 36px;
  585. text-align: center;
  586. &:last-child{
  587. background: #761E6A;
  588. color: #FFFFFF;
  589. }
  590. }
  591. }
  592. }
  593. }
  594. }
  595. .empty{
  596. width: 100%;
  597. height: 100%;
  598. display: flex;
  599. flex-direction: column;
  600. align-items: center;
  601. justify-content: center;
  602. img{
  603. width: 90px;
  604. height: 76px;
  605. }
  606. p{
  607. font-family: PingFangSC, PingFang SC;
  608. font-weight: 400;
  609. font-size: 14px;
  610. color: #1D2129;
  611. line-height: 20px;
  612. margin-top: 20px;
  613. }
  614. .e_add{
  615. width: 114px;
  616. height: 32px;
  617. background: #761E6A;
  618. border-radius: 6px;
  619. font-family: PingFangSC, PingFang SC;
  620. font-weight: 400;
  621. font-size: 14px;
  622. color: #FFFFFF;
  623. line-height: 32px;
  624. text-align: center;
  625. margin-top: 36px;
  626. cursor: pointer;
  627. }
  628. }
  629. }
  630. }
  631. .tl_czs{
  632. .tlc_pre{
  633. font-family: PingFangSC, PingFang SC;
  634. font-weight: 400;
  635. font-size: 14px;
  636. color: #1D2129;
  637. line-height: 20px;
  638. padding: 12px 0;
  639. border-bottom: 1px solid #ECEEF5;
  640. cursor: pointer;
  641. &:first-child{
  642. padding-top: 0;
  643. }
  644. &:last-child{
  645. border: none;
  646. padding-bottom: 0;
  647. }
  648. &:hover{
  649. color: #761E6A;
  650. }
  651. }
  652. }
  653. :v-deep .el-dialog__wrapper{
  654. background: rgba(0,0,0,.3) !important;
  655. }
  656. ::v-deep .el-dialog__title{
  657. font-weight: bold !important;
  658. }
  659. ::v-deep .el-dialog{
  660. margin-top: 15vh !important;
  661. }
  662. ::v-deep .el-drawer__header span{
  663. font-weight: bold;
  664. font-size: 16px;
  665. color: #1D2129;
  666. line-height: 22px;
  667. }
  668. </style>