againAssign.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795
  1. <template>
  2. <div class="againAssign">
  3. <div class="conentBox">
  4. <div class="header">处理方案</div>
  5. <div v-if="model.incident" class="conent">
  6. <div class="navBar">
  7. <div class="fl">
  8. <a
  9. :class="{ active: actives == 'info' }"
  10. href="javascript:;"
  11. @click="toInfo('info')"
  12. >事件信息</a
  13. >
  14. </div>
  15. <div class="fl">
  16. <a
  17. :class="{ active: actives == 'assignee' }"
  18. href="javascript:;"
  19. @click="toInfo('assignee')"
  20. >重新指派</a
  21. >
  22. </div>
  23. <div class="fl">
  24. <a
  25. :class="{ active: actives == 'progress' }"
  26. href="javascript:;"
  27. @click="toInfo('progress')"
  28. >处理进度</a
  29. >
  30. </div>
  31. </div>
  32. <div class="label headtop" id="info">事件信息</div>
  33. <div class="info">
  34. <div class="head">
  35. <p>
  36. <i class="iconfont icon-zuixinbaoxiu newPapir"></i>
  37. 事件编号:{{ model.incident.incidentsign }}
  38. <span class="fr btn chongxinzhipai">{{
  39. model.incident.state.name
  40. }}</span>
  41. </p>
  42. </div>
  43. <p>
  44. <span class="fl">事件分类</span>
  45. <span class="fr">{{ model.incident.category.category }}</span>
  46. </p>
  47. <!-- <p>
  48. <span class="fl">事件主题</span>
  49. <span class="fr">{{model.incident.title}}</span>
  50. </p> -->
  51. <p class="desc">
  52. <span class="fl">事件描述</span>
  53. <span
  54. class="fr grayFont"
  55. v-html="model.incident.description"
  56. ></span>
  57. </p>
  58. <div class="shows" id="shows">
  59. <p v-if="valConfig == 2">
  60. <span class="fl">报修科室</span>
  61. <span class="fr">{{
  62. model.incident.department ? model.incident.department.dept : ""
  63. }}</span>
  64. </p>
  65. <p v-if="valConfig == 1">
  66. <span class="fl">报修人</span>
  67. <span class="fr">{{ model.incident.requester.name }}</span>
  68. </p>
  69. <p v-if="valConfig == 2">
  70. <span class="fl">联系人</span>
  71. <span class="fr">{{ model.incident.contacts }}</span>
  72. </p>
  73. <p>
  74. <span class="fl">联系电话</span>
  75. <span
  76. class="fr"
  77. v-if="!model.incident.contactsInformation"
  78. ></span>
  79. <span class="fr" v-if="model.incident.contactsInformation"
  80. ><a :href="'tel:' + model.incident.contactsInformation"
  81. ><i class="iconfont icon-shouji"></i
  82. >{{ model.incident.contactsInformation }}</a
  83. ></span
  84. >
  85. </p>
  86. <p>
  87. <span class="fl">联系地址</span>
  88. <span class="fr">{{ model.incident.houseNumber || "" }}</span>
  89. </p>
  90. <p class="boeder_B">
  91. <span class="fl">事件来源</span>
  92. <span class="fr">{{ model.incident.source.name }}</span>
  93. </p>
  94. <!-- <p>
  95. <span class="fl">影响度</span>
  96. <span class="fr">{{model.incident.influence?model.incident.influence.name:''}}</span>
  97. </p>
  98. <p>
  99. <span class="fl">紧急度</span>
  100. <span class="fr">{{model.incident.emergency?model.incident.emergency.name:''}}</span>
  101. </p> -->
  102. <p>
  103. <span class="fl">受理人</span>
  104. <span class="fr">{{
  105. model.incident.acceptUser ? model.incident.acceptUser.name : ""
  106. }}</span>
  107. </p>
  108. <p>
  109. <span class="fl">处理人</span>
  110. <span class="fr">{{
  111. model.incident.handlerUser
  112. ? model.incident.handlerUser.name
  113. : ""
  114. }}</span>
  115. </p>
  116. <p>
  117. <span class="fl">处理人电话</span>
  118. <span class="fr" v-if="!model.incident.handlerUser"></span>
  119. <span class="fr" v-if="model.incident.handlerUser"
  120. ><a :href="'tel:' + model.incident.handlerUser.phone"
  121. ><i class="iconfont icon-shouji"></i
  122. >{{ model.incident.handlerUser.phone }}</a
  123. ></span
  124. >
  125. </p>
  126. <p>
  127. <span class="fl">优先级</span>
  128. <span class="fr">{{
  129. model.incident.priority ? model.incident.priority.name : ""
  130. }}</span>
  131. </p>
  132. <p>
  133. <span class="fl">逾期响应时间</span>
  134. <span class="fr">{{ model.incident.overdueResponseDate }}</span>
  135. </p>
  136. <p>
  137. <span class="fl">逾期解决时间</span>
  138. <span class="fr">{{ model.incident.overdueTime }}</span>
  139. </p>
  140. <p>
  141. <span class="fl">区域</span>
  142. <span class="fr">{{
  143. model.incident.place ? model.incident.place.area.area : "--"
  144. }}</span>
  145. </p>
  146. <p class="boeder_B">
  147. <span class="fl">地点</span>
  148. <span class="fr">{{
  149. model.incident.place ? model.incident.place.place : "--"
  150. }}</span>
  151. </p>
  152. <div v-if="hcsjList.length">
  153. <p>耗材</p>
  154. <div class="hcTable">
  155. <table>
  156. <tr>
  157. <td>耗材名称</td>
  158. <td>价格</td>
  159. <td>数量</td>
  160. </tr>
  161. <tr v-for="(item, i) in hcsjList" :key="i">
  162. <td>{{ item.consumable.name }}</td>
  163. <td>{{ item.extra1 }}</td>
  164. <td>{{ item.consumablesSum }}</td>
  165. </tr>
  166. </table>
  167. </div>
  168. </div>
  169. <p v-if="wxIncidentWithCmdb == 1">
  170. <span class="fl">资产</span>
  171. <span class="fr">{{ model.incident.assetId || "无" }}</span>
  172. </p>
  173. </div>
  174. <p class="info_hide">
  175. <span class="fl hide" @click="hides()" v-if="!item_hides"
  176. >展开详情 >></span
  177. >
  178. <span class="fl hide" @click="hides()" v-if="item_hides"
  179. >隐藏详情<<</span
  180. >
  181. </p>
  182. <div class="imgs-container" v-if="imgs.length">
  183. <div class="imgs-cont">
  184. <img
  185. v-if="
  186. img.suffix == 'jpeg' ||
  187. img.suffix == 'jpg' ||
  188. img.suffix == 'gif' ||
  189. img.suffix == 'png' ||
  190. img.suffix == 'svg' ||
  191. img.suffix == 'pdf'
  192. "
  193. :src="img.previewUrl"
  194. v-for="(img, index) in imgs"
  195. class="imgs"
  196. />
  197. <p v-else>
  198. <a :href="[img.previewUrl]">{{ img.name }}</a>
  199. </p>
  200. </div>
  201. </div>
  202. <div class="label" id="assignee">重新指派</div>
  203. <div class="info">
  204. <p>
  205. <span class="fl">重新指派原因:</span>
  206. <span class="fr">{{ model.resignComment }}</span>
  207. </p>
  208. </div>
  209. <div class="label" id="progress">处理进度</div>
  210. <div
  211. :class="{ progress: true, progressHide: !pro_hides }"
  212. id="progressBox"
  213. >
  214. <div class="progress_info" v-for="item in progressInfo">
  215. <div class="progress_info_L">{{ item.activityName }}</div>
  216. <div class="progress_info_R">
  217. <div class="time">
  218. <i
  219. :class="{
  220. iconfont: true,
  221. 'icon-icon_weizuo': item.endTime != '',
  222. 'icon-icon_zhengzaijinx': item.endTime == '',
  223. }"
  224. ></i>
  225. <span class="text1">
  226. {{ item.startTime | timeFormat("MM-dd HH:mm:ss") }}
  227. <template v-if="item.userName">
  228. ,{{ item.userName }}
  229. </template>
  230. </span>
  231. </div>
  232. <div :class="{ cont: true, blue: item.endTime != '' }">
  233. <p class="text2" v-if="item.desc" v-html="item.desc"></p>
  234. </div>
  235. </div>
  236. </div>
  237. </div>
  238. <p class="info_hide">
  239. <span class="fl hide" @click="proHides()">{{
  240. pro_hides ? "隐藏详情 <<" : "展开详情 >>"
  241. }}</span>
  242. </p>
  243. <div v-if="model.incident.handlerUser.id == loginUser.id">
  244. <div class="label">指派</div>
  245. <div class="form">
  246. <div class="txtLabel">
  247. <div class="txt fl handler">
  248. <span style="color: red">*</span>是否选择处理人:
  249. </div>
  250. <cube-switch v-model="handleUserOrGroup"></cube-switch>
  251. </div>
  252. <div class="txtLabel" v-if="handleUserOrGroup">
  253. <div class="txt fl">
  254. <span style="color: red">*</span> 处理人:
  255. </div>
  256. <cube-select
  257. class="selectGroup fl"
  258. v-model="handlerUser"
  259. :title="'请选择处理人'"
  260. :options="handlerUserArr"
  261. :placeholder="'请选择处理人'"
  262. ></cube-select>
  263. </div>
  264. <div class="txtLabel" v-if="!handleUserOrGroup">
  265. <div class="txt fl">
  266. <span style="color: red">*</span> 处理组:
  267. </div>
  268. <cube-select
  269. class="selectGroup fl"
  270. v-model="handlerGroup"
  271. :title="'请选择处理组'"
  272. :options="candidateGroupsArr"
  273. :placeholder="'请选择处理组'"
  274. ></cube-select>
  275. </div>
  276. <cube-form-group class="sub">
  277. <cube-button type="submit" @click="subVali()">提交</cube-button>
  278. </cube-form-group>
  279. </div>
  280. </div>
  281. </div>
  282. </div>
  283. <load-ing v-if="!model.incident"></load-ing>
  284. <promp-ting
  285. :conents="promptingConent"
  286. :status="promptingStatus"
  287. ></promp-ting>
  288. </div>
  289. </div>
  290. </template>
  291. <script>
  292. import LoadIng from "./../views/loading.vue";
  293. import PrompTing from "./../views/prompting.vue";
  294. export default {
  295. data() {
  296. return {
  297. id: "",
  298. loginUser: JSON.parse(localStorage.getItem("loginUser")),
  299. valConfig: JSON.parse(localStorage.getItem("valConfig")) - 0, //报修主体
  300. incidentWithConsumable: localStorage.getItem("incidentWithConsumable"), //是否绑定耗材
  301. wxIncidentWithCmdb: localStorage.getItem("wxIncidentWithCmdb"), //是否绑定资产
  302. hcsjList: [], //绑定的耗材列表,展示
  303. promptingConent: "",
  304. promptingStatus: "",
  305. item_hides: false,
  306. actives: "info",
  307. processInstanceId: "",
  308. progressInfo: [], //处理进度
  309. imgs: [], //图片
  310. model: {}, //提交数据
  311. handleUserOrGroup: false, //处理人/处理组
  312. handlerUserArr: [], //处理人
  313. candidateGroupsArr: [], //处理组
  314. handlerUser: "", //处理人
  315. handlerGroup: "", //处理组
  316. pro_hides: false, //展开/收起处理进度
  317. };
  318. },
  319. components: {
  320. LoadIng,
  321. PrompTing,
  322. },
  323. methods: {
  324. // 获取事件上绑定的耗材
  325. getHcBySj() {
  326. this.$http
  327. .post("service/cmdb/storeList", {
  328. data: { type: 2, source: "1627", sourceId: this.id },
  329. })
  330. .then((result) => {
  331. if (result.data.status == 200) {
  332. this.hcsjList = result.data.data;
  333. }
  334. });
  335. },
  336. // 获取事件数据
  337. getParamsData() {
  338. var that = this;
  339. that.$http
  340. .get(
  341. "/service/form/renderForm/receiveform/" +
  342. that.processInstanceId +
  343. "/" +
  344. that.loginUser.id +
  345. "/" +
  346. that.id,
  347. {}
  348. )
  349. .then(function (res) {
  350. console.log(res.data);
  351. that.model = res.data.model;
  352. that.getProgressInfo();
  353. });
  354. },
  355. // 获取图片
  356. getImgs() {
  357. var that = this;
  358. that.$http
  359. .get(
  360. "service/common/common/listAttachment/incident/" +
  361. that.processInstanceId,
  362. {}
  363. )
  364. .then(function (res) {
  365. console.log(res.data);
  366. that.imgs = res.data.data.splice(0, 3);
  367. console.log(that.imgs);
  368. });
  369. },
  370. // 获取处理进度
  371. getProgressInfo() {
  372. var that = this;
  373. that.$http
  374. .post(
  375. "/service/bpm/bpm/flowTracingCustom/" + that.processInstanceId,
  376. {}
  377. )
  378. .then(function (res) {
  379. console.log(res.data);
  380. that.progressInfo = res.data.data;
  381. //处理日志startcaca
  382. if (that.model.incident.handlerLogs) {
  383. //添加日志
  384. that.model.incident.handlerLogs.forEach((v) => {
  385. that.progressInfo.push({
  386. startTime: v.opTime,
  387. endTime: 1,
  388. desc: v.opValue,
  389. userName: v.userName,
  390. activityName: "事件处理",
  391. });
  392. });
  393. }
  394. //处理数据
  395. that.progressInfo.forEach((v) => {
  396. if (!v.endTime) {
  397. v.endTime = 1;
  398. }
  399. v.startTime = new Date(v.startTime).getTime();
  400. });
  401. var kaishi = that.progressInfo.shift();
  402. var jiedan = that.progressInfo.shift();
  403. that.progressInfo.sort(function (o, c) {
  404. return c.startTime - o.startTime;
  405. });
  406. that.progressInfo.length && (that.progressInfo[0].endTime = "");
  407. that.progressInfo.push(jiedan);
  408. that.progressInfo.push(kaishi);
  409. console.log(that.progressInfo);
  410. //处理日志end
  411. });
  412. },
  413. //隐藏显示详情
  414. hides() {
  415. this.item_hides = !this.item_hides;
  416. $("#shows").slideToggle();
  417. },
  418. // 处理进度隐藏/展开
  419. proHides() {
  420. if (!this.pro_hides) {
  421. $("#progressBox").animate({
  422. height: $("#progressBox")[0].scrollHeight,
  423. });
  424. } else {
  425. $("#progressBox").animate({ height: "1.7rem" });
  426. }
  427. this.pro_hides = !this.pro_hides;
  428. },
  429. // 快速定位
  430. toInfo(id) {
  431. this.actives = id;
  432. $("body,html").animate(
  433. {
  434. scrollTop:
  435. $("#" + id).offset().top -
  436. $(".header")[0].offsetHeight -
  437. $(".navBar")[0].offsetHeight,
  438. },
  439. 260
  440. );
  441. },
  442. // 获取处理人
  443. getHandlerUser() {
  444. var that = this;
  445. this.$http
  446. .post("service/user/data/fetchDataList/user", {
  447. idx: 0,
  448. sum: 1000,
  449. user: {
  450. roledata: { rolecode: "first-line support" },
  451. selectType: "1",
  452. },
  453. })
  454. .then(function (res) {
  455. res.data.list.forEach(function (v, i) {
  456. that.handlerUserArr.push({
  457. text: v.name,
  458. value: v.id,
  459. });
  460. });
  461. });
  462. },
  463. // 获取处理组
  464. getCandidateGroups() {
  465. var that = this;
  466. this.$http
  467. .post("service/user/data/fetchDataList/group", {
  468. idx: 0,
  469. sum: 1000,
  470. group: { selectType: "nouser" },
  471. })
  472. .then(function (res) {
  473. res.data.list.forEach(function (v, i) {
  474. that.candidateGroupsArr.push({
  475. text: v.groupName,
  476. value: v.id,
  477. });
  478. });
  479. console.log(that.candidateGroupsArr);
  480. });
  481. },
  482. subVali() {
  483. var that = this;
  484. if (
  485. (!that.handleUserOrGroup && !that.handlerGroup) ||
  486. (that.handleUserOrGroup && !that.handlerUser)
  487. ) {
  488. $("#fade").fadeIn();
  489. that.promptingConent = "提交失败,请填写必填信息!";
  490. that.promptingStatus = false;
  491. setTimeout(function () {
  492. $("#fade").fadeOut();
  493. }, 2000);
  494. }
  495. that.model.handler_code = "resolve";
  496. delete that.model.receive_code;
  497. if (that.handleUserOrGroup) {
  498. delete that.model.candidateGroups;
  499. that.model.assignee = that.handlerUser;
  500. } else {
  501. delete that.model.assignee;
  502. delete that.model.incident.assignee;
  503. that.model.candidateGroups = that.handlerGroup;
  504. }
  505. that.$http
  506. .post(
  507. "service/bpm/bpm/completeTask/" +
  508. that.model.incident.taskId +
  509. "/" +
  510. that.loginUser.id,
  511. that.model
  512. )
  513. .then(function (res) {
  514. if (res.data.status == 200) {
  515. $("#fade").fadeIn();
  516. that.promptingConent = "恭喜您,提交成功!";
  517. that.promptingStatus = true;
  518. that.dialog = that
  519. .$createDialog({
  520. type: "alert",
  521. title: "提交成功",
  522. content: "点击返回首页",
  523. icon: "cubeic-right",
  524. onConfirm: (e, promptValue) => {
  525. that.$router.push({ path: "/main" });
  526. },
  527. })
  528. .show();
  529. setTimeout(function () {
  530. $("#fade").fadeOut();
  531. }, 2000);
  532. }
  533. });
  534. },
  535. },
  536. created() {
  537. this.processInstanceId = this.$route.params.data.processInstanceId;
  538. this.id = this.$route.params.data.id;
  539. this.getParamsData();
  540. this.getImgs();
  541. if (this.incidentWithConsumable == 1) {
  542. this.getHcBySj();
  543. }
  544. this.getHandlerUser();
  545. this.getCandidateGroups();
  546. },
  547. };
  548. </script>
  549. <style lang="less" scoped>
  550. i.iconfont.blue {
  551. color: #005395;
  552. // &::after {
  553. // content: "";
  554. // width: 0.01rem;
  555. // height: 0.4rem;
  556. // background: #005395;
  557. // position: relative;
  558. // display: block;
  559. // left: 0.14rem;
  560. // }
  561. }
  562. .againAssign {
  563. .header {
  564. width: 100%;
  565. height: 0.88rem;
  566. line-height: 0.88rem;
  567. text-align: center;
  568. color: #fff;
  569. font-size: 0.37rem;
  570. background: linear-gradient(#2e2f32, #414246);
  571. position: fixed;
  572. top: 0;
  573. z-index: 6;
  574. }
  575. .navBar {
  576. width: 100%;
  577. height: 0.96rem;
  578. line-height: 0.96rem;
  579. background-color: #fafafa;
  580. font-size: 0.28rem;
  581. position: fixed;
  582. top: 0.88rem;
  583. div {
  584. width: 33.33%;
  585. text-align: center;
  586. a {
  587. display: inline-block;
  588. height: 0.9rem;
  589. width: 1.7rem;
  590. padding: 0 0.1rem;
  591. &.active {
  592. color: #005395;
  593. border-bottom: 0.06rem solid #005395;
  594. }
  595. }
  596. }
  597. }
  598. .headtop {
  599. margin-top: 1.84rem;
  600. }
  601. .label {
  602. background-color: #eeeeee;
  603. height: 0.6rem;
  604. line-height: 0.58rem;
  605. padding-left: 0.2rem;
  606. font-size: 0.24rem;
  607. color: #666666;
  608. span {
  609. font-size: 0.2rem;
  610. display: inline-block;
  611. margin-left: 0.08rem;
  612. color: #999999;
  613. }
  614. &.formLabel {
  615. background-color: #fff;
  616. }
  617. }
  618. .conentBox {
  619. width: 100%;
  620. .conent {
  621. font-size: 0.32rem;
  622. font-weight: 400;
  623. line-height: 0.45rem;
  624. // border-bottom: 0.16rem solid #e5e5e5;
  625. .shows {
  626. display: none;
  627. }
  628. .boeder_B {
  629. border-bottom: 0.01rem solid #ccc;
  630. }
  631. p {
  632. &.desc {
  633. overflow: hidden;
  634. }
  635. .grayFont {
  636. width: 75%;
  637. text-align: right;
  638. overflow-x: scroll;
  639. }
  640. }
  641. .bottom {
  642. overflow: hidden;
  643. line-height: 0.86rem;
  644. border-bottom: 0.01rem solid #e6e6e6;
  645. font-size: 0.24rem;
  646. color: #999;
  647. padding: 0 0.24rem 0 0.48rem;
  648. }
  649. .info {
  650. color: #999;
  651. font-size: 0.28rem;
  652. overflow: hidden;
  653. .head {
  654. border-bottom: 0.01rem solid #e6e6e6;
  655. p {
  656. padding: 0.24rem 0.3rem;
  657. i {
  658. color: #00559d;
  659. }
  660. }
  661. }
  662. p {
  663. line-height: 0.4rem;
  664. padding: 0.1rem 0.24rem;
  665. overflow: hidden;
  666. .overflowEllipsis2 {
  667. margin-left: 1.96rem;
  668. }
  669. }
  670. .info_hide {
  671. padding: 0.2rem 0.24rem;
  672. border-bottom: 0.01rem solid #e6e6e6;
  673. .hide {
  674. color: #00559d;
  675. }
  676. }
  677. .imgs-container {
  678. a {
  679. color: #03c !important;
  680. &:visited {
  681. color: #551a8b !important;
  682. }
  683. }
  684. img {
  685. width: 1.5rem;
  686. height: 1.5rem;
  687. margin-right: 0.7rem;
  688. &:nth-child(1) {
  689. margin-left: 0.75rem;
  690. }
  691. }
  692. }
  693. .progress {
  694. padding: 0.2rem 0.2rem;
  695. overflow: hidden;
  696. transition-duration: 0.2s;
  697. transition-timing-function: linear;
  698. &.progressHide {
  699. height: 1.7rem;
  700. }
  701. .progress_info {
  702. overflow: hidden;
  703. margin-bottom: 0.1rem;
  704. &:nth-last-child(1) {
  705. .cont {
  706. border: none !important;
  707. }
  708. }
  709. .progress_info_L {
  710. float: left;
  711. color: #333;
  712. max-width: 18%;
  713. }
  714. .progress_info_R {
  715. float: right;
  716. margin-left: 0.09rem;
  717. width: 80%;
  718. font-size: 0.25rem;
  719. .time {
  720. i {
  721. margin-left: -0.15rem;
  722. &.icon-icon_weizuo {
  723. color: #005495;
  724. }
  725. &.icon-icon_zhengzaijinx {
  726. color: #48a843;
  727. font-size: 0.37rem;
  728. }
  729. }
  730. span {
  731. margin-left: 0.15rem;
  732. }
  733. }
  734. .cont {
  735. border-left: 1px solid #999;
  736. padding-left: 0.4rem;
  737. min-height: 0.4rem;
  738. &.blue {
  739. border-left: 1px solid #005395;
  740. }
  741. }
  742. .text1 {
  743. font-size: 0.15rem;
  744. }
  745. .text2 {
  746. color: #666;
  747. word-break: break-all;
  748. }
  749. p {
  750. padding: 0;
  751. }
  752. }
  753. }
  754. }
  755. }
  756. .txtLabel {
  757. width: 100%;
  758. overflow: hidden;
  759. padding: 0.32rem 0.24rem 0.32rem 0.32rem;
  760. .txt {
  761. width: 25%;
  762. color: #666;
  763. &.handler {
  764. width: 40%;
  765. }
  766. }
  767. .selectGroup {
  768. width: 62%;
  769. }
  770. }
  771. .sub {
  772. background: #ececec;
  773. .cube-btn {
  774. background-color: #005395 !important;
  775. width: 90%;
  776. margin: 0.2rem auto;
  777. border-radius: 8px;
  778. }
  779. }
  780. }
  781. }
  782. .showwrap {
  783. width: 75%;
  784. text-align: right;
  785. }
  786. }
  787. </style>