projectApplication.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722
  1. <template>
  2. <!-- 项目立项申请 -->
  3. <div class="projectApplication" v-loading="loading">
  4. <div class="pAHeader">
  5. <div class="pAHeader1">项目立项申请</div>
  6. <!-- <el-button style="font-size: 16px;" @click="apply">项目立项申请</el-button> -->
  7. </div>
  8. <hr>
  9. <!-- 搜索框开始 -->
  10. <div class="selects">
  11. <div class="selectsBlock">
  12. <div class="selectLabel">项目筛选</div>
  13. <el-select v-model="selectInp.filter" @change="getData" placeholder="我的项目">
  14. <el-option label="所有项目" value=""></el-option>
  15. <el-option
  16. v-for="item in options.projectFilter"
  17. :key="item.courseId"
  18. :label="item.title"
  19. :value="item.courseId">
  20. </el-option>
  21. </el-select>
  22. </div>
  23. <div class="selectsBlock">
  24. <div class="selectLabel">部门</div>
  25. <el-select v-model="selectInp.department" @change="getData" placeholder="请选择">
  26. <el-option label="所有部门" value=""></el-option>
  27. <el-option
  28. v-for="item in options.department"
  29. :key="item.classid"
  30. :label="item.name"
  31. :value="item.classid">
  32. </el-option>
  33. </el-select>
  34. </div>
  35. <div class="selectsBlock">
  36. <div class="selectLabel">分类</div>
  37. <el-select v-model="selectInp.sort" @change="getData" placeholder="请选择">
  38. <el-option label="所有分类" value=""></el-option>
  39. <el-option
  40. v-for="item in options.sort"
  41. :key="item.typeid"
  42. :label="item.name"
  43. :value="item.typeid">
  44. </el-option>
  45. </el-select>
  46. </div>
  47. <!-- <div class="selectInp">
  48. <div class="ProjectManagementQuery">
  49. <el-input v-model="selectText" @change="getData" placeholder="请输入项目名称"></el-input>
  50. <el-button type="primary" class="btn" @click="getData" size="mini">查询</el-button>
  51. </div>
  52. </div> -->
  53. <div class="selectsBlock">
  54. <div class="selectLabel">负责人</div>
  55. <el-select v-model="selectInp.person" @change="getData" placeholder="请选择">
  56. <el-option label="所有负责人" value=""></el-option>
  57. <el-option
  58. v-for="(item,index) in options.person"
  59. :key="index"
  60. :label="item.pro_leader"
  61. :value="item.pro_leader">
  62. </el-option>
  63. </el-select>
  64. </div>
  65. <div class="selectsBlock">
  66. <div class="selectLabel">状态</div>
  67. <el-select v-model="selectInp.state" @change="getData" placeholder="请选择">
  68. <el-option
  69. v-for="item in options.state"
  70. :key="item.value"
  71. :label="item.label"
  72. :value="item.value">
  73. </el-option>
  74. </el-select>
  75. </div>
  76. </div>
  77. <!-- 搜索框结束 -->
  78. <!-- 表格开始 -->
  79. <div>
  80. <el-table
  81. ref="multipleTable"
  82. :data="tableData"
  83. tooltip-effect="dark"
  84. stripe
  85. class="fontSize"
  86. :header-cell-style="{ background: '#f2f2f2',color:'#000' }"
  87. @selection-change="handleSelectionChange">
  88. <!-- selection-change批量选择功能后续可能用到 -->
  89. <!--
  90. <el-table-column
  91. type="selection"
  92. width="25"
  93. >
  94. </el-table-column> -->
  95. <el-table-column
  96. prop="ProjectNo"
  97. label="项目编号"
  98. align="center"
  99. min-width="11%">
  100. </el-table-column>
  101. <el-table-column
  102. prop="title"
  103. label="项目名称"
  104. align="center"
  105. min-width="10%">
  106. </el-table-column>
  107. <el-table-column
  108. prop="pro_leader"
  109. align="center"
  110. label="项目负责人"
  111. min-width="9%">
  112. </el-table-column>
  113. <el-table-column
  114. prop="name"
  115. align="center"
  116. label="所在部门"
  117. min-width="10%">
  118. </el-table-column>
  119. <el-table-column
  120. prop="sort"
  121. align="center"
  122. label="分类"
  123. min-width="10%">
  124. </el-table-column>
  125. <el-table-column
  126. prop="fund"
  127. label="预算(万)"
  128. align="center"
  129. min-width="8%">
  130. <template #default="scope">
  131. <div>
  132. {{ scope.row.fund/10000 }}
  133. </div>
  134. </template>
  135. </el-table-column>
  136. <el-table-column
  137. prop="startTime"
  138. align="center"
  139. label="开始时间"
  140. min-width="11%">
  141. </el-table-column>
  142. <el-table-column
  143. prop="phone"
  144. align="center"
  145. label="联系电话"
  146. min-width="10%">
  147. <template #default="scope">
  148. <div>
  149. {{ scope.row.phone!=null||scope.row.phone==''?scope.row.phone:"-" }}
  150. </div>
  151. </template>
  152. </el-table-column>
  153. <el-table-column
  154. prop="state"
  155. label="状态"
  156. align="center"
  157. min-width="6%">
  158. <template #default="scope">
  159. <div>
  160. <!-- {{scope.row.name + (scope.row.status==0?"":"(已屏蔽)")}} -->
  161. <!-- {{ (scope.row.isupload==0?"未审核": scope.row.data==1?"正在审核":"已审核") }} -->
  162. <span v-if="scope.row.isupload==0">未审核</span>
  163. <span v-if="scope.row.isupload==1">审核中</span>
  164. <span v-if="scope.row.isupload==2">进行中</span>
  165. <span v-if="scope.row.isupload==3">待结项</span>
  166. <span v-if="scope.row.isupload==4">已结项</span>
  167. </div>
  168. </template>
  169. </el-table-column>
  170. <el-table-column
  171. prop="operation"
  172. width="550"
  173. align="center"
  174. label="操作"
  175. >
  176. <template #default="scope">
  177. <div class="operations">
  178. <!-- {{ scope.row.isupload }} -->
  179. <el-button type="primary" size="mini" @click="lookDetail(scope.row.courseId,scope.row.typeid)">查看详情</el-button>
  180. <el-button type="primary" v-show="scope.row.isupload==0" @click="audit(scope.row,0)" size="mini" >审核</el-button> <!--0申请人审核 -->
  181. <el-button type="primary" v-show="scope.row.isupload==1 " class="disa" size="mini" >审核中</el-button>
  182. <el-button type="primary" v-show="scope.row.isupload==2" class="disa" size="mini">已审核</el-button>
  183. <el-button type="primary" v-show="scope.row.isupload==3" class="disa" size="mini">待结项</el-button>
  184. <el-button type="primary" v-show="scope.row.isupload==4" class="disa" size="mini">已结项</el-button>
  185. <el-button v-show="scope.row.isupload==0" type="primary" class="disa" size="mini">审核</el-button> <!--1管理员审核 -->
  186. <el-button v-show="scope.row.isupload==1" type="primary" size="mini" @click="audit(scope.row,1)">审核1</el-button>
  187. <el-button v-show="scope.row.isupload==2" type="primary" class="disa" size="mini">已审核</el-button>
  188. <el-button v-show="scope.row.isupload==3" type="primary" class="disa" size="mini">待结项</el-button>
  189. <el-button v-show="scope.row.isupload==4" type="primary" class="disa" size="mini">已结项</el-button>
  190. <el-button type="primary" size="mini" @click="appTable(scope.row.typeid,scope.row.courseId)" >申请表</el-button>
  191. <el-button type="primary" size="mini" @click="del(scope.row)">删除</el-button>
  192. </div>
  193. </template>
  194. </el-table-column>
  195. </el-table>
  196. </div>
  197. <!-- 表格结束 -->
  198. <!-- 分页 -->
  199. <el-pagination
  200. @current-change="handleCurrentChange"
  201. :current-page="table.currentPage"
  202. :page-size="table.packageSize"
  203. layout=" prev, pager, next"
  204. background
  205. class="paginations"
  206. :total="table.total">
  207. </el-pagination>
  208. <!-- 分页结束 -->
  209. <!-- 立项审核对话框开始 -->
  210. <el-dialog
  211. title="立项审核"
  212. :visible.sync="dialogVisible"
  213. class="pageSubmitData"
  214. width="700px"
  215. :before-close="init">
  216. <div class="diaTit">
  217. <div class="addDialogLogo">LOGO</div>
  218. <div class="spans">项目名称:</div>
  219. <div class="spanCon">{{ auditDialog.projectName }}</div>
  220. <div class="spans">项目负责人:</div>
  221. <div class="spanCon">{{ auditDialog.person }}</div>
  222. </div>
  223. <div class="diaTit1">
  224. <div class="spans1">所在部门</div>
  225. <div class="inp">
  226. <el-input disabled v-model="auditDialog.department" placeholder="所在部门"></el-input>
  227. </div>
  228. </div>
  229. <div class="diaTit1">
  230. <div class="spans1">预算总经费</div>
  231. <div class="inp">
  232. <el-input disabled v-model="auditDialog.fund" placeholder="预算总经费"></el-input>
  233. </div>
  234. </div>
  235. <div class="diaTit1">
  236. <div class="spans1">联系电话</div>
  237. <div class="inp">
  238. <el-input disabled v-model="auditDialog.tel" placeholder="联系电话"></el-input>
  239. </div>
  240. </div>
  241. <div class="diaTit1" v-show="isManager==1">
  242. <div class="spans1" style="position: relative;top:-24px">驳回意见</div>
  243. <div class="inp">
  244. <el-input
  245. type="textarea"
  246. :rows="5"
  247. resize="none"
  248. placeholder="请输入修改建议等..."
  249. v-model="rejectApplyText">
  250. </el-input>
  251. </div>
  252. </div>
  253. <div slot="footer" class="dialog-footer">
  254. <el-button type="primary" v-show="isManager==0" @click="ApplyPersonCommit" class="AllDialogBtn" >审核</el-button>
  255. <el-button type="primary" v-show="isManager==1" @click="ManagerCommit" class="AllDialogBtn" >通过</el-button>
  256. <el-button type="primary" v-show="isManager==1" @click="rejectApply" class="AllDialogBtn" >驳回</el-button>
  257. <el-button @click="init" class="AllDialogBtn">取消</el-button>
  258. </div>
  259. </el-dialog>
  260. <!-- 立项审核对话框结束 -->
  261. <!-- 删除通知开始 -->
  262. <el-dialog
  263. title="删除项目"
  264. :visible.sync="dialogVisible2"
  265. width="600px"
  266. class="pageSubmitData">
  267. <div class="addDialogLogo">LOGO</div>
  268. <div class="deleteContent">确定删除项目?</div>
  269. <span slot="footer" class="dialog-footer">
  270. <el-button type="primary" @click="dialogDel" class="AllDialogBtn">确认删除</el-button>
  271. <el-button @click="init" class="AllDialogBtn" >取消</el-button>
  272. </span>
  273. </el-dialog>
  274. <!-- 删除通知结束-->
  275. <!-- 文档预览开始 -->
  276. <el-dialog
  277. title="文档预览"
  278. :visible.sync="WordPreview"
  279. width="60%"
  280. class="pageSubmitData">
  281. <div class="addDialogLogo">LOGO</div>
  282. <MakerSpaceWordPreview v-if="PreviewTid == '5f7a66d5-c206-11ed-a4cd-509a4c5b67cf' && WordPreview " :data="PreviewData"/>
  283. <studentMakerProjectPreview v-if="PreviewTid == '5e21b204-c206-11ed-a4cd-509a4c5b67cf' && WordPreview" :data="PreviewData"/>
  284. <span slot="footer" class="dialog-footer">
  285. <el-button type="primary" @click="downWord" class="AllDialogBtn">下载文档</el-button>
  286. <el-button @click="WordPreview = false" class="AllDialogBtn" >取消</el-button>
  287. </span>
  288. </el-dialog>
  289. <!-- <el-dialog
  290. title="文档预览"
  291. :visible.sync="WordPreview"
  292. width="60%"
  293. class="pageSubmitData">
  294. <div class="addDialogLogo">LOGO</div>
  295. <MakerSpaceWordPreview v-if="PreviewTid == '5f7a66d5-c206-11ed-a4cd-509a4c5b67cf' && WordPreview" :data="PreviewData"/>
  296. <studentMakerProjectPreview v-if="PreviewTid == '2f4c6e78-f2e7-11ed-a3f6-509a4c5b67cf' && WordPreview" :data="PreviewData"/>
  297. <span slot="footer" class="dialog-footer">
  298. <el-button type="primary" @click="downWord" class="AllDialogBtn">下载文档</el-button>
  299. <el-button @click="WordPreview = false" class="AllDialogBtn" >取消</el-button>
  300. </span>
  301. </el-dialog> -->
  302. <!-- 文档预览结束 -->
  303. </div>
  304. </template>
  305. <script>
  306. import {MakerSpaceWord,MakerStudentWord} from '@/components/tool/getWord.js'
  307. import MakerSpaceWordPreview from '@/components/MakerSpaceWordPreview.vue';
  308. import studentMakerProjectPreview from '@/components/studentMakerProjectPreview.vue'
  309. export default {
  310. components:{MakerSpaceWordPreview,studentMakerProjectPreview},
  311. data() {
  312. return {
  313. iid:'',
  314. loading:false,
  315. textarea:'',
  316. input:'',
  317. dialogVisible:false,//立项审核
  318. dialogVisible1:false,//立项撤回提交
  319. dialogVisible2:false,//删除
  320. WordPreview:false,//文档预览
  321. PreviewTid:"",//预览分类ID
  322. PreviewData:"",//预览数据
  323. rejectApplyText:'', //驳回-修改建议
  324. isManager:0, //0申请人审核科----- 1管理员审核框
  325. // 分页数据
  326. table:{
  327. total:0,
  328. packageSize:7,
  329. currentPage:1
  330. },
  331. tableData:[], //列表数据
  332. selectInp:{ // 头部搜索框的内容
  333. filter:'',
  334. department:'',
  335. sort:'',
  336. person:'',
  337. state:'',
  338. },
  339. options:{ //头部搜索框下拉框数据
  340. projectFilter:[],//项目筛选
  341. department:[],//部门
  342. sort:[],//分类
  343. person:[],//负责人
  344. state:[//状态
  345. {
  346. value:'',
  347. label:'全部'
  348. },
  349. {
  350. value:0,
  351. label:'未审核'
  352. },
  353. {
  354. value:1,
  355. label:'审核中'
  356. },
  357. {
  358. value:2,
  359. label:'进行中'
  360. },
  361. {
  362. value:3,
  363. label:"待结项"
  364. },
  365. {
  366. value:4,
  367. label:"已结项"
  368. },
  369. ],
  370. },
  371. auditDialog:{ //审核对话框数据
  372. projectName:'',
  373. person:'',
  374. department:'',
  375. fund:'',
  376. tel:'',
  377. // cid:''
  378. }
  379. }
  380. },
  381. methods:{
  382. downWord(){
  383. if(this.PreviewTid=='5f7a66d5-c206-11ed-a4cd-509a4c5b67cf'){
  384. MakerSpaceWord(this.PreviewData[0],this.PreviewData[1]);
  385. }else{
  386. console.log(11);
  387. MakerStudentWord(this.PreviewData[0],this.PreviewData[1]);
  388. }
  389. },
  390. init(){
  391. this.dialogVisible=false;
  392. this.dialogVisible1=false;
  393. this.dialogVisible2=false;
  394. },
  395. audit(val,num){ //审核按钮
  396. this.isManager=num;
  397. this.iid=val //储存id给对话框
  398. // if (val.isupload==0) {
  399. this.dialogVisible=true;
  400. // console.log(val);
  401. this.auditDialog.projectName=val.title;
  402. this.auditDialog.person=val.pro_leader;
  403. this.auditDialog.department=val.name;
  404. this.auditDialog.fund=val.fund;
  405. this.auditDialog.tel=val.phone || '-';
  406. // this.auditDialog.cid=courseId
  407. // }
  408. },
  409. appTable(tid,pid){ //查看申请表
  410. if(tid=="5e21b204-c206-11ed-a4cd-509a4c5b67cf"){
  411. // downloadFile('/file/附件2:2023年学生创客项目申报书模板(2).docx',"2023年学生创客项目申报书模板.docx",(_b)=>this.loading = _b);
  412. this.ajax.get(this.$store.state.api+"/SelectProjectWordMakerStudent",{
  413. uid:this.$store.state.userInfo.userid,
  414. pid:pid
  415. }).then(res=>{
  416. // console.log(res['data']);
  417. this.PreviewData = [res['data'][0][0],res['data'][1]];
  418. // return console.log(this.PreviewData);
  419. this.WordPreview = true;
  420. this.PreviewTid = tid;
  421. }).catch(err=>{
  422. console.log(err)
  423. })
  424. }else if(tid=="5f7a66d5-c206-11ed-a4cd-509a4c5b67cf"){
  425. this.ajax.get(this.$store.state.api+"/SelectProjectWordMakerSpace",{
  426. uid:this.$store.state.userInfo.userid,
  427. pid:pid
  428. }).then(res=>{
  429. this.PreviewData = [res['data'][0][0],res['data'][1]];
  430. this.WordPreview = true;
  431. this.PreviewTid = tid;
  432. // MakerSpaceWord(res['data'][0][0],res['data'][1]);
  433. }).catch(err=>{
  434. console.log(err)
  435. })
  436. }else{
  437. this.$message.error("错误")
  438. }
  439. },
  440. ManagerCommit(){ //立项审核对话框里面的管理员通过按钮
  441. // console.log(this.iid);
  442. let param={
  443. uid:this.$store.state.userInfo.userid,
  444. pid:this.iid.courseId,
  445. num:2
  446. }
  447. this.ajax
  448. // .post(this.$store.state.api+"/ApproveProject",param)
  449. .post(this.$store.state.api+"/updateIsupload",param)
  450. .then(res=>{
  451. // console.log(res);
  452. this.dialogVisible=false;
  453. this.$message.success('提交成功')
  454. this.getData()
  455. },err=>{
  456. console.log(err);
  457. })
  458. },
  459. ApplyPersonCommit(){ //申请人审核按钮
  460. let param={
  461. uid:this.$store.state.userInfo.userid,
  462. pid:this.iid.courseId,
  463. num:1
  464. }
  465. this.ajax
  466. .post(this.$store.state.api+"/updateIsupload",param) //updateIsupload
  467. .then(res=>{
  468. this.dialogVisible=false
  469. this.$message.success('已提交')
  470. this.getData()
  471. })
  472. },
  473. rejectApply(){ //立项审核对话框里面的驳回申请
  474. let param={
  475. uid:this.$store.state.userInfo.userid,
  476. pid:this.iid.courseId,
  477. num:0
  478. }
  479. this.ajax
  480. .post(this.$store.state.api+"/updateIsupload",param)
  481. .then(res=>{
  482. this.dialogVisible=false
  483. this.$message.success('已驳回项目申请')
  484. this.getData()
  485. })
  486. },
  487. commit2(val){ //立项撤回对话框里面的确定撤回按钮
  488. this.dialogVisible1=false;
  489. this.status--
  490. },
  491. handleSelectionChange(val) { //批量选择功能后续可能用到
  492. // console.log(val);
  493. this.multipleSelection = val;
  494. },
  495. lookDetail(val,tid){ //查看详情按钮
  496. // console.log(tid);
  497. // localStorage.setItem("pid",JSON.stringify(val))
  498. this.$router.push(`/projectApplicationDetailMain?tid=${tid}&pid=${val}`)
  499. },
  500. // apply(){ //项目立项申请按钮
  501. // this.$router.push('/projectApplicationApplyMain')
  502. // },
  503. getData(){ //获取表格数据
  504. this.loading = true;
  505. let param={
  506. uid:this.$store.state.userInfo.userid,
  507. pid:this.selectInp.filter, //筛选
  508. did:this.selectInp.department, //部门
  509. tid:this.selectInp.sort, //分类
  510. leader:this.selectInp.person, //负责人
  511. st:this.selectInp.state, //审核状态
  512. year:"",
  513. textInp:'',
  514. page:this.table.currentPage, //当前页
  515. lim:this.table.packageSize //限制获取几条数据
  516. }
  517. // return console.log(param);
  518. // console.log(param)
  519. this.ajax
  520. .get(this.$store.state.api+'/SelectAllProject',param)
  521. .then(res=>{
  522. let data=res.data;
  523. console.log(data);
  524. if (data[0].length==0 && data[5][0]['total'] != 0) {
  525. this.table.currentPage=1
  526. return this.getData()
  527. }
  528. let a=this.options;
  529. this.tableData=data[0];
  530. a.projectFilter=data[1];
  531. a.department=data[2];
  532. a.sort=data[3];
  533. a.person=data[4];
  534. this.table.total=data[5][0].total
  535. // this.tableData.forEach(item=>{
  536. // if(item['time']!=null&&item['time']!=''){
  537. // item['time']=JSON.parse(item['time'])
  538. // }else{
  539. // item['time'] = []
  540. // }
  541. // })
  542. this.loading = false;
  543. // console.log(this.tableData)
  544. },err=>{
  545. console.log(err);
  546. })
  547. },
  548. del(val) { //表格删除按钮,点击显示删除对话框
  549. // console.log(val);
  550. this.dialogVisible2=true
  551. this.iid=val //将要删除的id进行存储供删除对话框使用
  552. },
  553. dialogDel(){ //确定删除这个项目
  554. // console.log(this.iid)
  555. if (this.iid.userid == this.$store.state.userInfo.userid) {
  556. let param={
  557. uid:this.$store.state.userInfo.userid,
  558. pid:this.iid.courseId
  559. }
  560. this.ajax
  561. .post(this.$store.state.api+"/DeleteProject",param)
  562. .then(res=>{
  563. // console.log(res);
  564. if (res.data) {
  565. this.$message.success('删除成功')
  566. this.getData()
  567. this.dialogVisible2=false
  568. return
  569. }else{
  570. this.$message.error('删除失败')
  571. }
  572. },err=>{
  573. console.log(err);
  574. })
  575. }
  576. },
  577. handleCurrentChange(val) { //当页数发生改变的时候调用获取列表数据请求
  578. // console.log(`当前页: ${val}`);
  579. this.table.currentPage=val
  580. this.getData()
  581. },
  582. },
  583. watch:{ //监视选择框的变化,实施刷新表格数据
  584. // options:{
  585. // handler(){
  586. // immediate:true
  587. // deep:true
  588. // this.getData()
  589. // }
  590. // }
  591. },
  592. mounted(){ //跳转到此页面立刻获取数据
  593. this.getData(); //获取表格数据
  594. }
  595. }
  596. </script>
  597. <style lang="less">
  598. .projectApplication{
  599. .el-table::before{
  600. height: 0;
  601. }
  602. // .addDialog{ //文档预览
  603. // font-size: 18px;
  604. // .el-dialog{
  605. // border-radius: 5px;
  606. // overflow: hidden;
  607. // }
  608. // .el-dialog__body{
  609. // display: flex;
  610. // justify-content: center;
  611. // }
  612. // .deleteContent{
  613. // // margin: 30px 0;
  614. // font-size: 22px;
  615. // color: #000;
  616. // }
  617. // .addDialogLogo{
  618. // width: 60px;
  619. // height: 30px;
  620. // display: flex;
  621. // justify-content: center;
  622. // line-height: 30px;
  623. // border-radius: 5px;
  624. // background: #f2f2f2;
  625. // position: absolute;
  626. // left: 20px; top: 15px;
  627. // }
  628. // .el-dialog__header{
  629. // background: #32455b;
  630. // position: relative;
  631. // top: -2px;
  632. // }
  633. // .el-dialog__title{
  634. // color:#fff;
  635. // display: flex;
  636. // justify-content: center;
  637. // font-size: 18px;
  638. // position: relative;
  639. // top: -2px;
  640. // }
  641. // .addDialogMid{
  642. // box-sizing: border-box;
  643. // padding:0 60px 0 10px;
  644. // .addDialogTit{
  645. // display: flex;
  646. // span{
  647. // width: 80px;
  648. // font-size: 16px;
  649. // line-height: 40px;
  650. // text-align: left;
  651. // }
  652. // }
  653. // .addDialogTit1{
  654. // display: flex;
  655. // justify-content: space-between;
  656. // margin-bottom: 15px;
  657. // }
  658. // .addDialogTit2{
  659. // margin-top: 10px;
  660. // font-size: 16px;
  661. // color: #000;
  662. // text-indent: 2em;
  663. // }
  664. // .addDialogCon{
  665. // margin-top: 20px;
  666. // }
  667. // }
  668. // .dialog-footer{
  669. // display: flex;
  670. // justify-content: center;
  671. // box-sizing: border-box;
  672. // }
  673. // }
  674. }
  675. </style>