人民医院前端

workOrderDetail.vue 21KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672
  1. <template>
  2. <page-meta :root-font-size="getFontSizeValue"></page-meta>
  3. <view class="wrapper">
  4. <view class="detailContent">
  5. <view class="contentTable">
  6. <text class="contentTitle">工单编号:</text>
  7. <text class="contentText">{{ detailContentData.F_WorkOrderCode }}</text>
  8. <!-- <text class="textState" v-show="detailContentData.StateName ">{{ detailContentData.StateName }}</text>
  9. <text class="textState fx" v-show="backState == 1">返修</text> -->
  10. </view>
  11. <view class="contentTable" v-show="detailContentData.StateName ">
  12. <text class="contentTitle">工单状态:</text>
  13. <text class="textState" style="margin-left: 10px;">{{ detailContentData.StateName }}</text>
  14. <text class="textState fx" v-show="backState == 1">返修</text>
  15. </view>
  16. <view class="contentTable">
  17. <text class="contentTitle">工单类型:</text>
  18. <text
  19. class="contentText">{{ $mHelper.findParents(orderTypeList,detailContentData.F_WorkOrderCategory)}}</text>
  20. </view>
  21. <view class="contentTable" v-if="typeName.indexOf('设备类')>=0">
  22. <text class="contentTitle">设备资产编码:</text>
  23. <text class="contentText">{{ detailContentData.F_DeviceEncode }}</text>
  24. </view>
  25. <view class="contentTable">
  26. <text class="contentTitle">上报科室:</text>
  27. <text
  28. class="contentText">{{ $mHelper.findParents(departList,detailContentData.F_ApplicationDept)}}</text>
  29. </view>
  30. <view class="contentTable">
  31. <text class="contentTitle">上报时间:</text>
  32. <text class="contentText">{{ detailContentData.F_CreateTime }}</text>
  33. </view>
  34. <view class="contentTable">
  35. <text class="contentTitle">上报地点:</text>
  36. <text class="contentText">{{ detailContentData.F_PlaceOfRepair }}</text>
  37. </view>
  38. <view class="contentTable">
  39. <text class="contentTitle">报修人员:</text>
  40. <text class="contentText">{{ detailContentData.applicantname}}</text>
  41. </view>
  42. <view class="contentTable">
  43. <text class="contentTitle">联系电话:</text>
  44. <text class="contentText" style="margin-top: -5px;">{{ detailContentData.F_Phone }} <uni-icons @click="callHandle(detailContentData.F_Phone)" class="frContentText" type="phone" size="30"></uni-icons></text>
  45. </view>
  46. <view class="contentTable">
  47. <view class="contentTitle">报修内容:</view>
  48. <view class="contentText">{{ detailContentData.F_Content }}</view>
  49. </view>
  50. <view class="contentTable">
  51. <text class="contentTitle">维修科室:</text>
  52. <text
  53. class="contentText">{{ $mHelper.findParents(departList,detailContentData.F_MaintenanceDept) }}</text>
  54. </view>
  55. <view class="contentTable">
  56. <text class="contentTitle">维修人员:</text>
  57. <text class="contentText">{{ detailContentData.MaintenancerName}}</text>
  58. </view>
  59. <view class="contentTable">
  60. <text class="contentTitle">联系方式:</text>
  61. <text class="contentText" style="margin-top: -5px;">{{ detailContentData.MaintenancerPhone }} <uni-icons @click="callHandle(detailContentData.MaintenancerPhone)" class="frContentText" type="phone" size="30" v-if="detailContentData.MaintenancerPhone"></uni-icons></text>
  62. </view>
  63. <view class="contentTable">
  64. <text class="contentTitle">超时时限:</text>
  65. <text class="contentText">{{ detailContentData.GapTime }}</text>
  66. </view>
  67. <view class="contentTable">
  68. <text class="contentTitle">紧急程度:</text>
  69. <text class="contentText">{{ detailContentData.F_EmergencyTypes }}</text>
  70. </view>
  71. <view class="contentTable">
  72. <text class="contentTitle">接单时间:</text>
  73. <text class="contentText">{{ detailContentData.F_AcceptTime }}</text>
  74. </view>
  75. <view class="contentTable">
  76. <text class="contentTitle">完成时间:</text>
  77. <text class="contentText">{{ detailContentData.F_Endtime }}</text>
  78. </view>
  79. <view class="contentTable">
  80. <text class="contentTitle">完成时长:</text>
  81. <text class="contentText">{{ detailContentData.SpendTime }}</text>
  82. </view>
  83. <view class="contentTable" v-show="backState == 1">
  84. <text class="contentTitle">返修内容:</text>
  85. <text class="contentText">{{ backCon }}</text>
  86. </view>
  87. <view class="contentTable">
  88. <text class="contentTitle">图<span class="place"></span>片:</text>
  89. <view class="contentText" style="margin-top: 10px;">
  90. <uni-file-picker readonly :value="getFileData(detailContentData.FileUrl)" :imageStyles="imageStyles" file-mediatype="image" />
  91. </view>
  92. </view>
  93. </view>
  94. <yiLine>
  95. <view></view>
  96. </yiLine>
  97. <view class="operationButton" v-show="equipmentCon && equipmentCon.length != 0">
  98. <view>
  99. <text class="operationButtonTitle">耗材信息</text>
  100. <table class="equipmentInfo">
  101. <thead style="background-color: #fafafa;">
  102. <tr class="trCon">
  103. <td class="tdCon">耗材名称</td>
  104. <td class="tdCon">单价</td>
  105. <td class="tdCon">数量</td>
  106. <td class="tdCon">总价</td>
  107. </tr>
  108. </thead>
  109. <tbody>
  110. <tr class="trCon" v-for="item in equipmentCon">
  111. <td class="tdCon" v-if="!item.F_EquipNumber">{{item.F_EquipName}}</td>
  112. <td class="tdCon" v-if="item.F_EquipNumber">{{item.F_EquipName}}({{item.F_EquipNumber}})</td>
  113. <td class="tdCon">{{item.F_EquipPrice}}</td>
  114. <td class="tdCon">{{item.F_EquipAmount}}</td>
  115. <td class="tdCon">{{item.F_EquipAmount*item.F_EquipPrice}}</td>
  116. </tr>
  117. </tbody>
  118. </table>
  119. </view>
  120. </view>
  121. <view class="operationButton" v-show="orderButtonData && orderButtonData.length != 0">
  122. <!-- <view class="operationButton"> -->
  123. <view>
  124. <text class="operationButtonTitle">操作</text>
  125. <buttonsComponents class="buttons" :order-button-data="orderButtonData" :wid="workorderid" :typeName="$mHelper.findParents(orderTypeList,detailContentData.F_WorkOrderCategory)"
  126. :orderType="detailContentData.F_WorkOrderCategory" :departid="departid" :applicationDept="applicationDept" :firstType="$mHelper.stateComm(3)"
  127. :maintenancer="$mHelper.findUserName(userCodeList,detailContentData.F_Maintenancer) " />
  128. </view>
  129. </view>
  130. <yiLine>
  131. <view></view>
  132. </yiLine>
  133. <view style="background-color: #fff;padding: 17px 0px;">
  134. <view class="segmentedControlWrapper">
  135. <uni-segmented-control :current="segmenter.current" :values="segmenter.items"
  136. @clickItem="onClickSegmentedControl" styleType="text" activeColor="#007aff" />
  137. </view>
  138. <view class="handleProcess">
  139. <view v-show="current == 0">
  140. <view class="detailContent showType" v-for="item in handleProcessListData" :key=item.F_Id>
  141. <view class="contentTable">
  142. <text class="contentTitle">处理部门:</text>
  143. <text class="contentText">{{ $mHelper.findParents(departList,item.F_MaintenanceDept) }}</text>
  144. </view>
  145. <view class="contentTable">
  146. <text class="contentTitle">处理人员:</text>
  147. <text
  148. class="contentText">{{ $mHelper.findUserName(userCodeList,detailContentData.F_Maintenancer) }}</text>
  149. </view>
  150. <view class="contentTable">
  151. <text class="contentTitle">维修时间:</text>
  152. <text class="contentText">{{ item.F_ProcessingTime }}</text>
  153. </view>
  154. <view class="contentTable">
  155. <text class="contentTitle">完成状态:</text>
  156. <text class="contentText">{{ item.dealtype }}</text>
  157. </view>
  158. <view class="contentTable">
  159. <text class="contentTitle">处理结果:</text>
  160. <text class="contentText">{{ item.F_Result }}</text>
  161. </view>
  162. <view class="contentTable">
  163. <text class="contentTitle">处理方式:</text>
  164. <text class="contentText">{{ item.F_FinishType }}</text>
  165. </view>
  166. <view class="contentTable">
  167. <text class="contentTitle">异常原因:</text>
  168. <text class="contentText">{{ item.F_ExceptionTypeName }}</text>
  169. </view>
  170. <view class="contentTable" v-if="item.FileUrl && item.FileUrl.length > 0">
  171. <text class="contentTitle">维修前附件:</text>
  172. <uni-file-picker readonly :value="getFileData(item.FileUrl)" :imageStyles="imageStyles"
  173. file-mediatype="image" />
  174. </view>
  175. <view class="contentTable" v-if="detailContentData.PictureUrl && detailContentData.PictureUrl.length > 0">
  176. <text class="contentTitle">维修后附件:</text>
  177. <uni-file-picker readonly :value="getFileData(detailContentData.PictureUrl)" :imageStyles="imageStyles"
  178. file-mediatype="image" />
  179. </view>
  180. </view>
  181. <view class="contentTable noCon" v-show="!handleProcessListData || handleProcessListData.length == 0">
  182. 暂时无相关记录
  183. </view>
  184. </view>
  185. <view v-show="current == 1">
  186. <view class="detailContent showType" v-for="item in cooperationDate" :key=item.F_Id >
  187. <view class="contentTable">
  188. <text class="contentTitle">工单编号:</text>
  189. <text class="contentText">{{ item.F_WorkOrderCode }}</text>
  190. </view>
  191. <view class="contentTable">
  192. <text class="contentTitle">协作方式:</text>
  193. <text class="contentText">{{ item.Mode }}</text>
  194. </view>
  195. <view class="contentTable">
  196. <text class="contentTitle">接单部门:</text>
  197. <text class="contentText">{{ $mHelper.findParents(departList,item.F_MaintenanceDept)}}</text>
  198. </view>
  199. <view class="contentTable">
  200. <text class="contentTitle">状<span class="place"></span>态:</text>
  201. <text class="contentText">{{ item.StateName }}</text>
  202. </view>
  203. <view class="contentTable">
  204. <text class="contentTitle">内<span class="place"></span>容:</text>
  205. <text class="contentText">{{ item.F_Content }}</text>
  206. </view>
  207. <view class="contentTable">
  208. <text class="contentTitle">创建时间:</text>
  209. <text class="contentText">{{ item.F_CreateTime }}</text>
  210. </view>
  211. </view>
  212. <view class="contentTable noCon" v-show="!cooperationDate || cooperationDate.length == 0">
  213. 暂时无相关记录
  214. </view>
  215. </view>
  216. <view v-show="current == 2">
  217. <uni-steps :options="orderProcessDate" :steteName='"gdlc"' v-show="orderProcessDate && orderProcessDate.length > 0" />
  218. <view class="contentTable noCon" v-show="!orderProcessDate || orderProcessDate.length == 0">
  219. 暂时无相关记录
  220. </view>
  221. </view>
  222. <view v-show="current == 3">
  223. <uni-steps :options="maintenanceRecords" :steteName='"wxjl"' v-show="maintenanceRecords && maintenanceRecords.length > 0" />
  224. <view class="contentTable noCon" v-show="!maintenanceRecords || maintenanceRecords.length == 0">
  225. 暂时无相关记录
  226. </view>
  227. </view>
  228. <view v-show="current == 4">
  229. <view class="detailContent showType" v-for="item in evaluateDate" :key=item.F_Id>
  230. <view class="contentTable">
  231. <text class="contentTitle">服务态度:</text>
  232. <htz-rate v-model="item.F_Attitude" :readonly='true' :size="30" :type="2"></htz-rate>
  233. <text class="contentTitle">{{ item.F_Attitude | getEvaluateFilters }}</text>
  234. </view>
  235. <view class="contentTable">
  236. <text class="contentTitle">维修质量:</text>
  237. <htz-rate v-model="item.F_Quality" :size="30" :type="2"></htz-rate>
  238. <text class="contentTitle">{{ item.F_Quality | getEvaluateFilters }}</text>
  239. </view>
  240. <view class="contentTable">
  241. <text class="contentTitle">完工时效:</text>
  242. <htz-rate v-model="item.F_Efficiency" :size="30" :type="2"></htz-rate>
  243. <text class="contentTitle">{{ item.F_Efficiency | getEvaluateFilters }}</text>
  244. </view>
  245. <view class="contentTable">
  246. <text class="contentTitle">文字评价:</text>
  247. <text class="contentText">{{ item.F_EvaluateContent }}</text>
  248. </view>
  249. </view>
  250. <view class="contentTable noCon" v-show="!evaluateDate || evaluateDate.length == 0">
  251. 暂时无相关记录
  252. </view>
  253. </view>
  254. </view>
  255. </view>
  256. </view>
  257. </template>
  258. <script>
  259. import yiLine from "@/components/yi-line/yi-line.vue"
  260. import buttonsComponents from "pages/myTask/workOrderDetail/button/button"
  261. import pageData from "@/pages/myTask/repairList/addRepair/pageData.js"
  262. import uniSteps from "@/pages/components/steps/index.vue"
  263. import htzRate from '@/pages/components/htz-rate/htz-rate.vue'
  264. const segmenterData = {
  265. 0: ["处理结果", "协作工单","工单流程", "维修记录", "评价"],
  266. 1: ["处理结果", "工单流程", "维修记录", "评价"]
  267. }
  268. export default {
  269. components: {
  270. yiLine,
  271. buttonsComponents,
  272. uniSteps,
  273. htzRate
  274. },
  275. filters: {
  276. getEvaluateFilters(state) {
  277. const data = {
  278. 1: '差',
  279. 2: '差',
  280. 3: '良',
  281. 4: '优',
  282. 5: '优',
  283. }
  284. return data[state]
  285. }
  286. },
  287. data() {
  288. return {
  289. getFontSizeValue:'1rem',
  290. active: 1,
  291. current: 0,
  292. typeName: '',
  293. workorderid: "", // 工单id
  294. sms_id: '', // 消息id
  295. tap: '', //工单切换
  296. roleCode: "", //角色
  297. departList: [], //部门数据
  298. userCodeList: [], //用户信息
  299. detailContentData: {}, // 详情内容
  300. orderButtonData: [],
  301. departid: '',
  302. applicationDept: '',
  303. handleProcessListData: [], // 办理过程
  304. cooperationDate: [], // 协作工单
  305. orderProcessDate: [], // 工单流程
  306. maintenanceRecords: [], // 维修记录
  307. evaluateDate: [], // 评价工单
  308. workOrderButton: [], // 工单按钮权限
  309. equipmentCon:[], // 耗材数量
  310. backState: 0, // 返修的状态,是返修1,不是为0
  311. backCon: '', // 返修的内容
  312. orderTypeList: [],
  313. segmenter: {
  314. current: 0,
  315. items: ["0", "1", "2", "3", "4"],
  316. type: "",
  317. },
  318. imageStyles: {
  319. width: 64,
  320. height: 64,
  321. border: {
  322. radius: '20%'
  323. }
  324. },
  325. isDisplay: {
  326. displaySegmentedControl: false, // 分段器
  327. },
  328. }
  329. },
  330. async onLoad(optioin) {
  331. await this.getGongDanType()
  332. this.getFontSizeValue = uni.getStorageSync('fontSizeValue')+'rem'
  333. this.workorderid = optioin.wid
  334. this.sms_id = optioin.sms_id
  335. this.getDetail(0)
  336. this.getDetail(3)
  337. this.getDetail(1)
  338. this.getDetail(4)
  339. if(this.sms_id) {
  340. this.getButtons()
  341. }else if(optioin.buttons) {
  342. JSON.parse(optioin.buttons).forEach(v => {
  343. let btn = this.$mButtonConfig[v.key];
  344. if (btn != undefined) {
  345. this.orderButtonData.push(btn);
  346. }
  347. })
  348. }
  349. // pageData.getDet((res, data) => {
  350. // this.departList = data
  351. // })
  352. this.departList = JSON.parse(window.localStorage.getItem('deptAllList'))
  353. pageData.getApplicant('', (res) => {
  354. this.userCodeList = res
  355. })
  356. if(this.sms_id) {
  357. this.isDisplay.displaySegmentedControl = true
  358. this.segmenter.type = 0
  359. this.segmenter.items = ["处理结果", "协作工单","工单流程", "维修记录", "评价"]
  360. this.getDetail(2)
  361. } else {
  362. this.isDisplay.displaySegmentedControl = true
  363. this.segmenter.type = optioin.segmenter
  364. this.segmenter.items = segmenterData[optioin.segmenter]
  365. this.getDetail(2)
  366. }
  367. this.roleCode = uni.getStorageSync("roleCode")
  368. },
  369. methods: {
  370. async getGongDanType(){
  371. let dataOrderType = []
  372. const params = {
  373. pid:0,
  374. flag:1
  375. }
  376. const res = await this.$http.get("GongDanType/GetList",params)
  377. if (res.state.toLowerCase() ==="success") this.orderTypeList = res.data
  378. },
  379. callHandle(phone){
  380. if(!phone) {
  381. this.$mHelper.toast('无号码信息')
  382. return
  383. }
  384. uni.makePhoneCall({
  385. phoneNumber:phone //仅为示例
  386. })
  387. },
  388. getButtons() {
  389. this.orderButtonData = []
  390. const params = {
  391. SMS_Id: this.sms_id
  392. }
  393. this.$http.get("InternalMessages/GetButtons",params).then((res)=>{
  394. if(res.state.toLowerCase() ==="success"){
  395. res.rows[0].Buttons.forEach(v => {
  396. let btn = this.$mButtonConfig[v.key];
  397. if (btn != undefined) {
  398. this.orderButtonData.push(btn);
  399. }
  400. })
  401. }
  402. })
  403. },
  404. getFileData(fileData) {
  405. let newFile = []
  406. if (fileData && fileData.length > 0) {
  407. fileData.forEach((element, index) => {
  408. const obj = {}
  409. obj.url = element.F_FileUrl
  410. obj.extname = element.F_FileType.split('.')[1]
  411. obj.name = element.F_FileName
  412. newFile.push(obj);
  413. });
  414. }
  415. return newFile
  416. },
  417. getDetail(type) {
  418. const params = {
  419. WorkOrderCode: this.workorderid,
  420. type: type
  421. }
  422. this.$http.get("FaultRepair/GetWorkOrder", params).then((response) => {
  423. if (response.state.toLowerCase() === "success") {
  424. if (type == 0) {
  425. this.detailContentData = response.data[0]
  426. this.applicationDept = this.detailContentData.F_ApplicationDept.trim()
  427. this.departid = this.detailContentData.F_MaintenanceDept.trim()
  428. this.typeName = this.$mHelper.findParents(this.orderTypeList,this.detailContentData.F_WorkOrderCategory)
  429. } else if (type == 1) {
  430. this.handleProcessListData = response.data
  431. } else if (type == 2) {
  432. if(response.data.data.length == 0) {
  433. this.segmenter.items = segmenterData[1]
  434. this.segmenter.type = '1'
  435. }
  436. this.cooperationDate = response.data.data
  437. } else if (type == 3) {
  438. this.orderProcessDate = response.data
  439. } else if (type == 4) {
  440. this.maintenanceRecords = response.data
  441. if(response.data.length> 0 && response.data[0].Equips) {
  442. this.equipmentCon = response.data[0].Equips
  443. console.log(this.equipmentCon.length)
  444. }
  445. } else if (type == 5) {
  446. this.evaluateDate = response.data
  447. } else if (type == 6) {
  448. if (response.message == '不是返修') {
  449. this.backState = 0
  450. } else if (response.message == '是返修') {
  451. this.backState = 1
  452. this.backCon = response.data
  453. }
  454. }
  455. }
  456. }).catch((e) => {
  457. console.log(e);
  458. })
  459. },
  460. onClickSegmentedControl(e) {
  461. this.current = e.currentIndex
  462. if(this.segmenter.type == '0') {
  463. switch (String(e.currentIndex)) {
  464. case "0":
  465. this.tap = 1
  466. break
  467. case "1":
  468. this.tap = 2
  469. break
  470. case "2":
  471. this.tap = 3
  472. break
  473. case "3":
  474. this.tap = 4
  475. break
  476. case "4":
  477. this.tap = 5
  478. break
  479. }
  480. }else{
  481. switch (String(e.currentIndex)) {
  482. case "0":
  483. this.tap = 1
  484. this.current = e.currentIndex
  485. break
  486. case "1":
  487. this.tap = 3
  488. this.current = e.currentIndex + 1
  489. break
  490. case "2":
  491. this.tap = 4
  492. this.current = e.currentIndex + 1
  493. break
  494. case "3":
  495. this.tap = 5
  496. this.current = e.currentIndex + 1
  497. break
  498. }
  499. }
  500. this.getDetail(this.tap)
  501. },
  502. },
  503. }
  504. </script>
  505. <style lang="scss">
  506. .noCon{
  507. height: 200px;
  508. text-align: center;
  509. // font-size: 14px;
  510. color: #525252;
  511. }
  512. /deep/.segmented-control__text{
  513. font-size: 1rem !important;
  514. }
  515. /deep/ .set2-test{
  516. font-size: 1rem !important;
  517. }
  518. /deep/.set-2 .set-view .setTitle{
  519. font-size: 1rem !important;
  520. }
  521. /deep/.set-2 .set-view .setCon{
  522. font-size: 1rem !important;
  523. }
  524. .wrapper {
  525. // background-color: #fff;
  526. // height: 100vh;
  527. // padding: 10px 20px 0 20px;
  528. .showType{
  529. background-color: #fff;
  530. padding: 10px 13px;
  531. border-radius: 10px;
  532. box-shadow: 0px 4px 16px 0px rgba(69, 91, 99, 0.13);
  533. margin-bottom: 25px;
  534. }
  535. .detailContent {
  536. // margin: 0 0 15px 0;
  537. padding: 17px;
  538. background-color: #fff;
  539. .contentTable {
  540. margin: 0 0 10px 0;
  541. display: flex;
  542. .contentTitle {
  543. // font-family: '微软雅黑 Bold', '微软雅黑 Regular', '微软雅黑';
  544. font-weight: 700;
  545. // text-align-last: justify;
  546. font-style: normal;
  547. // font-size: 14px;
  548. color: #555555;
  549. width: 34%;
  550. display: inline-block;
  551. text-align: right;
  552. }
  553. .place{
  554. display: inline-block;
  555. width: 32px;
  556. }
  557. .frContentText{
  558. font-size: 25px !important;
  559. color: #1e90ff !important;
  560. margin-left: 15px !important;
  561. }
  562. .contentText {
  563. width: 66%;
  564. color: #525252;
  565. // font-size: 14px;
  566. margin-left: 10px;
  567. }
  568. .textState {
  569. // position: absolute;
  570. // right: 15px;
  571. // font-size: 12px;
  572. border: 1px solid #52C41A;
  573. padding: 2px 5px;
  574. color: #52C41A;
  575. background-color: rgba(195, 239, 161, 0.2);
  576. border-radius: 5px
  577. }
  578. .fx {
  579. // right: 70px;
  580. border: 1px solid #ff6e54;
  581. color: #ff6e54;
  582. background-color: rgba(255, 110, 84, 0.2);
  583. margin-left: 20px;
  584. }
  585. }
  586. }
  587. .operationButton {
  588. margin: 5px 0;
  589. padding: 17px;
  590. background-color: #fff;
  591. .operationButtonTitle {
  592. font-weight: 700;
  593. }
  594. .buttons {
  595. margin: 15px 0 0 0;
  596. }
  597. }
  598. .equipmentInfo{
  599. width: 100%;
  600. margin-top: 15px;
  601. border: 1px solid rgb(229, 229, 229);
  602. box-shadow: 0px 4px 16px 0px rgba(69, 91, 99, 0.05);
  603. margin-bottom: 20px;
  604. border-radius: 5px;
  605. .trCon {
  606. width: 100%;
  607. // font-size: 14px;
  608. .tdCon {
  609. display: inline-block;
  610. padding: 10px 0px;
  611. color: rgb(102, 102, 102);
  612. width: 20%;
  613. padding-right: 5px;
  614. text-align: center;
  615. }
  616. }
  617. }
  618. .handleProcess {
  619. margin: 15px 0;
  620. .handleProcessTitle {
  621. font-weight: 700;
  622. }
  623. .handleProcessContent {
  624. margin: 8px 0 0 0;
  625. .handleProcessContentTime text {
  626. // font-size: 14px;
  627. color: #73d13d;
  628. }
  629. .handleProcessContentText text {
  630. // font-size: 14px;
  631. color: #525252;
  632. }
  633. }
  634. }
  635. }
  636. </style>