quickCreateOrder.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606
  1. <template>
  2. <view class="quickCreateOrder">
  3. <view class="qco_msg" v-html="patientMsg" v-if="qucikCreateOrderType === 'patient'"></view>
  4. <view class="qco_msg" v-html="dataObj.msg" v-else></view>
  5. <!-- 起点科室,终点科室 -->
  6. <block
  7. v-if="(qucikCreateOrderType === 'other' || qucikCreateOrderType === 'patient') && (dataObj.start || dataObj.end)">
  8. <view class="select_block" @click="selectDept('start')"
  9. v-if="qucikCreateOrderType !== 'patient'||(qucikCreateOrderType === 'patient'&&!(dataObj.start.start.departmentStrategy == DEPARTMENT_STRATEGY['默认发起科室'] || dataObj.start.start.departmentStrategy == DEPARTMENT_STRATEGY['固定科室']|| dataObj.start.start.departmentStrategy == DEPARTMENT_STRATEGY['默认患者所在科室']))">
  10. <!-- 默认科室和固定科室和默认患者所在科室 -->
  11. <text class="select_label"
  12. :class="{disableColor:dataObj.start.start.departmentStrategy == DEPARTMENT_STRATEGY['默认发起科室'] || dataObj.start.start.departmentStrategy == DEPARTMENT_STRATEGY['固定科室']}">起点科室</text>
  13. <view class="select_placeholder"
  14. v-if="dataObj.start.start.departmentStrategy == DEPARTMENT_STRATEGY['默认发起科室'] || dataObj.start.start.departmentStrategy == DEPARTMENT_STRATEGY['固定科室']">
  15. {{deptDisplay == 1? startDept.dept: startDept.deptalias}}
  16. </view>
  17. <!-- 固定科室范围,固定科室类型,自主选择 -->
  18. <view class="select_placeholder" v-else>
  19. <text>{{startDept.id?(deptDisplay == 1? startDept.dept: startDept.deptalias):'请选择起点科室'}}</text>
  20. <text class="pda pda-xiangyou"></text>
  21. </view>
  22. </view>
  23. <view class="select_block" @click="selectDept('end')"
  24. v-if="qucikCreateOrderType !== 'patient'||(qucikCreateOrderType === 'patient'&&!(dataObj.end.end.departmentStrategy == DEPARTMENT_STRATEGY['默认发起科室'] || dataObj.end.end.departmentStrategy == DEPARTMENT_STRATEGY['固定科室']|| dataObj.end.end.departmentStrategy == DEPARTMENT_STRATEGY['默认患者所在科室']))">
  25. <!-- 默认科室和固定科室和默认患者所在科室 -->
  26. <text class="select_label"
  27. :class="{disableColor:dataObj.end.end.departmentStrategy == DEPARTMENT_STRATEGY['默认发起科室'] || dataObj.end.end.departmentStrategy == DEPARTMENT_STRATEGY['固定科室']}">终点科室</text>
  28. <view class="select_placeholder"
  29. v-if="dataObj.end.end.departmentStrategy == DEPARTMENT_STRATEGY['默认发起科室'] || dataObj.end.end.departmentStrategy == DEPARTMENT_STRATEGY['固定科室']">
  30. {{deptDisplay == 1? endDept.dept: endDept.deptalias}}
  31. </view>
  32. <!-- 固定科室范围,固定科室类型,自主选择 -->
  33. <view class="select_placeholder" v-else>
  34. <text>{{endDept.id?(deptDisplay == 1? endDept.dept: endDept.deptalias):'请选择终点科室'}}</text>
  35. <text class="pda pda-xiangyou"></text>
  36. </view>
  37. </view>
  38. </block>
  39. <!-- 备注 -->
  40. <view class="remarks" v-if="dataObj.remarksSwitch == 1">
  41. <textarea :focus="remarksFocus" class="remarks_textarea" auto-height :maxlength="100"
  42. placeholder-style="color:#999" :placeholder="
  43. dataObj.remarksPrompts || '请填写工单备注,不超过100个字符'
  44. " v-model="workOrderRemark" />
  45. </view>
  46. <!-- 快捷输入,历史输入 -->
  47. <view class="quickAndHistory" v-if="dataObj.remarksSwitch == 1 && dataObj.customRemarks.length">
  48. <view class="quickAndHistory_header"> 快捷输入 </view>
  49. <view class="quickAndHistory_container">
  50. <view class="quickAndHistory_item" @click="addRemarks(customRemark)"
  51. v-for="(customRemark, i) in dataObj.customRemarks" :key="i">
  52. {{ customRemark }}
  53. </view>
  54. </view>
  55. </view>
  56. <view class="quickAndHistory" v-if="dataObj.remarksSwitch == 1 && historyCustomRemarks.length">
  57. <view class="quickAndHistory_header"> 历史输入 </view>
  58. <view class="quickAndHistory_container">
  59. <view class="quickAndHistory_item" @click="addRemarks(historyCustomRemark)"
  60. v-for="(historyCustomRemark, i) in historyCustomRemarks" :key="i">
  61. {{ historyCustomRemark }}
  62. </view>
  63. </view>
  64. </view>
  65. <!-- 底部 -->
  66. <seiminFooterBtn :btns="btns"></seiminFooterBtn>
  67. <seiminModel ref="seiminModel"></seiminModel>
  68. <seiminPicker ref="sPicker" :title="pickerTitle" titleColor="#808080" titleFontSize="28rpx" confirmColor="#333"
  69. confirmFontSize="38rpx" confirmFontWeight="500" itemFontSize="28rpx" @onClose="closePicker"
  70. @onConfirm="confirmPicker" :pickerList="deptList">
  71. </seiminPicker>
  72. </view>
  73. </template>
  74. <script>
  75. import cloneDeep from 'lodash/cloneDeep';
  76. import {
  77. mapState,
  78. mapMutations
  79. } from "vuex";
  80. import {
  81. reqBuildTrip,
  82. reqRecentRemarks,
  83. reqBuildOrder,
  84. } from "../../request/api.js";
  85. import {
  86. SOURCEID
  87. } from "../../utils/enum.sourceid.js";
  88. import {
  89. DEPARTMENT_STRATEGY
  90. } from "../../utils/enum.departmentStrategy.js";
  91. export default {
  92. data() {
  93. return {
  94. DEPARTMENT_STRATEGY,
  95. //患者建单信息展示
  96. patientMsg: '',
  97. // 传递过来的参数
  98. queryParams: {},
  99. // 选择的起点科室
  100. startDept: {},
  101. // 选择的终点科室
  102. endDept: {},
  103. // 固定科室范围的科室列表
  104. deptList: [],
  105. //选择起点科室(start)或终点科室(end)
  106. selectdDeptType: '',
  107. //选择院区picker的title
  108. pickerTitle: '',
  109. // 工单备注是否获取焦点
  110. remarksFocus: true,
  111. // 工单备注
  112. workOrderRemark: "",
  113. // 获取到的数据集合对象(历史输入除外)
  114. dataObj: {},
  115. // 历史输入
  116. historyCustomRemarks: [],
  117. //底部按钮
  118. btns: [],
  119. };
  120. },
  121. computed: {
  122. ...mapState('login', ['loginInfo']),
  123. ...mapState('other', [
  124. "qucikCreateOrderType",
  125. "qucikCreateOrderTypeId",
  126. "deptDisplay",
  127. 'searchDeptParams',
  128. 'searchDeptResultList',
  129. 'patientBuildTrip',
  130. 'patientTaskType'
  131. ]),
  132. isWriteDept() {
  133. return {
  134. startDept: this.startDept,
  135. endDept: this.endDept
  136. }
  137. }
  138. },
  139. watch: {
  140. isWriteDept(newVal) {
  141. console.log(newVal);
  142. if (this.qucikCreateOrderType !== 'patient') {
  143. return;
  144. }
  145. if (newVal.startDept.id && newVal.endDept.id) {
  146. this.btns = [{
  147. name: "返回列表",
  148. type: "default",
  149. click: () => {
  150. uni.navigateTo({
  151. url: '/pages/patientList/patientList'
  152. })
  153. },
  154. },
  155. {
  156. name: "下一步",
  157. type: "primary",
  158. click: () => {
  159. this.changePatientBuildData({
  160. key: 'dept',
  161. value: {
  162. startDept: newVal.startDept,
  163. endDept: newVal.endDept,
  164. }
  165. })
  166. uni.navigateTo({
  167. url: "/pages/patientBuild/patientBuild",
  168. });
  169. },
  170. },
  171. ];
  172. } else {
  173. this.btns = [{
  174. name: "返回列表",
  175. type: "default",
  176. click: () => {
  177. uni.navigateTo({
  178. url: '/pages/patientList/patientList'
  179. })
  180. },
  181. }, ];
  182. }
  183. }
  184. },
  185. methods: {
  186. ...mapMutations('other', ['changeSearchDeptParams', 'changeSearchDeptResultList', 'changePatientBuildData']),
  187. // 添加备注
  188. addRemarks(customRemark) {
  189. this.remarksFocus = false;
  190. this.$nextTick(() => {
  191. this.remarksFocus = true;
  192. });
  193. this.workOrderRemark += customRemark;
  194. },
  195. //获取所有数据
  196. getData(qucikCreateOrderType, qucikCreateOrderTypeId) {
  197. if (qucikCreateOrderType === 'patient') {
  198. //患者建单,则无需请求
  199. this.getBuildTrip(this.patientBuildTrip);
  200. return;
  201. }
  202. uni.showLoading({
  203. title: "加载中",
  204. });
  205. let postData1 = {};
  206. let postData2 = {
  207. taskTypeId: qucikCreateOrderTypeId,
  208. deptId: this.loginInfo.user.dept.id,
  209. };
  210. if (qucikCreateOrderType === "specimen") {
  211. //标本快捷建单
  212. postData1 = {
  213. taskTypeId: qucikCreateOrderTypeId,
  214. deptId: this.loginInfo.user.dept.id,
  215. };
  216. } else if (qucikCreateOrderType === "other") {
  217. //其他临床服务快捷建单
  218. postData1 = {
  219. taskTypeId: qucikCreateOrderTypeId,
  220. };
  221. }
  222. Promise.all([reqBuildTrip(postData1), reqRecentRemarks(postData2)]).then(
  223. (values) => {
  224. uni.hideLoading();
  225. this.getBuildTrip(values[0]);
  226. this.getRecentRemarks(values[1]);
  227. }
  228. );
  229. },
  230. // 获取数据(除历史输入)
  231. getBuildTrip(res) {
  232. res = cloneDeep(res);
  233. if (
  234. res.status == 200 ||
  235. res.status == 100012 ||
  236. res.status == 100013 ||
  237. res.status == 100014 ||
  238. res.status == 100015
  239. ) {
  240. // 处理返回的数据
  241. if (res.customRemarks) {
  242. res.customRemarks = res.customRemarks.split("$");
  243. } else {
  244. res.customRemarks = [];
  245. }
  246. // 处理msg
  247. res.msg = res.msg || '';
  248. if (res.msg.includes("<b>")) {
  249. res.msg = res.msg.replace(/<b>/g, '<text class="green">');
  250. res.msg = res.msg.replace(/<\/b>/g, "</text>");
  251. }
  252. if (res.start) {
  253. //其他服务或患者其他服务业务
  254. if (
  255. res.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['默认患者所在科室'] ||
  256. res.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['默认发起科室'] ||
  257. res.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室']) {
  258. this.startDept = res.start.start.list[0];
  259. }
  260. if (
  261. res.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室范围'] ||
  262. res.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['自主填写'] ||
  263. res.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室类型']
  264. ) {
  265. if (this.queryParams.isShow) {
  266. this.startDept = this.searchDeptResultList.start || {};
  267. } else {
  268. this.changeSearchDeptResultList({});
  269. }
  270. }
  271. }
  272. if (res.end) {
  273. //其他服务或患者其他服务业务
  274. if (
  275. res.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['默认患者所在科室'] ||
  276. res.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['默认发起科室'] ||
  277. res.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室']) {
  278. this.endDept = res.end.end.list[0];
  279. }
  280. if (
  281. res.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室范围'] ||
  282. res.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['自主填写'] ||
  283. res.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室类型']
  284. ) {
  285. if (this.queryParams.isShow) {
  286. this.endDept = this.searchDeptResultList.end || {};
  287. } else {
  288. this.changeSearchDeptResultList({});
  289. }
  290. }
  291. }
  292. this.dataObj = res;
  293. } else {
  294. this.$refs.seiminModel.show({
  295. skin: "toast",
  296. icon: "error",
  297. content: res.msg || "获取数据失败",
  298. });
  299. throw new Error(res.msg || '获取数据失败');
  300. }
  301. },
  302. // 获取历史输入
  303. getRecentRemarks(res) {
  304. if (res.state == 200 || res.state == 201) {
  305. this.historyCustomRemarks = res.data || [];
  306. } else {
  307. this.$refs.seiminModel.show({
  308. skin: "toast",
  309. icon: "error",
  310. content: res.msg || "获取数据失败",
  311. });
  312. throw new Error(res.msg || '获取数据失败');
  313. }
  314. },
  315. // 提交数据,建单
  316. submitData() {
  317. let postData = {};
  318. uni.showLoading({
  319. title: "加载中",
  320. mask: true,
  321. });
  322. if (this.qucikCreateOrderType === "specimen") {
  323. //标本建单
  324. postData = {
  325. urgent: 0,
  326. workOrder: {
  327. sourceId: SOURCEID["护士端"],
  328. workOrderRemark: this.workOrderRemark,
  329. taskType: {
  330. id: this.qucikCreateOrderTypeId,
  331. },
  332. createDept: this.loginInfo.user.dept.id,
  333. startDept: {
  334. id: this.loginInfo.user.dept.id,
  335. },
  336. },
  337. };
  338. } else if (this.qucikCreateOrderType === "other") {
  339. // 其他服务建单
  340. let startDept = {
  341. id: this.startDept.id,
  342. };; //起点科室
  343. let endDepts = [{
  344. id: this.endDept.id,
  345. }]; //终点科室
  346. // 验证起点科室和终点科室必填
  347. if (!startDept.id) {
  348. this.$refs.seiminModel.show({
  349. skin: "toast",
  350. icon: "error",
  351. content: "请选择起点科室",
  352. });
  353. uni.hideLoading();
  354. return;
  355. }
  356. if (!endDepts[0].id) {
  357. this.$refs.seiminModel.show({
  358. skin: "toast",
  359. icon: "error",
  360. content: "请选择终点科室",
  361. });
  362. uni.hideLoading();
  363. return;
  364. }
  365. //请求参数
  366. postData = {
  367. workOrder: {
  368. sourceId: SOURCEID["护士端"],
  369. workOrderRemark: this.workOrderRemark,
  370. taskType: {
  371. id: this.qucikCreateOrderTypeId,
  372. },
  373. createDept: this.loginInfo.user.dept.id,
  374. startDept,
  375. endDepts,
  376. },
  377. };
  378. }
  379. reqBuildOrder(postData).then((res) => {
  380. uni.hideLoading();
  381. if (res.status == 200) {
  382. this.$refs.seiminModel.show({
  383. skin: "toast",
  384. content: "创建成功",
  385. btns: [{
  386. name: "知道了",
  387. textColor: "#49B856",
  388. flex: 1,
  389. click() {
  390. uni.navigateTo({
  391. url: "/pages/index/index",
  392. });
  393. },
  394. }, ],
  395. });
  396. } else {
  397. this.$refs.seiminModel.show({
  398. skin: "toast",
  399. icon: "error",
  400. content: res.msg || "建单失败",
  401. });
  402. throw new Error(res.msg || '建单失败');
  403. }
  404. });
  405. },
  406. //关闭
  407. closePicker() {
  408. this.$refs.sPicker._close();
  409. },
  410. //打开
  411. openPicker() {
  412. this.$refs.sPicker._open();
  413. },
  414. //确定:接收子组件传来的参数
  415. confirmPicker(checkedObj) {
  416. this[this.selectdDeptType + 'Dept'] = {
  417. id: checkedObj.value,
  418. dept: checkedObj.label,
  419. deptalias: checkedObj.labelAlias
  420. };
  421. // 防止后选择不回显
  422. let searchDeptResultList = this.searchDeptResultList;
  423. searchDeptResultList[this.selectdDeptType] = {
  424. id: checkedObj.value,
  425. dept: checkedObj.label,
  426. deptalias: checkedObj.labelAlias
  427. }
  428. this.changeSearchDeptResultList(searchDeptResultList);
  429. },
  430. // 选择起点科室
  431. selectDept(type) {
  432. this.selectdDeptType = type; //存储类型
  433. if (
  434. (this.dataObj.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['默认发起科室'] ||
  435. this.dataObj.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室']) &&
  436. type === 'start') {
  437. //默认科室和固定科室不能选科室
  438. return;
  439. }
  440. if (
  441. (this.dataObj.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['默认发起科室'] ||
  442. this.dataObj.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室']) &&
  443. type === 'end') {
  444. //默认科室和固定科室不能选科室
  445. return;
  446. }
  447. if (this.dataObj[type][type].departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室范围']) {
  448. // 固定科室范围
  449. this.pickerTitle = type === 'start' ? '请选择起点科室' : '请选择终点科室';
  450. this.deptList = this.dataObj[type][type].list.map(v => ({
  451. value: v.id,
  452. label: v.dept,
  453. labelAlias: v.deptalias
  454. }))
  455. console.log(this.deptList, this.pickerTitle)
  456. this.openPicker();
  457. } else if (this.dataObj[type][type].departmentStrategy == this.DEPARTMENT_STRATEGY['自主填写'] || this.dataObj[type]
  458. [type].departmentStrategy ==
  459. this.DEPARTMENT_STRATEGY['固定科室类型']) {
  460. // 固定科室类型,自主选择
  461. let params = {
  462. backUrl: "/pages/quickCreateOrder/quickCreateOrder?isShow=true", //返回的url
  463. type: `selectDept_${type}_qucikCreateOrder`, //快捷建单选择起点科室
  464. ids: this.dataObj[type].deptIds || '',
  465. departmentStrategy: this.dataObj[type][type].departmentStrategy, //固定科室类型,自主选择
  466. };
  467. if (this.dataObj[type][type].departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室类型']) {
  468. //固定科室类型
  469. params.deptType = this.dataObj[type][type][type + 'TypeId']; //科室类型
  470. }
  471. this.changeSearchDeptParams(params);
  472. uni.navigateTo({
  473. url: "/pages/searchDept/searchDept",
  474. });
  475. }
  476. }
  477. },
  478. onLoad(queryParams) {
  479. this.queryParams = queryParams;
  480. if (this.qucikCreateOrderType === 'patient') {
  481. this.patientMsg = `您选择类型为<b class="green">${this.patientTaskType.taskName}</b>,需要填写科室,选择完成后点击下一步`;
  482. //患者建单选科室
  483. this.btns = [{
  484. name: "返回列表",
  485. type: "default",
  486. click: () => {
  487. uni.navigateTo({
  488. url: '/pages/patientList/patientList'
  489. })
  490. },
  491. }, ];
  492. } else {
  493. this.btns = [{
  494. name: "回到首页",
  495. type: "default",
  496. click: () => {
  497. uni.navigateTo({
  498. url: "/pages/index/index",
  499. });
  500. },
  501. },
  502. {
  503. name: "确认",
  504. type: "primary",
  505. click: () => {
  506. this.submitData();
  507. },
  508. },
  509. ]
  510. }
  511. this.getData(this.qucikCreateOrderType, this.qucikCreateOrderTypeId);
  512. },
  513. };
  514. </script>
  515. <style lang="scss" scoped>
  516. .quickCreateOrder {
  517. margin-bottom: 100rpx;
  518. .qco_msg {
  519. min-height: 144rpx;
  520. padding: 32rpx;
  521. color: #999;
  522. line-height: 40rpx;
  523. font-size: 28rpx;
  524. text-align: center;
  525. }
  526. // 起点科室,终点科室
  527. .select_block {
  528. padding: 0 30rpx;
  529. height: 88rpx;
  530. font-size: 34rpx;
  531. background-color: #fff;
  532. @include border(top);
  533. @include flex(space-between, center);
  534. .select_label {
  535. color: #000;
  536. &.disableColor {
  537. color: #999;
  538. }
  539. }
  540. .select_placeholder {
  541. color: #888;
  542. @include flex(flex-start, center);
  543. .pda-xiangyou {
  544. font-size: 24rpx;
  545. margin-left: 30rpx;
  546. }
  547. }
  548. }
  549. // 备注
  550. .remarks {
  551. min-height: 150rpx;
  552. background-color: #fff;
  553. padding: 22rpx 25rpx;
  554. @include border(top);
  555. @include border(bottom);
  556. .remarks_textarea {
  557. width: 100%;
  558. min-height: 100rpx;
  559. }
  560. }
  561. // 快捷输入,历史输入
  562. .quickAndHistory {
  563. padding: 43rpx 25rpx 0;
  564. .quickAndHistory_header {
  565. font-weight: bold;
  566. font-size: 34rpx;
  567. padding-bottom: 24rpx;
  568. color: #333;
  569. }
  570. .quickAndHistory_container {
  571. @include flex;
  572. flex-wrap: wrap;
  573. .quickAndHistory_item {
  574. height: 66rpx;
  575. font-size: 28rpx;
  576. border-radius: 33rpx;
  577. background-color: #fff;
  578. line-height: 66rpx;
  579. padding: 0 24rpx;
  580. color: #666;
  581. margin-bottom: 11rpx;
  582. margin-right: 24rpx;
  583. @include clamp;
  584. }
  585. }
  586. }
  587. }
  588. </style>