quickCreateOrder.vue 19 KB

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