details.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862
  1. <template>
  2. <div class="page" v-loading="pageLoading">
  3. <el-form label-width="130px">
  4. <div class="content-detail" v-show="num == 1">
  5. <div class="basic-details">
  6. <HeaderTitle title="基本信息" size="16px">
  7. <el-button
  8. type="primary"
  9. @click="
  10. $router.push({
  11. path: '/maintenance/patrol',
  12. query: { title: '工单' }
  13. })
  14. "
  15. >
  16. 返回</el-button
  17. >
  18. </HeaderTitle>
  19. <el-row>
  20. <el-col :span="24">
  21. <el-col :span="8">
  22. <el-form-item label="计划单号">
  23. <span> {{ infoData.planCode }} </span>
  24. </el-form-item>
  25. </el-col>
  26. <el-col :span="8">
  27. <el-form-item label="来源计划配置单号">
  28. <span> {{ infoData.planConfigCode }} </span>
  29. </el-form-item>
  30. </el-col>
  31. <el-col :span="8">
  32. <el-form-item label="名称">
  33. <span> {{ infoData.planName }} </span>
  34. </el-form-item>
  35. </el-col>
  36. <el-col :span="8">
  37. <el-form-item label="指定执行人">
  38. <span v-if="infoData.executeUsers">
  39. <span v-if="executeUserType == 1">
  40. {{
  41. infoData.executeUsers
  42. .map((i) => {
  43. return `${i.teamName}`;
  44. })
  45. .join(',')
  46. }}
  47. </span>
  48. <span v-else>
  49. {{
  50. infoData.executeUsers
  51. .map((i) => {
  52. return `${i.groupName}-${i.userName}`;
  53. })
  54. .join(',')
  55. }}
  56. </span>
  57. </span>
  58. </el-form-item>
  59. </el-col>
  60. <el-col :span="8">
  61. <el-form-item label="实际执行人">
  62. <span v-if="infoData.executeUserName">
  63. {{ infoData.executeGroupName }}-{{
  64. infoData.executeUserName
  65. }}
  66. </span>
  67. </el-form-item>
  68. </el-col>
  69. <el-col :span="8">
  70. <el-form-item label="计划完成时长">
  71. <span v-if="infoData.duration >= 0"
  72. >{{ infoData.duration }}分钟</span
  73. >
  74. </el-form-item>
  75. </el-col>
  76. <el-col :span="8">
  77. <el-form-item label="周期">
  78. <span v-if="infoData.ruleInfo">
  79. {{ infoData.ruleInfo.cycleValue
  80. }}{{
  81. getDictValue('巡点检周期', infoData.ruleInfo.cycleType)
  82. }}
  83. </span>
  84. </el-form-item>
  85. </el-col>
  86. <el-col :span="8">
  87. <el-form-item label="设备分类">
  88. <span> {{ infoData.categoryLevelName }} </span>
  89. </el-form-item>
  90. </el-col>
  91. <el-col :span="8">
  92. <el-form-item label="规则名称">
  93. <span>
  94. {{ infoData.ruleName }}
  95. </span>
  96. </el-form-item>
  97. </el-col>
  98. <el-col :span="8">
  99. <el-form-item label="创建部门">
  100. <span> {{ infoData.createGroupName }} </span>
  101. </el-form-item>
  102. </el-col>
  103. <el-col :span="8">
  104. <el-form-item label="创建人">
  105. <span> {{ infoData.createUserName }} </span>
  106. </el-form-item>
  107. </el-col>
  108. <el-col :span="8">
  109. <el-form-item label="创建时间">
  110. <span> {{ infoData.createTime }} </span>
  111. </el-form-item>
  112. </el-col>
  113. <el-col :span="8">
  114. <el-form-item label="实际开始时间">
  115. <span> {{ infoData.acceptTime }} </span>
  116. </el-form-item>
  117. </el-col>
  118. <el-col :span="8">
  119. <el-form-item label="实际完成时间">
  120. <span> {{ infoData.finishTime }} </span>
  121. </el-form-item>
  122. </el-col>
  123. <el-col :span="8">
  124. <el-form-item label="报工时间">
  125. <span> {{ infoData.reportTime }} </span>
  126. </el-form-item>
  127. </el-col>
  128. <el-col :span="24">
  129. <el-form-item label="备注">
  130. <span> {{ infoData.remark }} </span>
  131. </el-form-item>
  132. </el-col>
  133. </el-col>
  134. <!-- <el-col :span="8">
  135. <img :src="data.imageUrl" alt="" />
  136. </el-col> -->
  137. </el-row>
  138. </div>
  139. <!-- 巡点检、执行信息 -->
  140. <!-- <div class="execute_info">
  141. <div class="execute_info_title">
  142. <span>执行信息</span>
  143. <span
  144. >执行人:{{ data.executeUserName }}
  145. <i style="margin: 0 18px"></i> 执行时间:{{
  146. data.acceptTime
  147. }}</span
  148. >
  149. </div>
  150. <HeaderTitle title="执行信息" size="16px"></HeaderTitle>
  151. <el-row class="execute_row">
  152. <el-col :span="8" class="column">
  153. <span class="label">确认结果:</span>
  154. <span class="value">{{
  155. infoData.status ? infoData.status.descp : ''
  156. }}</span>
  157. </el-col>
  158. <el-col :span="8" class="column">
  159. <span class="label">实际开始时间:</span>
  160. <span class="value">{{ infoData.acceptTime }}</span>
  161. </el-col>
  162. <el-col :span="8" class="column">
  163. <span class="label">实际结束时间:</span>
  164. <span class="value">{{ infoData.finishTime }}</span>
  165. </el-col>
  166. <el-col :span="24" class="column">
  167. <span class="label">超期原因:</span>
  168. <span class="value">{{ infoData.timeoutCause }}</span>
  169. </el-col>
  170. </el-row>
  171. </div> -->
  172. <!-- 巡点检、保养设备 -->
  173. <div class="maintain_equipment_info">
  174. <HeaderTitle title="巡点检设备" size="16px"></HeaderTitle>
  175. <div class="maintain_equipment_info_content">
  176. <div
  177. class="equipment_item"
  178. v-for="item in infoData.deviceList"
  179. :key="item.id"
  180. >
  181. <div class="equipment_info" v-if="item.substance">
  182. <div class="item_info">
  183. <span class="item_label">设备编码</span>
  184. <span class="item_value">{{ item.substance.code }}</span>
  185. </div>
  186. <div class="item_info">
  187. <span class="item_label">设备名称</span>
  188. <span class="item_value">{{ item.substance.name }}</span>
  189. </div>
  190. <div class="item_info">
  191. <span class="item_label">设备型号</span>
  192. <span class="item_value">{{ item.substance.model }}</span>
  193. </div>
  194. <div class="item_info">
  195. <span class="item_label">设备位置</span>
  196. <span class="item_value">{{
  197. item.substance.positionNames
  198. }}</span>
  199. </div>
  200. </div>
  201. <p>操作事项</p>
  202. <div class="ruleMatters_box">
  203. <el-table :data="item.workItems" border>
  204. <el-table-column label="序号" width="50">
  205. <template slot-scope="scope">
  206. <span>{{ scope.$index + 1 }}</span>
  207. </template>
  208. </el-table-column>
  209. <el-table-column
  210. label="零部件编码"
  211. prop="categoryCode"
  212. width="100"
  213. >
  214. <template slot-scope="scope">
  215. <div>
  216. <span>{{ scope.row.categoryCode }}</span>
  217. </div>
  218. </template>
  219. </el-table-column>
  220. <el-table-column
  221. label="零部件名称"
  222. prop="categoryName"
  223. width="100"
  224. >
  225. <template slot-scope="scope">
  226. <div>
  227. <span>{{ scope.row.categoryName }}</span>
  228. </div>
  229. </template>
  230. </el-table-column>
  231. <el-table-column label="事项" prop="name" width="100">
  232. <template slot-scope="scope">
  233. <div>
  234. <span>{{ scope.row.name }}</span>
  235. </div>
  236. </template>
  237. </el-table-column>
  238. <el-table-column label="内容" prop="content" width="300">
  239. <template slot-scope="scope">
  240. <div>
  241. <span>{{ scope.row.content }}</span>
  242. </div>
  243. </template>
  244. </el-table-column>
  245. <el-table-column label="操作指导" prop="operationGuide">
  246. <template slot-scope="scope">
  247. <div class="operationGuide_box">
  248. <div class="left_content">
  249. <template v-if="scope.row.operationGuide">
  250. <div
  251. v-for="(item, index) in scope.row.operationGuide
  252. .toolList"
  253. :key="item.id"
  254. >{{ index + 1 }}.{{ item.name }}</div
  255. >
  256. </template>
  257. </div>
  258. <div class="line"></div>
  259. <div class="right_content">
  260. <template v-if="scope.row.operationGuide">
  261. <div
  262. v-for="(item, index) in scope.row.operationGuide
  263. .procedureList"
  264. :key="item.id"
  265. >{{ index + 1 }}.{{ item.content }}</div
  266. >
  267. </template>
  268. </div>
  269. </div>
  270. </template>
  271. </el-table-column>
  272. <el-table-column label="标准" prop="norm" width="100">
  273. <template slot-scope="scope">
  274. <div>
  275. <span>{{ scope.row.norm }}</span>
  276. </div>
  277. </template>
  278. </el-table-column>
  279. <el-table-column label="状态" prop="status" width="100">
  280. <template slot-scope="scope">
  281. <div>
  282. <span>{{ options[scope.row.status] }}</span>
  283. </div>
  284. </template>
  285. </el-table-column>
  286. <el-table-column
  287. label="现场照片"
  288. prop="photoList"
  289. width="300"
  290. >
  291. <template slot-scope="scope">
  292. <div>
  293. <el-image
  294. v-for="imgItem in scope.row.photoList"
  295. :key="imgItem"
  296. style="width: 100px; height: 100px"
  297. :src="imgItem"
  298. :preview-src-list="scope.row.photoList"
  299. >
  300. </el-image>
  301. </div>
  302. </template>
  303. </el-table-column>
  304. <el-table-column label="结果" prop="result" width="200">
  305. </el-table-column>
  306. </el-table>
  307. </div>
  308. <!-- <div class="matter_info">
  309. <el-table :data="item.workItems || []" border>
  310. <el-table-column label="序号" align="center" width="80">
  311. <template slot-scope="scope">
  312. <span>{{ scope.$index + 1 }}</span>
  313. </template>
  314. </el-table-column>
  315. <el-table-column label="事项" prop="item" />
  316. <el-table-column label="内容" prop="content" />
  317. <el-table-column label="标准" prop="standard" />
  318. </el-table>
  319. </div> -->
  320. </div>
  321. <!-- <div class="btnbox" v-if="$route.query.isshow">
  322. <el-button class="confirm-btn" type="danger" plain @click="reject"
  323. >驳回</el-button
  324. >
  325. <el-button class="confirm-btn" type="success" plain @click="pass"
  326. >通过</el-button
  327. >
  328. <el-button class="cancel-btn">关闭</el-button>
  329. </div> -->
  330. <!-- <div class="textbox" v-if="showtext">
  331. <el-input
  332. type="textarea"
  333. placeholder="请输入驳回原因"
  334. v-model="cause"
  335. maxlength="30"
  336. rows="5"
  337. show-word-limit
  338. >
  339. </el-input>
  340. <div class="textbtnbox">
  341. <el-button size="small" round @click="cancelreject"
  342. >取消</el-button
  343. >
  344. <el-button size="small" round @click="surereject"
  345. >提交</el-button
  346. >
  347. </div>
  348. </div> -->
  349. </div>
  350. </div>
  351. <HeaderTitle title="备品备件申请单" size="16px"></HeaderTitle>
  352. <editd :id="infoData.id" />
  353. <!-- 巡点检、缺陷设备报修记录 -->
  354. <!-- <div class="repair_notes">
  355. <HeaderTitle title="缺陷设备报修记录" size="16px"></HeaderTitle>
  356. <div class="repair_notes_equipment_item">
  357. <el-row class="equipment_item_tilte">
  358. <el-col :span="8">
  359. <span class="label">设备名称:</span>
  360. <span>{{ repairNotes.equiName }}</span>
  361. </el-col>
  362. <el-col :span="8">
  363. <span class="label">规格型号:</span>
  364. <span>{{ repairNotes.equiModel }}</span>
  365. </el-col>
  366. <el-col :span="8">
  367. <span class="label">设备编码:</span>
  368. <span>{{ repairNotes.equiCode }}</span>
  369. </el-col>
  370. </el-row>
  371. <div class="main_info">
  372. <div>
  373. <span>报修记录编号:</span>
  374. <span>{{ repairNotes.repairsCode }}</span>
  375. </div>
  376. <div>
  377. <span>故障描述:</span>
  378. <span>{{ repairNotes.repairsDescription }}</span>
  379. </div>
  380. <div>
  381. <span>处理进度:</span>
  382. <span>{{ statusObj[repairNotes.status] }}</span>
  383. </div>
  384. </div>
  385. </div>
  386. </div> -->
  387. </div>
  388. </el-form>
  389. </div>
  390. </template>
  391. <script>
  392. import dictMixins from '@/mixins/dictMixins';
  393. import { getWordOrderDetail } from '@/api/maintenance/patrol_maintenance';
  394. import editd from '@/views/sparePartsApply/components/editd';
  395. export default {
  396. components: {
  397. editd
  398. },
  399. mixins: [dictMixins],
  400. data() {
  401. return {
  402. options: {
  403. 0: '未定义',
  404. 1: '正常',
  405. '-1': '缺陷'
  406. },
  407. num: 1,
  408. infoData: {},
  409. dialogVisible: false,
  410. data: {},
  411. repairNotes: {},
  412. pageLoading: false,
  413. typeValue: null,
  414. contract_type: [],
  415. status: [
  416. {
  417. value: true,
  418. label: '失效'
  419. },
  420. {
  421. value: false,
  422. label: '生效'
  423. }
  424. ],
  425. ruleItem: [],
  426. cause: '',
  427. showtext: false,
  428. from: null,
  429. executeUserType: ''
  430. };
  431. },
  432. created() {
  433. this.requestDict('巡点检周期');
  434. this.executeUserType = this.$route.query.executeUserType;
  435. this.getInfo();
  436. },
  437. methods: {
  438. // getStatus: useDictLabel(patrolMatterStatus),
  439. delete() {},
  440. // 点击切换事件
  441. tab(index) {
  442. this.num = index;
  443. },
  444. goBack() {
  445. window.sessionStorage.setItem('patrolTabType', 'work');
  446. if (this.form) {
  447. this.$router.push({
  448. path: '/workspace/workOrder',
  449. query: { activeName: 'polling' }
  450. });
  451. } else {
  452. this.$router.go(-1);
  453. }
  454. },
  455. // 表格数据
  456. getInfo() {
  457. this.pageLoading = true;
  458. getWordOrderDetail(this.$route.query.id)
  459. .then((data) => {
  460. data.deviceList.forEach((item) => {
  461. item.workItems.forEach((val) => {
  462. val.photoList.map((url) => {
  463. return window.location.origin + url;
  464. });
  465. });
  466. });
  467. this.infoData = data;
  468. // if (res.success) {
  469. // this.data = res.data;
  470. // this.data.planEquiList = this.data.planEquiList.filter(
  471. // (item) => item.itemList && item.itemList.length > 0
  472. // );
  473. // // 获取 缺陷设备报修记录
  474. // const repairId = res.data.planEquiList[0].repairId;
  475. // if (repairId) {
  476. // this.getRepairNotes(repairId);
  477. // }
  478. // }
  479. this.pageLoading = false;
  480. })
  481. .catch(() => {
  482. this.pageLoading = false;
  483. });
  484. },
  485. // 获取 缺陷设备报修记录
  486. async getRepairNotes(repairId) {
  487. const res = await repair.getInfo(repairId);
  488. if (res?.success) {
  489. console.log('缺陷设备报修记录:', res.data);
  490. this.repairNotes = res.data;
  491. }
  492. },
  493. //通过按钮事件
  494. pass() {
  495. let params = {
  496. planId: this.$route.query.id,
  497. checked: 2,
  498. myHandleId: this.$route.query.dbid,
  499. cause: this.cause,
  500. type: 2, //1维修;2保养,巡点检
  501. handleType: 0 //办理类型(0 审批 1 验收)
  502. };
  503. sendAudit(params).then((res) => {
  504. if (res.success) {
  505. this.$message.success('审批通过!');
  506. this.$router.back();
  507. }
  508. });
  509. },
  510. //驳回按钮事件
  511. reject() {
  512. this.showtext = true;
  513. },
  514. cancelreject() {
  515. this.showtext = false;
  516. this.cause = '';
  517. },
  518. surereject() {
  519. if (!this.cause) {
  520. this.$message.info('请填写驳回原因!');
  521. } else {
  522. let params = {
  523. id: this.$route.query.id,
  524. checked: 0,
  525. myHandleId: this.$route.query.dbid,
  526. cause: this.cause,
  527. type: 2, //1维修;2保养,巡点检
  528. handleType: 0 //办理类型(0 审批 1 验收)
  529. };
  530. sendAudit(params).then((res) => {
  531. if (res.success) {
  532. this.$message.error('审批驳回!');
  533. this.$router.back();
  534. }
  535. });
  536. }
  537. }
  538. }
  539. };
  540. </script>
  541. <style lang="scss" scoped>
  542. // @import '@/assets/css/oaa.scss';
  543. .page {
  544. padding: 10px;
  545. }
  546. .page-title {
  547. background: #fff;
  548. font-size: 18px;
  549. padding: 6px 20px;
  550. font-weight: 500;
  551. .page-title-div {
  552. margin: 5px 0;
  553. height: 30px;
  554. line-height: 30px;
  555. border-bottom: 1px solid #eaeefb;
  556. .title-div-no {
  557. margin-left: 10px;
  558. font-weight: 400;
  559. color: #909090;
  560. font-size: 14px;
  561. }
  562. }
  563. }
  564. .page-data {
  565. padding-top: 10px;
  566. }
  567. .content-detail {
  568. background: #fff;
  569. padding: 20px;
  570. }
  571. .flows {
  572. .flow-left {
  573. width: 156px;
  574. height: 70px;
  575. border: 1px dashed #ccc;
  576. padding: 10px;
  577. }
  578. .row {
  579. margin-top: 13px;
  580. }
  581. }
  582. .basic-details-title {
  583. margin-bottom: 12px;
  584. margin-top: 20px;
  585. border-bottom: 1px solid #1890ff;
  586. padding-bottom: 8px;
  587. display: flex;
  588. justify-content: space-between;
  589. }
  590. .basic-details-title .border-span {
  591. height: 18px;
  592. font-size: 16px;
  593. border-left: 4px solid #1890ff;
  594. padding-left: 8px;
  595. font-weight: 500;
  596. }
  597. .heade-right {
  598. // float: right;
  599. .heade-right-content {
  600. margin-right: 12px;
  601. font-size: 14px;
  602. display: inline-block;
  603. .content-key {
  604. color: #3e3e3e;
  605. margin-right: 12px;
  606. font-weight: 500;
  607. }
  608. .content-value {
  609. color: #000;
  610. }
  611. }
  612. }
  613. .list-title {
  614. font-size: 14px;
  615. color: #3e3e3e;
  616. margin: 10px 0px;
  617. }
  618. .goods {
  619. background: #a30014;
  620. border: 1px solid #a30014;
  621. }
  622. .details-title {
  623. display: inline-block;
  624. color: #6e6e6e;
  625. font-size: 14px;
  626. font-weight: bold;
  627. margin-right: 13px;
  628. width: 70px;
  629. text-align: right;
  630. }
  631. .details-con {
  632. color: #3e3e3e;
  633. font-size: 14px;
  634. }
  635. .detailed-tab {
  636. margin-left: 10px;
  637. margin-top: 10px;
  638. }
  639. ::v-deep .el-form-item--medium .el-form-item__label {
  640. color: #6e6e6e;
  641. font-size: 14px;
  642. font-weight: bold;
  643. }
  644. .warehouse {
  645. display: block;
  646. border-bottom: 1px solid #eaeefb;
  647. padding: 10px 0;
  648. }
  649. .box-card {
  650. .store-box {
  651. width: 80%;
  652. .store-box-span {
  653. display: inline-block;
  654. font-size: 14px;
  655. height: 50px;
  656. width: 50px;
  657. text-align: center;
  658. line-height: 50px;
  659. color: #fff;
  660. margin: 2px;
  661. }
  662. }
  663. }
  664. .vacant {
  665. background: #3196fb;
  666. }
  667. .inUse {
  668. background: #157a2c;
  669. }
  670. .invalid {
  671. background: #cccccc;
  672. }
  673. .full {
  674. background: #cc3300;
  675. }
  676. .maintain_equipment_info {
  677. .maintain_equipment_info_title {
  678. border-bottom: 1px solid #1890ff;
  679. padding-bottom: 3px;
  680. margin-bottom: 20px;
  681. > span {
  682. display: inline-block;
  683. line-height: 16px;
  684. border-left: 6px solid #1890ff;
  685. padding-left: 6px;
  686. }
  687. }
  688. .maintain_equipment_info_content {
  689. padding: 0 30px;
  690. .equipment_item {
  691. border: 1px solid #ccc;
  692. font-size: 14px;
  693. padding: 15px;
  694. margin-bottom: 30px;
  695. .equipment_info {
  696. display: flex;
  697. flex-wrap: wrap;
  698. border: 1px solid #ddd;
  699. .item_info {
  700. width: 33.33%;
  701. height: 24px;
  702. line-height: 24px;
  703. display: flex;
  704. .item_label {
  705. width: 90px;
  706. text-align: center;
  707. background-color: #f2f2f2;
  708. font-weight: 700;
  709. }
  710. .item_value {
  711. border-bottom: 1px solid #f2f2f2;
  712. flex: 1;
  713. padding-left: 5px;
  714. }
  715. &:last-child {
  716. width: 100%;
  717. .item_value {
  718. border: 0;
  719. }
  720. }
  721. }
  722. }
  723. > p {
  724. margin-top: 20px;
  725. color: #797979;
  726. }
  727. .matter_info {
  728. ::v-deep .el-table {
  729. th.el-table__cell {
  730. background-color: #f2f2f2;
  731. padding: 0;
  732. }
  733. td.el-table__cell {
  734. padding: 0;
  735. }
  736. }
  737. }
  738. .ruleMatters_box {
  739. flex: 3;
  740. height: 100%;
  741. display: flex;
  742. flex-direction: column;
  743. .divider {
  744. flex: 0 0 50px;
  745. .title {
  746. height: 35px;
  747. }
  748. }
  749. .el-table {
  750. overflow: auto;
  751. .operationGuide_box {
  752. width: 100%;
  753. display: flex;
  754. position: relative;
  755. .left_content {
  756. flex: 0 0 300px;
  757. padding: 10px;
  758. margin-right: 10px;
  759. overflow-y: auto;
  760. }
  761. .line {
  762. position: absolute;
  763. top: -10px;
  764. left: 300px;
  765. bottom: -10px;
  766. height: 110%;
  767. width: 1px;
  768. background-color: #ededed;
  769. }
  770. .right_content {
  771. flex: 1;
  772. padding: 10px;
  773. overflow-y: auto;
  774. }
  775. }
  776. }
  777. }
  778. }
  779. }
  780. }
  781. .execute_info {
  782. margin: 30px 0;
  783. .execute_info_title {
  784. border-bottom: 1px solid #1890ff;
  785. padding-bottom: 3px;
  786. margin-bottom: 20px;
  787. display: flex;
  788. justify-content: space-between;
  789. > span:first-child {
  790. line-height: 16px;
  791. border-left: 6px solid #1890ff;
  792. padding-left: 6px;
  793. }
  794. }
  795. .execute_row {
  796. padding: 0 30px;
  797. .column {
  798. display: flex;
  799. font-size: 14px;
  800. margin-bottom: 20px;
  801. .label {
  802. // width: 110px;
  803. text-align: center;
  804. font-weight: 700;
  805. }
  806. }
  807. }
  808. }
  809. .repair_notes {
  810. .repair_notes_title {
  811. border-bottom: 1px solid #1890ff;
  812. padding-bottom: 3px;
  813. margin-bottom: 20px;
  814. > span {
  815. display: inline-block;
  816. line-height: 16px;
  817. border-left: 6px solid #1890ff;
  818. padding-left: 6px;
  819. }
  820. }
  821. .repair_notes_equipment_item {
  822. padding: 0 20px;
  823. .equipment_item_tilte {
  824. background-color: #f7f7f7;
  825. height: 36px;
  826. line-height: 36px;
  827. .label {
  828. font-weight: 700;
  829. }
  830. }
  831. .main_info {
  832. font-size: 14px;
  833. margin-top: 15px;
  834. > div {
  835. margin-bottom: 10px;
  836. }
  837. }
  838. }
  839. }
  840. .btnbox {
  841. display: flex;
  842. justify-content: center;
  843. }
  844. ::v-deep .el-button {
  845. padding: 10px 20px;
  846. margin-right: 10px;
  847. }
  848. .textbtnbox {
  849. margin-top: 10px;
  850. display: flex;
  851. justify-content: center;
  852. }
  853. </style>