patientInformationInfo.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771
  1. <template>
  2. <view class="patientInformationInfo" v-if="Object.keys(infoDATA).length > 0">
  3. <view class="page_head">
  4. <view class="title">{{ infoDATA.patientName }}<text class="patientCode">{{ infoDATA.residenceNo }}({{ infoDATA.bedNum }})</text></view>
  5. <view class="info">
  6. <view class="bedNum" v-if="infoDATA.tripTypeDTO">
  7. <text class="info_h">陪检方式</text>
  8. <text class="info_b">{{ infoDATA.tripTypeDTO ? infoDATA.tripTypeDTO.inspectMode : '' }}</text>
  9. </view>
  10. <view :class="(infoDATA.careLevel || infoDATA.illnessState)?'bedNum':'waitingCount'">
  11. <text class="info_h">待检查数</text>
  12. <text class="info_b">{{ infoDATA.watingCount }}</text>
  13. </view>
  14. <view :class="infoDATA.illnessState?'bedNum':'waitingCount'" v-if="infoDATA.careLevel">
  15. <text class="info_h">护理等级</text>
  16. <text class="info_b">{{ infoDATA.careLevel.name }}</text>
  17. </view>
  18. <view class="waitingCount" v-if="infoDATA.illnessState">
  19. <text class="info_h">病情级别</text>
  20. <text class="info_b">{{ infoDATA.illnessState.name }}</text>
  21. </view>
  22. </view>
  23. <view class="remark">
  24. <text class="remarkTitle">注意事项:</text><text class="remarkInfo">{{infoDATA.remark}}</text>
  25. </view>
  26. </view>
  27. <scroll-view v-if="!isEmpty" scroll-y class="scrollContent">
  28. <view class="page_item" v-for="(inspects, key, index) in infoDATA.inspectListMap" :key="key">
  29. <view class="splitLine">
  30. <view class="splitLineFlex">
  31. <view class="splitLineBox"></view>
  32. </view>
  33. <view>{{key}}</view>
  34. <view class="splitLineFlex">
  35. <view class="splitLineBox"></view>
  36. </view>
  37. </view>
  38. <checkbox-group @change="checkboxChange($event, key)">
  39. <view class="page_item_info" :class="{mt0: i === 0}" v-for="(item, i) in inspects" :key="item.id">
  40. <label class="page_item_info_title" style="display: inline-block;width: 100%;">
  41. <checkbox color="#49B856" :value="item.id + ''" :checked="item.checked" />
  42. 检查项目:<text class="bold">{{ item.inspectName }}</text></label>
  43. <view class="page_item_info_title"><text :class="{red: !item.execDept}">检查科室:</text><text>{{ item.execDept ? item.execDept.dept : "" }}<text class="newicon newicon-weibiaoti2010104 fz28" @click="changeExecDept(item)" v-if="item.inspectState.value == 1 || item.inspectState.value == 30"></text></text></view>
  44. <view class="page_item_info_title btn row">
  45. <view><text :class="{red: !item.yyTime}">预约时间:</text><text>{{ item.yyEndTime }}</text><text v-if="item.reservationNumber">({{ item.reservationNumber }})</text><text class="newicon newicon-weibiaoti2010104" @click="changeYyTime(item)" v-if="item.inspectState.value == 1 || item.inspectState.value == 30"></text></view>
  46. </view>
  47. <view class="page_item_info_title row">
  48. <text>医生备注:{{ item.remark }}</text>
  49. </view>
  50. <view class="page_item_info_title row">
  51. <view>是否紧急:<text :class="{red:item.priority===1||item.priority==='1'}">{{ (item.priority===1||item.priority==='1')?'是':'否' }}</text></view>
  52. <view>状态:<text v-if="item.inspectState">{{ item.inspectState.name }}</text></view>
  53. </view>
  54. <view class="buildOrder" @click="build(item)" v-if="!item.gdId&&(item.inspectState.value==1||item.inspectState.value==30)">建单</view>
  55. </view>
  56. </checkbox-group>
  57. </view>
  58. </scroll-view>
  59. <view v-if="isEmpty" class="zwsj">
  60. <image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
  61. <view class="zwsj-txt">暂无检查信息</view>
  62. </view>
  63. <view class="page_item_btns">
  64. <view class="page_item_btn" hover-class="seimin-btn-hover" @click="buildOrders()">批量陪检</view>
  65. <view class="toolbar" @click="Scanning()">
  66. <text class="toolbar-icon newicon newicon-saoma"></text>
  67. <text class="toolbar-sao">扫一扫</text>
  68. </view>
  69. </view>
  70. <!-- 弹窗 -->
  71. <showModel :checkBoxText="models.checkBoxText" :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  72. @ok="ok" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
  73. <!-- 弹窗 -->
  74. <inspectRemoveModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content" @know="know1" :operate="models1.operate" @ok="ok1" @cancel="cancel1" :yy="currentInspect.yyTime" :currentInspect="currentInspect" :yytimeGapMinute="configObj.yytimeGapMinute"></inspectRemoveModel>
  75. <!-- 弹窗 -->
  76. <inspectExecDeptModel :title="models2.title" :icon="models2.icon" :disjunctor="models2.disjunctor" :content="models2.content" @know="know2" :operate="models2.operate" @ok="ok2" @cancel="cancel2" :execDeptList="currentInspect.inspectCheckType && currentInspect.inspectCheckType.deptList" :execDeptId="currentInspect.execDeptId"></inspectExecDeptModel>
  77. </view>
  78. </template>
  79. <script>
  80. import {
  81. get,
  82. post,
  83. SM,
  84. webHandle
  85. } from "../../http/http.js";
  86. import dayjs from 'dayjs';
  87. export default {
  88. data() {
  89. return {
  90. currentInspect: {},
  91. SMFlag: true,
  92. isEmpty: true,
  93. options: {},
  94. infoDATA: {},
  95. // 弹窗model1
  96. models1: {
  97. disjunctor: false,
  98. },
  99. // 弹窗model1
  100. models2: {
  101. disjunctor: false,
  102. },
  103. // 建单的对象
  104. jdItem: [],
  105. // 弹窗model
  106. models: {
  107. disjunctor: false,
  108. },
  109. configObj: null,
  110. hosId: uni.getStorageSync("userData").user.currentHospital.id,
  111. };
  112. },
  113. methods: {
  114. // 选择楼栋
  115. checkboxChange: function(e, key) {
  116. var dataList = this.infoDATA.inspectListMap[key],
  117. values = e.detail.value;
  118. for (var i = 0, lenI = dataList.length; i < lenI; ++i) {
  119. const item = dataList[i]
  120. if (values.includes(item.id + '')) {
  121. this.$set(item, 'checked', true)
  122. } else {
  123. this.$set(item, 'checked', false)
  124. }
  125. }
  126. },
  127. // 批量陪检
  128. buildOrders(){
  129. let list = Object.values(this.infoDATA.inspectListMap).flat().filter(v => v.checked);
  130. console.log(list);
  131. if(list.length){
  132. // 只要有一个没有检查科室
  133. let inspectDTO = list.find(v => !v.execDept);
  134. if(inspectDTO){
  135. this.models = {
  136. disjunctor: true,
  137. title: "提示",
  138. content: `<span class="red">${inspectDTO.inspectName || ''}</span>没有检查科室,不能建单`,
  139. icon: "warn",
  140. operate: {
  141. know: "返回",
  142. },
  143. };
  144. return;
  145. }
  146. this.jdItem = list;
  147. this.models = {
  148. disjunctor: true,
  149. title: "提示",
  150. content: `您选择<span class="red">${this.infoDATA.patientName || ""}</span>患者<span class="red">${list.length}</span>项检查,是否确认建单?`,
  151. icon: "warn",
  152. checkBoxText: '建单并签到',
  153. operate: {
  154. ok: "确定",
  155. cancel: "取消",
  156. },
  157. };
  158. }else{
  159. uni.showToast({
  160. icon: "none",
  161. title: "至少选择一个检查!",
  162. });
  163. }
  164. },
  165. // 建单
  166. build(data) {
  167. console.log(data);
  168. if(!data.execDept){
  169. this.models = {
  170. disjunctor: true,
  171. title: "提示",
  172. content: `<span class="red">${data.inspectName || ''}</span>没有检查科室,不能建单`,
  173. icon: "warn",
  174. operate: {
  175. know: "返回",
  176. },
  177. };
  178. return;
  179. }
  180. this.jdItem = [data];
  181. this.models = {
  182. disjunctor: true,
  183. title: "提示",
  184. content: `您即将创建<span class="red">${data.patientName || ""}</span>患者前往<span class="red">${ data.execDept ? data.execDept.dept : "" }</span>进行<span class="red">${data.inspectName || ""}</span>检查,您确认吗?`,
  185. icon: "warn",
  186. checkBoxText: '建单并签到',
  187. operate: {
  188. ok: "确定",
  189. cancel: "取消",
  190. },
  191. };
  192. },
  193. //建单后返回
  194. know() {
  195. this.models.disjunctor = false;
  196. this.getInfo(this.infoDATA.patientCode);
  197. },
  198. //建单确定
  199. ok(e) {
  200. console.log(e)
  201. if(e.isCheck){
  202. uni.showLoading({
  203. title: "加载中",
  204. mask: true,
  205. });
  206. post("/nurse/inspect/inspectCreateCheck", { patientCode: this.options.patientCode }).then((result) => {
  207. uni.hideLoading();
  208. if (result.status == 200) {
  209. // 建单并签到
  210. if (!this.SMFlag) {
  211. return;
  212. }
  213. this.SMFlag = false;
  214. SM().then((content) => {
  215. this.SMFlag = true;
  216. this.buildOrderOrSign(content)
  217. }).catch(err => {
  218. this.SMFlag = true;
  219. });
  220. } else {
  221. this.models.disjunctor = false;
  222. this.models = {
  223. disjunctor: true,
  224. content: result.msg,
  225. icon: "error",
  226. operate: {
  227. know: "返回",
  228. },
  229. };
  230. }
  231. });
  232. }else{
  233. this.buildOrderOrSign()
  234. }
  235. },
  236. // 建单/建单并签到
  237. buildOrderOrSign(content){
  238. this.models.disjunctor = false;
  239. let postData = {
  240. deptId: this.infoDATA.department.id
  241. };
  242. let taskId;
  243. uni.showLoading({
  244. title: "加载中",
  245. mask: true,
  246. });
  247. post("/nurse/getDeptTaskType", postData).then((result) => {
  248. if (result.status == 200) {
  249. let obj = result.data.allTaskTypes.filter(
  250. (item) => item.associationType.value == "inspect"
  251. );
  252. if (obj.length) {
  253. taskId = obj[0].id;
  254. let postData = {
  255. code: content,
  256. workOrder: {
  257. sourceId: 4,
  258. taskType: {
  259. id: taskId,
  260. isHalfInspect: obj[0].isHalfInspect === 1 ? 1 : 0
  261. },
  262. createDept: this.infoDATA.department.id,
  263. startDept: {
  264. id: this.infoDATA.department.id
  265. },
  266. patient: {
  267. patientCode: this.infoDATA.patientCode
  268. },
  269. checkList: this.jdItem,
  270. goods: "",
  271. worker: {
  272. id: uni.getStorageSync("userData").user.id
  273. },
  274. workerStartOrderFlag: 1,
  275. },
  276. };
  277. //根据检查的紧急度加急
  278. this.jdItem.forEach(v => {
  279. if (v.priority === 1 || v.priority === '1') {
  280. postData.workOrder["urgentDetails"] = {
  281. checkStatus: {
  282. id: 329
  283. },
  284. urgentReason: '系统根据检查信息,自动进行加急',
  285. };
  286. }
  287. })
  288. post(content ? "/nurse/inspect/inspectCreateSign" : "/api/startOrder", postData).then((res) => {
  289. uni.hideLoading();
  290. let msg = res.msg + (content ? ` 扫描内容:${content}` : '');
  291. let icon = "error";
  292. if (res.status == 200) {
  293. msg = "建单成功";
  294. icon = "success";
  295. }
  296. this.models = {
  297. disjunctor: true,
  298. content: msg,
  299. icon: icon,
  300. operate: {
  301. know: "返回",
  302. },
  303. };
  304. });
  305. } else {
  306. uni.hideLoading();
  307. this.models = {
  308. disjunctor: true,
  309. content: "建单失败,科室未开通!",
  310. icon: "error",
  311. operate: {
  312. know: "返回",
  313. },
  314. };
  315. }
  316. } else {
  317. uni.hideLoading();
  318. uni.showToast({
  319. icon: "none",
  320. title: result.msg || "接口获取数据失败!",
  321. });
  322. }
  323. });
  324. },
  325. //建单取消
  326. cancel() {
  327. this.models.disjunctor = false;
  328. },
  329. // 扫一扫
  330. Scanning(qrcodePrefix = '') {
  331. if (!this.SMFlag) {
  332. return;
  333. }
  334. this.SMFlag = false;
  335. SM().then((content) => {
  336. this.SMFlag = true;
  337. this.getInfo(content);
  338. }).catch(err => {
  339. this.SMFlag = true;
  340. });
  341. },
  342. // 修改预约时间->返回
  343. know1() {
  344. this.models1.disjunctor = false;
  345. },
  346. // 修改预约时间->确定
  347. ok1(data) {
  348. console.log(data);
  349. const { yyTime, yyEndTime} = data;//暂时这样
  350. if (!yyTime) {
  351. //没有填写预约时间
  352. uni.showModal({
  353. title: "提示",
  354. content: "请填写预约时间!",
  355. showCancel: false,
  356. success: function(res) {
  357. if (res.confirm) {
  358. console.log("用户点击确定");
  359. } else if (res.cancel) {
  360. console.log("用户点击取消");
  361. }
  362. },
  363. });
  364. return;
  365. }
  366. this.models1.disjunctor = false;
  367. let postData = {
  368. inspectCode: this.currentInspect.inspectCode,
  369. yyTime,
  370. yyEndTime
  371. };
  372. uni.showLoading({
  373. title: '加载中',
  374. mask: true,
  375. })
  376. post('/workerOrder/updateInspectYytime', postData).then(res => {
  377. uni.hideLoading();
  378. if (res.status == 200) {
  379. this.getInfo(this.options.patientCode);
  380. } else {
  381. uni.showToast({
  382. icon: "none",
  383. title: "修改失败",
  384. });
  385. }
  386. })
  387. },
  388. // 修改预约时间->取消
  389. cancel1() {
  390. this.models1.disjunctor = false;
  391. },
  392. // 修改预约时间
  393. changeYyTime(item) {
  394. this.currentInspect = item;
  395. this.models1 = {
  396. disjunctor: true,
  397. content: `您要修改[${item.inspectName||''}]的预约时间`,
  398. icon: "warn",
  399. operate: {
  400. ok: "确定",
  401. cancel: "取消",
  402. },
  403. };
  404. },
  405. // 修改检查科室
  406. changeExecDept(item) {
  407. this.currentInspect = item;
  408. if(this.currentInspect.inspectCheckType){
  409. this.currentInspect.inspectCheckType.deptList = this.currentInspect.inspectCheckType.deptList || [];
  410. }
  411. this.models2 = {
  412. disjunctor: true,
  413. content: `请选择[${item.patientName||''}]检查项目的检查科室`,
  414. icon: "warn",
  415. operate: {
  416. ok: "确定",
  417. cancel: "取消",
  418. },
  419. };
  420. },
  421. // 修改检查科室->返回
  422. know2() {
  423. this.models2.disjunctor = false;
  424. },
  425. // 修改检查科室->确定
  426. ok2(data) {
  427. console.log(data);
  428. const { execDeptId } = data;
  429. this.models2.disjunctor = false;
  430. let postData = {
  431. "id": this.currentInspect.id,
  432. "execDeptId": execDeptId
  433. };
  434. uni.showLoading({
  435. title: '加载中',
  436. mask: true,
  437. })
  438. post('/simple/data/updData/inspect', postData).then(res => {
  439. uni.hideLoading();
  440. if (res.status == 200) {
  441. this.getInfo(this.options.patientCode);
  442. } else {
  443. uni.showToast({
  444. icon: "none",
  445. title: "修改失败",
  446. });
  447. }
  448. })
  449. },
  450. // 修改检查科室->取消
  451. cancel2() {
  452. this.models2.disjunctor = false;
  453. },
  454. // 获取系统配置预约时间间隔
  455. getInspectConfig(patientCode) {
  456. const postData = {
  457. "idx": 0,
  458. "sum": 1,
  459. "taskTypeConfig": {
  460. "taskTypeDTO": {
  461. "hosId": {
  462. "id": this.hosId
  463. },
  464. "associationType": {
  465. "key": "association_types",
  466. "value": "inspect",
  467. },
  468. },
  469. },
  470. };
  471. uni.showLoading({
  472. mask: true,
  473. title: '加载中'
  474. })
  475. post("/simple/data/fetchDataList/taskTypeConfig", postData).then((res) => {
  476. if (res.status == 200) {
  477. this.configObj = res.list[0];
  478. this.getInfo(patientCode);
  479. }
  480. })
  481. },
  482. // 请求详细页面的数据
  483. getInfo(patientCode) {
  484. uni.showLoading({
  485. title: "加载中",
  486. mask: true,
  487. });
  488. post("/nurse/workOrder/getPatientInspectInfo", {
  489. patientCode,
  490. queryInspect: 1,
  491. }).then((res) => {
  492. uni.hideLoading();
  493. if (res.status == 200) {
  494. res.data.inspectListMap = res.data.inspectListMap || {};
  495. this.isEmpty = Object.keys(res.data.inspectListMap).length === 0;
  496. for(let i of Object.keys(res.data.inspectListMap)){
  497. let x = res.data.inspectListMap[i]
  498. for(let e of x){
  499. e.newTime = dayjs(new Date(e.yyTime)).format('MM-DD HH:mm')
  500. if(e.endCheckTime){
  501. e.newTime2 = dayjs(new Date(e.endCheckTime)).format('HH:mm')
  502. }else{
  503. let date = dayjs(new Date(e.yyTime));
  504. let newDate = date.add(this.configObj.yytimeGapMinute, 'minute');
  505. e.newTime2 = newDate.format('HH:mm');
  506. }
  507. e.yyEndTime = e.newTime +'--'+ e.newTime2
  508. }
  509. }
  510. // console.log(222, res.data.inspectListMap)
  511. this.infoDATA = res.data;
  512. } else {
  513. uni.showToast({
  514. icon: "none",
  515. title: res.msg || "接口获取数据失败!",
  516. });
  517. }
  518. });
  519. },
  520. },
  521. onLoad(options) {
  522. console.log('options', options);
  523. this.options = options;
  524. this.getInspectConfig(this.options.patientCode)
  525. // #ifdef APP-PLUS
  526. webHandle("no", "app");
  527. // #endif
  528. // #ifdef H5
  529. webHandle("no", "wx");
  530. // #endif
  531. },
  532. onShow() {
  533. this.SMFlag = true;
  534. }
  535. };
  536. </script>
  537. <style lang="less" scoped>
  538. /deep/ uni-checkbox:not([disabled]) .uni-checkbox-input:hover{
  539. border-color: #49B856!important;
  540. }
  541. .page_item_btns{
  542. display: flex;
  543. justify-content: space-between;
  544. align-items: center;
  545. margin-top: 16rpx;
  546. margin-bottom: 16rpx;
  547. .page_item_btn {
  548. flex: 1;
  549. height: 88rpx;
  550. background-image: linear-gradient(to right, #72c172, #3bb197);
  551. border-radius: 8rpx;
  552. line-height: 88rpx;
  553. color: #fff;
  554. font-size: 36rpx;
  555. font-weight: 700;
  556. text-align: center;
  557. margin-right: 24rpx;
  558. &:first-of-type{
  559. margin-left: 24rpx;
  560. }
  561. }
  562. .toolbar {
  563. flex: 1;
  564. z-index: 999;
  565. height: 88rpx;
  566. display: flex;
  567. justify-content: center;
  568. align-items: center;
  569. box-sizing: border-box;
  570. border-radius: 4rpx;
  571. background-color: #E5E8ED;
  572. margin-right: 24rpx;
  573. .toolbar-icon {
  574. font-size: 52rpx;
  575. margin-right: 16rpx;
  576. color: #07863c;
  577. }
  578. .toolbar-sao {
  579. font-size: 36rpx;
  580. color: #333;
  581. }
  582. }
  583. }
  584. .newicon-weibiaoti2010104{
  585. margin-left: 8rpx;
  586. }
  587. .patientInformationInfo {
  588. background-color: #F7F7F7;
  589. display: flex;
  590. flex-direction: column;
  591. height: 100vh;
  592. .zwsj {
  593. flex: 1;
  594. min-height: 0;
  595. text-align: center;
  596. .zwsj-img {
  597. width: 560rpx;
  598. }
  599. .zwsj-txt {
  600. font-size: 36rpx;
  601. font-weight: 700;
  602. margin-top: 20rpx;
  603. text-align: center;
  604. }
  605. }
  606. .page_head {
  607. background-color: #49b856;
  608. color: #fff;
  609. .title {
  610. font-size: 48rpx;
  611. padding-top: 24rpx;
  612. text-align: center;
  613. }
  614. .remark{
  615. display: flex;
  616. margin: 16rpx 27rpx;
  617. .remarkTitle{
  618. flex-shrink: 0;
  619. }
  620. .remarkInfo{
  621. flex-shrink: 1;
  622. }
  623. }
  624. .patientCode {
  625. margin-left: 12rpx;
  626. font-size: 28rpx;
  627. }
  628. .info {
  629. margin: 8rpx 0;
  630. height: 80rpx;
  631. display: flex;
  632. justify-content: center;
  633. align-items: center;
  634. .bedNum,
  635. .waitingCount {
  636. width: 300rpx;
  637. height: 100%;
  638. display: flex;
  639. flex-direction: column;
  640. justify-content: center;
  641. align-items: center;
  642. .info_h {
  643. font-size: 30rpx;
  644. }
  645. .info_b {
  646. font-size: 26rpx;
  647. margin-top: 8rpx;
  648. }
  649. }
  650. .bedNum {
  651. position: relative;
  652. &:after {
  653. content: "";
  654. position: absolute;
  655. width: 4rpx;
  656. height: 50rpx;
  657. right: -2rpx;
  658. top: 15rpx;
  659. background-color: #fff;
  660. }
  661. }
  662. }
  663. }
  664. .scrollContent{
  665. flex: 1;
  666. min-height: 0;
  667. }
  668. .page_item {
  669. // margin-bottom: 10rpx;
  670. border-radius: 8rpx;
  671. overflow: hidden;
  672. .splitLine{
  673. height: 50rpx;
  674. display: flex;
  675. align-items: center;
  676. justify-content: center;
  677. color: #8F8F8F;
  678. .splitLineFlex{
  679. flex: 1;
  680. display: flex;
  681. align-items: center;
  682. justify-content: center;
  683. .splitLineBox{
  684. width: calc(100% - 48rpx);
  685. height: 1rpx;
  686. background-color: #8F8F8F;
  687. }
  688. }
  689. }
  690. .page_item_info {
  691. margin-top: 10rpx;
  692. padding: 20rpx 16rpx;
  693. text-align: left;
  694. line-height: 60rpx;
  695. font-size: 30rpx;
  696. background: #fff;
  697. &.mt0{
  698. margin-top: 0;
  699. }
  700. .buildOrder{
  701. width: 258rpx;
  702. height: 72rpx;
  703. background: #49B856;
  704. border-radius: 6rpx;
  705. margin: 0 auto;
  706. color: #FFFFFF;
  707. display: flex;
  708. align-items: center;
  709. justify-content: center;
  710. font-size: 30rpx;
  711. }
  712. .page_item_info_title {
  713. font-weight: 700;
  714. &.btn {
  715. display: flex;
  716. button {
  717. font-size: 28rpx;
  718. color: #49b856;
  719. height: 50rpx;
  720. line-height: 50rpx;
  721. margin: 0;
  722. }
  723. }
  724. &.row{
  725. display: flex;
  726. align-items: center;
  727. justify-content: space-between;
  728. }
  729. text {
  730. font-weight: normal;
  731. &.red {
  732. color: red;
  733. }
  734. &.bold{
  735. font-weight: 700;
  736. }
  737. }
  738. }
  739. }
  740. }
  741. }
  742. </style>