人民医院前端

dispatchdetail.vue 24KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702
  1. <template>
  2. <div class="order_detail">
  3. <el-row :gutter="20">
  4. <el-col :md="24" class="order_detail_body">
  5. <el-card shadow="hover">
  6. <el-col :md="21">
  7. <el-col :md="18">
  8. <h1 class="title" style="display: inline-block">
  9. <svg-icon class="title_icon" icon-class="hongqi" />工单编号:{{
  10. orderDetailData.F_WorkOrderCode
  11. }}
  12. <span v-if="orderDetailData.StateName" class="wostate">{{
  13. orderDetailData.StateName
  14. }}</span>
  15. <span v-if="orderDetailData.F_UrgeCount > 0" class="wostate">催{{ orderDetailData.F_UrgeCount }}</span>
  16. </h1>
  17. </el-col>
  18. </el-col>
  19. <el-col :md="24" class="order_detail_content">
  20. <table class="tabdept" cellspacing="0" cellpadding="0">
  21. <tr>
  22. <th>业务类别:</th>
  23. <td>{{ orderDetailData.TypeName }}</td>
  24. <th>工单类别:</th>
  25. <td>{{ orderDetailData.F_TypeName2 }}</td>
  26. <th>超时时限:</th>
  27. <td>{{ orderDetailData.GapTime || "-" }}</td>
  28. </tr>
  29. <tr>
  30. <th>申请人:</th>
  31. <td v-if="orderDetailData.applicantname">
  32. {{ orderDetailData.applicantname }}-{{
  33. orderDetailData.F_Applicant
  34. }}({{ orderDetailData.F_Phone }})
  35. </td>
  36. <td v-if="!orderDetailData.applicantname">-</td>
  37. <th>申请科室:</th>
  38. <td v-if="
  39. orderDetailData.F_ApplicationDept &&
  40. orderDetailData.F_ApplicationDept != '0'
  41. ">
  42. {{
  43. $store.getters.deptmap[
  44. parseInt(orderDetailData.F_ApplicationDept)
  45. ] &&
  46. $store.getters.deptmap[
  47. parseInt(orderDetailData.F_ApplicationDept)
  48. ].text
  49. }}
  50. </td>
  51. <td v-if="
  52. !orderDetailData.F_ApplicationDept ||
  53. orderDetailData.F_ApplicationDept == '0'
  54. ">
  55. -
  56. </td>
  57. <th>科室电话:</th>
  58. <td>{{ orderDetailData.F_DeptPhone }}</td>
  59. </tr>
  60. <tr>
  61. <th>科室位置:</th>
  62. <td>{{ orderDetailData.F_Location }}</td>
  63. <th>申请时间:</th>
  64. <td>{{ orderDetailData.F_CreateTime }}</td>
  65. <th>接单人:</th>
  66. <td v-if="orderDetailData.DealManName">
  67. {{ orderDetailData.DealManName }}-{{
  68. orderDetailData.F_DealMan
  69. }}({{ orderDetailData.DealManPhone }})
  70. </td>
  71. <td v-if="!orderDetailData.DealManName">{{ "-" }}</td>
  72. </tr>
  73. <tr v-show="isDD.indexOf('DD') >= 0 || isDD === 'GLY'">
  74. <th>接单时间:</th>
  75. <td>{{ orderDetailData.F_AcceptTime || "-" }}</td>
  76. <th>完成时间:</th>
  77. <td colspan="3">{{ orderDetailData.F_Endtime || "-" }}</td>
  78. </tr>
  79. <tr v-if="
  80. orderDetailData.PSInfo && orderDetailData.PSInfo.length > 0
  81. ">
  82. <th :rowspan="orderDetailData.PSInfo.length + 1">配送信息:</th>
  83. <!-- <td colspan="5">
  84. <span style="display: inline-block;margin-right: 20px;"
  85. v-for="(item, index) in orderDetailData.PSInfo" :key="index+0" v-if="item.F_ToDept">{{ $store.getters.deptmap[parseInt(item.F_ToDept)] &&
  86. $store.getters.deptmap[parseInt(item.F_ToDept)].text}}-{{item.F_DicName}}({{item.F_Number}})<span
  87. v-if="index!=orderDetailData.PSInfo.length-1">,</span></span>
  88. <span style="display: inline-block;margin-right: 20px;"
  89. v-for="(item, index) in orderDetailData.PSInfo" :key="index+0"
  90. v-if="item.F_IsBorrow==1">{{ item.F_DicName }}(借{{item.F_Number}})<span
  91. v-if="index!=orderDetailData.PSInfo.length-1">,</span></span>
  92. <span style="display: inline-block;margin-right: 20px;"
  93. v-for="(item, index) in orderDetailData.PSInfo" :key="index+0"
  94. v-if="item.F_IsBorrow==2">{{ item.F_DicName }}(还{{item.F_Number}})<span
  95. v-if="index!=orderDetailData.PSInfo.length-1">,</span></span>
  96. <span style="display: inline-block;margin-right: 20px;"
  97. v-for="(item, index) in orderDetailData.PSInfo" :key="index+0"
  98. v-if="!item.F_ToDept&&!item.F_IsBorrow">{{ item.F_DicName }}({{item.F_Number}})<span
  99. v-if="index!=orderDetailData.PSInfo.length-1">,</span></span>
  100. </td> -->
  101. </tr>
  102. <tr v-for="(item, index) in orderDetailData.PSInfo" :key="index+0">
  103. <th v-if="item.F_ToDept">送达科室:</th>
  104. <th v-if="item.F_ToDept">
  105. {{
  106. $store.getters.deptmap[parseInt(item.F_ToDept)] &&
  107. $store.getters.deptmap[parseInt(item.F_ToDept)].text
  108. }}
  109. </th>
  110. <th v-if="item.F_ToDept">物品名称:</th>
  111. <td v-if="item.F_ToDept">
  112. <span>{{ item.F_DicName }}</span>
  113. <span v-if="item.F_IsBorrow == 1">(借)</span>
  114. <span v-if="item.F_IsBorrow == 2">(还)</span>
  115. <span>({{item.F_Number}})</span>
  116. </td>
  117. <th v-if="!item.F_ToDept">物品名称:</th>
  118. <td v-if="!item.F_ToDept">
  119. <span>{{ item.F_DicName }}</span>
  120. <span v-if="item.F_IsBorrow == 1">(借)</span>
  121. <span v-if="item.F_IsBorrow == 2">(还)</span>
  122. </td>
  123. <th v-if="!item.F_ToDept">数量:</th>
  124. <td v-if="!item.F_ToDept">
  125. {{ item.F_Number
  126. }}
  127. <span v-if="item.F_PaidInQuantity != null">(实收数量:{{ item.F_PaidInQuantity }})</span>
  128. </td>
  129. <th>-</th>
  130. </tr>
  131. <tr v-if="
  132. orderDetailData.SDInfo && orderDetailData.SDInfo.length > 0
  133. ">
  134. <th :rowspan="orderDetailData.SDInfo.length + 1">异常配送信息:</th>
  135. </tr>
  136. <tr v-for="(item, index) in orderDetailData.SDInfo" :key="index+0">
  137. <th v-if="item.F_ToDept">送达科室:</th>
  138. <th v-if="item.F_ToDept">
  139. {{
  140. $store.getters.deptmap[parseInt(item.F_ToDept)] &&
  141. $store.getters.deptmap[parseInt(item.F_ToDept)].text
  142. }}
  143. </th>
  144. <th v-if="item.F_ToDept">物品名称:</th>
  145. <td v-if="item.F_ToDept">
  146. <span>{{ item.F_DicName }}</span>
  147. <span v-if="item.F_IsBorrow == 1">(借)</span>
  148. <span v-if="item.F_IsBorrow == 2">(还)</span>
  149. <span>({{item.F_Number}})</span>
  150. </td>
  151. <th v-if="!item.F_ToDept">物品名称:</th>
  152. <td v-if="!item.F_ToDept">
  153. <span>{{ item.F_DicName }}</span>
  154. <span v-if="item.F_IsBorrow == 1">(借)</span>
  155. <span v-if="item.F_IsBorrow == 2">(还)</span>
  156. </td>
  157. <th v-if="!item.F_ToDept">数量:</th>
  158. <td v-if="!item.F_ToDept">
  159. {{ item.F_Number
  160. }}
  161. <span v-if="item.F_PaidInQuantity != null">(实收数量:{{ item.F_PaidInQuantity }}</span>
  162. </td>
  163. <th>-</th>
  164. </tr>
  165. <tr v-if="orderDetailData.F_Recipient">
  166. <th>是否异常:</th>
  167. <td colspan="5">
  168. {{ orderDetailData.F_IsAbnormal == 0 ? "否" : "是" }}
  169. </td>
  170. </tr>
  171. <tr>
  172. <th>备注:</th>
  173. <td colspan="5">{{ orderDetailData.F_Content || "-" }}</td>
  174. </tr>
  175. <tr v-if="
  176. orderDetailData.FileUrl ||
  177. orderDetailData.DealFileUrl ||
  178. orderDetailData.CollectFile
  179. ">
  180. <th>附件:</th>
  181. <td colspan="5" style="text-align: left; padding: 5px 10px">
  182. <div class="imglist">
  183. <img v-for="(item, index) in imgFiles" :key="index" :src="item.F_FileUrl"
  184. @click="bigImg(item.F_FileUrl)" />
  185. <a v-for="(item, index) in otherFiles" :key="index" :href="item.F_FileUrl"
  186. :download="item.F_FileName">{{
  187. item.F_FileName.substring(19, item.F_FileName.length)
  188. }}</a>
  189. </div>
  190. </td>
  191. </tr>
  192. </table>
  193. </el-col>
  194. </el-card>
  195. </el-col>
  196. </el-row>
  197. <el-row :gutter="20">
  198. <el-col :md="24" class="order_detail_body">
  199. <el-card shadow="hover">
  200. <el-tabs ref="tabs" v-model="activeName">
  201. <el-tab-pane label="工单流程" name="1">
  202. <el-col :md="24" class="order_detail_content">
  203. <el-table :data="workOrderCirculationList" border style="width: 100%">
  204. <el-table-column prop="username" label="操作人" align="center" />
  205. <el-table-column prop="F_LogContent" label="内容" align="center" />
  206. <el-table-column prop="F_OperationTime" label="时间" align="center" />
  207. </el-table>
  208. </el-col>
  209. </el-tab-pane>
  210. <el-tab-pane label="关联工单" name="2">
  211. <el-col :md="24" class="order_detail_content">
  212. <el-table :data="sonData" border style="width: 100%">
  213. <el-table-column prop="F_WorkOrderCode" label="工单编号" align="center">
  214. <template slot-scope="scope">
  215. <span style="color: royalblue; cursor: pointer"
  216. @click="hadndleOrderCode(scope.row.F_WorkOrderCode)">{{ scope.row.F_WorkOrderCode }}</span>
  217. </template>
  218. </el-table-column>
  219. <el-table-column prop="DealManName" label="接单人" align="center">
  220. <template slot-scope="scope">
  221. <span>{{ scope.row.DealManName }}-{{
  222. scope.row.DealManPhone
  223. }}</span>
  224. </template>
  225. </el-table-column>
  226. <el-table-column prop="F_AcceptTime" label="接单时间" align="center" />
  227. </el-table>
  228. </el-col>
  229. </el-tab-pane>
  230. <el-tab-pane label="评价" name="3">
  231. <div v-if="!evaluateData.F_Attitude">暂无评价</div>
  232. <div class="evaluate" v-if="evaluateData.F_Attitude">
  233. <span class="demonstration">服务态度:</span>
  234. <el-rate v-model="evaluateData.F_Attitude" :texts="texts" show-text disabled
  235. style="display: inline-block" />
  236. </div>
  237. <div class="evaluate" v-if="evaluateData.F_Quality">
  238. <span class="demonstration">服务质量:</span>
  239. <el-rate v-model="evaluateData.F_Quality" :texts="texts" show-text disabled
  240. style="display: inline-block" />
  241. </div>
  242. <div class="evaluate" v-if="evaluateData.F_Efficiency">
  243. <span class="demonstration">完工时效:</span>
  244. <el-rate v-model="evaluateData.F_Efficiency" :texts="texts" show-text disabled
  245. style="display: inline-block" />
  246. </div>
  247. <div v-if="evaluateData.F_EvaluateContent">
  248. <el-col :md="24" style="font-size: 15px; color: #505050">
  249. 文字评价:{{ evaluateData.F_EvaluateContent }}
  250. </el-col>
  251. </div>
  252. </el-tab-pane>
  253. </el-tabs>
  254. </el-card>
  255. </el-col>
  256. </el-row>
  257. <el-dialog :visible.sync="dialogImgVisible" title="查看图片" width="50%" append-to-body>
  258. <div>
  259. <img :src="imgUrl" style="width: 100%; height: 500px" />
  260. </div>
  261. </el-dialog>
  262. </div>
  263. </template>
  264. <script>
  265. import {
  266. mapGetters
  267. } from "vuex";
  268. import {
  269. GetOrderDetail
  270. } from "@/api/comDispatch/addOrEditDispatch";
  271. import dispatchDetail from "../../comDispatch/components/dispatchdetail.vue";
  272. import Pagination from "@/components/context/Pagination"; // 对el-pagination 二次封装
  273. let that;
  274. export default {
  275. name: "DispatchDetail",
  276. components: {
  277. Pagination,
  278. },
  279. filters: {
  280. formtDeptById(id) {
  281. if (!id) {
  282. return "";
  283. }
  284. return that.$store.getters.deptmap[parseInt(id)].text;
  285. },
  286. },
  287. props: {
  288. rowid: {
  289. type: String,
  290. default: "",
  291. },
  292. layerid: {
  293. type: String,
  294. default: "",
  295. },
  296. },
  297. data() {
  298. return {
  299. isDD: window.localStorage.getItem("roleCode"), //角色是不是调度
  300. texts: ["不满意", "不满意", "基本满意", "满意", "满意"],
  301. imgUrl: "",
  302. dialogImgVisible: false,
  303. activeName: "1",
  304. imgFiles: [],
  305. otherFiles: [],
  306. ChatList: [], // 备注详情列表
  307. orderDetailData: {
  308. F_CallID: "",
  309. F_WorkOrderCode: "",
  310. F_ID: "",
  311. F_Source: "电话", // 业务类别
  312. F_Type1: "", // 工单类别
  313. F_TypeName1: "", // 工单类别
  314. F_Type2: "", // 工单子类
  315. F_TypeName2: "", // 工单子类
  316. F_Type3: "", // 工单三类
  317. F_TypeName3: "", // 工单三类
  318. F_Customer: "", // 姓名
  319. F_Sex: "0", // 性别
  320. F_Phon: "", // 电话
  321. F_CusAddress: "", // 家庭住址
  322. F_IdCard: "", // 身份证号
  323. F_ServiceItems: "", // 服务项目
  324. F_Address: "", // 地区
  325. F_FirstCheckHospital: "", // 首次检查医院
  326. F_NoduleSize: "", // 肺结节大小
  327. F_FirstFindTime: "", // 首次发现肺结节时间
  328. F_Urgency: "0", // 紧急程度
  329. F_Cathetertype: "", // 置管类型
  330. F_Catheterdept: "", // 置管科室
  331. F_Cathetertime: "", // 置管时间
  332. F_BedNum: "", // 床号
  333. F_InpatientNum: "", // 住院号
  334. opt: "", // 处理方式
  335. cont: "",
  336. F_WorkOrderContents: "", // 工单内容
  337. F_DealOpinions: "", // 处理意见
  338. },
  339. pageParams: {
  340. pageindex: 1, // 当前第几页
  341. pagesize: 5, // 每页几条数据
  342. total: 0, // 总共多少数据
  343. },
  344. evaluateData: {}, // 评价
  345. workOrderCirculationList: [], // 工单流转
  346. sonData: [],
  347. };
  348. },
  349. computed: {
  350. ...mapGetters(["rolecode"]),
  351. },
  352. beforeCreate() {
  353. that = this;
  354. },
  355. created() {
  356. this.getDetail("0");
  357. this.getDetail("1");
  358. this.getDetail("2");
  359. this.getDetail("3");
  360. },
  361. methods: {
  362. hadndleOrderCode(id) {
  363. this.$layer.iframe({
  364. content: {
  365. content: dispatchDetail, // 传递的组件对象
  366. parent: this, // 当前的vue对象
  367. data: {
  368. rowid: id,
  369. }, // props
  370. },
  371. area: ["80%", "90%"],
  372. title: "工单详情",
  373. });
  374. },
  375. bigImg(url) {
  376. this.dialogImgVisible = true;
  377. this.imgUrl = url;
  378. },
  379. handleClick(tab, event) {
  380. console.log(tab, event);
  381. },
  382. // 详情
  383. getDetail(num) {
  384. const params = {
  385. WorkOrderCode: this.rowid,
  386. type: num,
  387. };
  388. GetOrderDetail(params).then((response) => {
  389. if (num === "1") {
  390. this.workOrderCirculationList = response.data;
  391. } else if (num === "2") {
  392. if (response.data.length > 0) {
  393. this.evaluateData = response.data[0];
  394. }
  395. } else if (num === "3") {
  396. if (response.data && response.data.length > 0) {
  397. this.sonData = response.data;
  398. }
  399. if (response.data == null) {
  400. this.$refs.tabs.$children[0].$refs.tabs[1].style.display = "none";
  401. }
  402. } else {
  403. const res = response.data[0];
  404. this.orderDetailData = res;
  405. const imgs = [];
  406. const others = [];
  407. const fileUrls = [
  408. ...(this.orderDetailData.FileUrl || []),
  409. ...(this.orderDetailData.DealFileUrl || []), ,
  410. ...(this.orderDetailData.CollectFile || []),
  411. ];
  412. if (fileUrls && fileUrls.length > 0) {
  413. fileUrls.forEach(function(v, n) {
  414. if (
  415. v.F_FileType === ".jpg" ||
  416. v.F_FileType === ".png" ||
  417. v.F_FileType === ".jpeg"
  418. ) {
  419. imgs.push(v);
  420. } else {
  421. others.push(v);
  422. }
  423. });
  424. this.imgFiles = imgs;
  425. this.otherFiles = others;
  426. }
  427. if (
  428. res.F_WorkOrderCategory &&
  429. this.$store.getters.workTypeMap[parseInt(res.F_WorkOrderCategory)]
  430. ) {
  431. this.orderDetailData.F_TypeName2 =
  432. this.$store.getters.workTypeMap[
  433. parseInt(res.F_WorkOrderCategory)
  434. ].text; // 工单子类
  435. } else {
  436. this.orderDetailData.F_TypeName2 = "";
  437. }
  438. if (this.orderDetailData.F_TypeName2.indexOf("标本") >= 0) {
  439. for (var i = 0; i < res.PSInfo.length; i++) {
  440. if (
  441. this.$store.getters.bbxxTypeMap[parseInt(res.PSInfo[i].F_DicId)]
  442. ) {
  443. res.PSInfo[i].F_DicName =
  444. this.$store.getters.bbxxTypeMap[
  445. parseInt(res.PSInfo[i].F_DicId)
  446. ].text;
  447. } else {
  448. res.PSInfo[i].F_DicName = "";
  449. }
  450. }
  451. for (var i = 0; i < res.SDInfo.length; i++) {
  452. if (
  453. this.$store.getters.bbxxTypeMap[parseInt(res.SDInfo[i].F_DicId)]
  454. ) {
  455. res.SDInfo[i].F_DicName =
  456. this.$store.getters.bbxxTypeMap[
  457. parseInt(res.SDInfo[i].F_DicId)
  458. ].text;
  459. } else {
  460. res.SDInfo[i].F_DicName = "";
  461. }
  462. }
  463. }
  464. }
  465. });
  466. },
  467. },
  468. };
  469. </script>
  470. <style rel="stylesheet/scss" lang="scss">
  471. .order_detail {
  472. .tabdept {
  473. width: 100%;
  474. margin: 10px 0;
  475. border: 1px solid #ccc;
  476. }
  477. .tabdept th {
  478. width: 150px;
  479. padding: 10px 0;
  480. font-size: 1rem;
  481. text-align: center;
  482. background-color: #ececec;
  483. border: 1px solid #ccc;
  484. }
  485. .tabdept td {
  486. font-size: 1rem;
  487. text-align: center;
  488. background-color: #fafafa;
  489. border: 1px solid #ccc;
  490. }
  491. .wostate {
  492. color: #67aa60;
  493. display: inline-block;
  494. border: 1px solid #c1c1c1;
  495. border-radius: 5px;
  496. padding: 5px 10px 3px 10px;
  497. font-size: 17px !important;
  498. }
  499. .evaluate {
  500. margin: 10px;
  501. font-size: 15px;
  502. color: #505050;
  503. }
  504. .el-col {
  505. // margin-bottom: 20px;
  506. }
  507. .el-icon-time {
  508. color: #d81e06;
  509. }
  510. .el-card__header {
  511. padding-top: 14px;
  512. padding-bottom: 14px;
  513. background-color: #f5f5f6;
  514. }
  515. .order_file {
  516. .el-card__body {
  517. padding: 22px 0 0 0;
  518. text-align: center;
  519. }
  520. }
  521. .order_steps {
  522. .el-step__icon-inner {
  523. display: none;
  524. }
  525. }
  526. .order_record {
  527. .el-card__body {
  528. padding: 0;
  529. }
  530. .el-tabs__header {
  531. padding: 0px 20px;
  532. background-color: #f5f5f6;
  533. .el-tabs__item {
  534. font-size: 16px;
  535. height: 47px;
  536. line-height: 47px;
  537. }
  538. }
  539. }
  540. }
  541. </style>
  542. <style rel="stylesheet/scss" lang="scss" scoped>
  543. /deep/.el-rate__icon {
  544. font-size: 30px;
  545. }
  546. .order_detail {
  547. .imglist {
  548. display: inline-block;
  549. vertical-align: middle;
  550. }
  551. .imglist img {
  552. width: 72px;
  553. height: 72px;
  554. margin-right: 15px;
  555. vertical-align: middle;
  556. }
  557. .imglist a {
  558. margin-right: 15px;
  559. color: #64b3e7;
  560. }
  561. .order_detail_body {
  562. margin-bottom: 20px;
  563. .round_img {
  564. width: 90px;
  565. height: 90px;
  566. border-radius: 50%;
  567. overflow: hidden;
  568. margin: 14px;
  569. img {
  570. width: 100%;
  571. height: 100%;
  572. }
  573. }
  574. .title {
  575. font-size: 20px;
  576. .title_icon {
  577. color: #d81e06;
  578. font-size: 16px;
  579. margin-right: 20px;
  580. }
  581. }
  582. .title_sub {
  583. font-size: 14px;
  584. color: #666666;
  585. }
  586. .order_detail_content {
  587. background-color: #f5f5f6;
  588. padding-top: 20px;
  589. color: #4c4c4c;
  590. font-size: 14px;
  591. .order_detail_item {
  592. margin-bottom: 10px;
  593. .order_content {
  594. margin-top: 10px;
  595. }
  596. .order_file {
  597. position: relative;
  598. cursor: pointer;
  599. .img_mask {
  600. display: none;
  601. position: absolute;
  602. left: 0px;
  603. top: 0px;
  604. background-color: rgba(0, 0, 0, 0.3);
  605. width: 100%;
  606. height: 22px;
  607. text-align: right;
  608. z-index: 1;
  609. i {
  610. font-size: 20px;
  611. line-height: 22px;
  612. display: inline-block;
  613. margin-right: 15px;
  614. color: #fff;
  615. }
  616. }
  617. p {
  618. margin-top: 5px;
  619. padding-left: 14px;
  620. padding-right: 14px;
  621. white-space: nowrap;
  622. overflow: hidden;
  623. text-overflow: ellipsis;
  624. }
  625. .file_icon {
  626. height: 68px;
  627. line-height: 68px;
  628. font-size: 68px;
  629. color: #409eff;
  630. }
  631. }
  632. .order_file:hover .img_mask {
  633. display: block;
  634. }
  635. }
  636. }
  637. }
  638. .green {
  639. color: #00c1de;
  640. }
  641. .done {
  642. color: #198120;
  643. }
  644. .red {
  645. color: #d81e06;
  646. }
  647. .yellow {
  648. color: #e6a23c;
  649. }
  650. .order_steps {
  651. // height: 240px;
  652. .el-step__icon-inner {
  653. display: none;
  654. }
  655. }
  656. .tab_body {
  657. padding: 0 20px 20px 20px;
  658. }
  659. }
  660. </style>