quickCreateOrder.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596
  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['固定科室']))">
  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['固定科室']))">
  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. uni.navigateTo({
  160. url: "/pages/patientBuild/patientBuild",
  161. });
  162. },
  163. },
  164. ];
  165. } else {
  166. this.btns = [{
  167. name: "返回列表",
  168. type: "default",
  169. click: () => {
  170. uni.navigateTo({
  171. url:'/pages/patientList/patientList'
  172. })
  173. },
  174. }, ];
  175. }
  176. }
  177. },
  178. methods: {
  179. ...mapMutations('other', ['changeSearchDeptParams', 'changeSearchDeptResultList']),
  180. // 添加备注
  181. addRemarks(customRemark) {
  182. this.remarksFocus = false;
  183. this.$nextTick(() => {
  184. this.remarksFocus = true;
  185. });
  186. this.workOrderRemark += customRemark;
  187. },
  188. //获取所有数据
  189. getData(qucikCreateOrderType, qucikCreateOrderTypeId) {
  190. if (qucikCreateOrderType === 'patient') {
  191. //患者建单,则无需请求
  192. this.getBuildTrip(this.patientBuildTrip);
  193. return;
  194. }
  195. uni.showLoading({
  196. title: "加载中",
  197. });
  198. let postData1 = {};
  199. let postData2 = {
  200. taskTypeId: qucikCreateOrderTypeId,
  201. deptId: this.loginInfo.user.dept.id,
  202. };
  203. if (qucikCreateOrderType === "specimen") {
  204. //标本快捷建单
  205. postData1 = {
  206. taskTypeId: qucikCreateOrderTypeId,
  207. deptId: this.loginInfo.user.dept.id,
  208. };
  209. } else if (qucikCreateOrderType === "other") {
  210. //其他临床服务快捷建单
  211. postData1 = {
  212. taskTypeId: qucikCreateOrderTypeId,
  213. };
  214. }
  215. Promise.all([reqBuildTrip(postData1), reqRecentRemarks(postData2)]).then(
  216. (values) => {
  217. uni.hideLoading();
  218. this.getBuildTrip(values[0]);
  219. this.getRecentRemarks(values[1]);
  220. }
  221. );
  222. },
  223. // 获取数据(除历史输入)
  224. getBuildTrip(res) {
  225. res = cloneDeep(res);
  226. if (
  227. res.status == 200 ||
  228. res.status == 100012 ||
  229. res.status == 100013 ||
  230. res.status == 100014 ||
  231. res.status == 100015
  232. ) {
  233. // 处理返回的数据
  234. if (res.customRemarks) {
  235. res.customRemarks = res.customRemarks.split("$");
  236. } else {
  237. res.customRemarks = [];
  238. }
  239. // 处理msg
  240. res.msg = res.msg || '';
  241. if (res.msg.includes("<b>")) {
  242. res.msg = res.msg.replace(/<b>/g, '<text class="green">');
  243. res.msg = res.msg.replace(/<\/b>/g, "</text>");
  244. }
  245. if (res.start) {
  246. //其他服务建单
  247. if (
  248. res.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['默认发起科室'] ||
  249. res.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室']) {
  250. this.startDept = res.start.start.list[0];
  251. }
  252. if (
  253. res.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室范围'] ||
  254. res.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['自主填写'] ||
  255. res.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室类型']
  256. ) {
  257. if (this.queryParams.isShow) {
  258. this.startDept = this.searchDeptResultList.start || {};
  259. } else {
  260. this.changeSearchDeptResultList({});
  261. }
  262. }
  263. }
  264. if (res.end) {
  265. //其他服务建单
  266. if (
  267. res.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['默认发起科室'] ||
  268. res.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室']) {
  269. this.endDept = res.end.end.list[0];
  270. }
  271. if (
  272. res.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室范围'] ||
  273. res.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['自主填写'] ||
  274. res.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室类型']
  275. ) {
  276. if (this.queryParams.isShow) {
  277. this.endDept = this.searchDeptResultList.end || {};
  278. } else {
  279. this.changeSearchDeptResultList({});
  280. }
  281. }
  282. }
  283. this.dataObj = res;
  284. } else {
  285. this.$refs.seiminModel.show({
  286. skin: "toast",
  287. icon: "error",
  288. content: res.msg || "获取数据失败",
  289. });
  290. throw new Error(res.msg || '获取数据失败');
  291. }
  292. },
  293. // 获取历史输入
  294. getRecentRemarks(res) {
  295. if (res.state == 200 || res.state == 201) {
  296. this.historyCustomRemarks = res.data || [];
  297. } else {
  298. this.$refs.seiminModel.show({
  299. skin: "toast",
  300. icon: "error",
  301. content: res.msg || "获取数据失败",
  302. });
  303. throw new Error(res.msg || '获取数据失败');
  304. }
  305. },
  306. // 提交数据,建单
  307. submitData() {
  308. let postData = {};
  309. uni.showLoading({
  310. title: "加载中",
  311. mask: true,
  312. });
  313. if (this.qucikCreateOrderType === "specimen") {
  314. //标本建单
  315. postData = {
  316. urgent: 0,
  317. workOrder: {
  318. sourceId: SOURCEID["护士端"],
  319. workOrderRemark: this.workOrderRemark,
  320. taskType: {
  321. id: this.qucikCreateOrderTypeId,
  322. },
  323. createDept: this.loginInfo.user.dept.id,
  324. startDept: {
  325. id: this.loginInfo.user.dept.id,
  326. },
  327. },
  328. };
  329. } else if (this.qucikCreateOrderType === "other") {
  330. // 其他服务建单
  331. let startDept = {
  332. id: this.startDept.id,
  333. };; //起点科室
  334. let endDepts = [{
  335. id: this.endDept.id,
  336. }]; //终点科室
  337. // 验证起点科室和终点科室必填
  338. if (!startDept.id) {
  339. this.$refs.seiminModel.show({
  340. skin: "toast",
  341. icon: "error",
  342. content: "请选择起点科室",
  343. });
  344. uni.hideLoading();
  345. return;
  346. }
  347. if (!endDepts[0].id) {
  348. this.$refs.seiminModel.show({
  349. skin: "toast",
  350. icon: "error",
  351. content: "请选择终点科室",
  352. });
  353. uni.hideLoading();
  354. return;
  355. }
  356. //请求参数
  357. postData = {
  358. workOrder: {
  359. sourceId: SOURCEID["护士端"],
  360. workOrderRemark: this.workOrderRemark,
  361. taskType: {
  362. id: this.qucikCreateOrderTypeId,
  363. },
  364. createDept: this.loginInfo.user.dept.id,
  365. startDept,
  366. endDepts,
  367. },
  368. };
  369. }
  370. reqBuildOrder(postData).then((res) => {
  371. uni.hideLoading();
  372. if (res.status == 200) {
  373. this.$refs.seiminModel.show({
  374. skin: "toast",
  375. content: "创建成功",
  376. btns: [{
  377. name: "知道了",
  378. textColor: "#49B856",
  379. flex: 1,
  380. click() {
  381. uni.navigateTo({
  382. url: "/pages/index/index",
  383. });
  384. },
  385. }, ],
  386. });
  387. } else {
  388. this.$refs.seiminModel.show({
  389. skin: "toast",
  390. icon: "error",
  391. content: res.msg || "建单失败",
  392. });
  393. throw new Error(res.msg || '建单失败');
  394. }
  395. });
  396. },
  397. //关闭
  398. closePicker() {
  399. this.$refs.sPicker._close();
  400. },
  401. //打开
  402. openPicker() {
  403. this.$refs.sPicker._open();
  404. },
  405. //确定:接收子组件传来的参数
  406. confirmPicker(checkedObj) {
  407. this[this.selectdDeptType + 'Dept'] = {
  408. id: checkedObj.value,
  409. dept: checkedObj.label,
  410. deptalias: checkedObj.labelAlias
  411. };
  412. // 防止后选择不回显
  413. let searchDeptResultList = this.searchDeptResultList;
  414. searchDeptResultList[this.selectdDeptType] = {
  415. id: checkedObj.value,
  416. dept: checkedObj.label,
  417. deptalias: checkedObj.labelAlias
  418. }
  419. this.changeSearchDeptResultList(searchDeptResultList);
  420. },
  421. // 选择起点科室
  422. selectDept(type) {
  423. this.selectdDeptType = type; //存储类型
  424. if (
  425. (this.dataObj.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['默认发起科室'] ||
  426. this.dataObj.start.start.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室']) &&
  427. type === 'start') {
  428. //默认科室和固定科室不能选科室
  429. return;
  430. }
  431. if (
  432. (this.dataObj.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['默认发起科室'] ||
  433. this.dataObj.end.end.departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室']) &&
  434. type === 'end') {
  435. //默认科室和固定科室不能选科室
  436. return;
  437. }
  438. if (this.dataObj[type][type].departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室范围']) {
  439. // 固定科室范围
  440. this.pickerTitle = type === 'start' ? '请选择起点科室' : '请选择终点科室';
  441. this.deptList = this.dataObj[type][type].list.map(v => ({
  442. value: v.id,
  443. label: v.dept,
  444. labelAlias: v.deptalias
  445. }))
  446. console.log(this.deptList, this.pickerTitle)
  447. this.openPicker();
  448. } else if (this.dataObj[type][type].departmentStrategy == this.DEPARTMENT_STRATEGY['自主填写'] || this.dataObj[type][type].departmentStrategy ==
  449. this.DEPARTMENT_STRATEGY['固定科室类型']) {
  450. // 固定科室类型,自主选择
  451. let params = {
  452. backUrl: "/pages/quickCreateOrder/quickCreateOrder?isShow=true", //返回的url
  453. type: `selectDept_${type}_qucikCreateOrder`, //快捷建单选择起点科室
  454. ids: this.dataObj[type].deptIds || '',
  455. departmentStrategy: this.dataObj[type][type].departmentStrategy, //固定科室类型,自主选择
  456. };
  457. if (this.dataObj[type][type].departmentStrategy == this.DEPARTMENT_STRATEGY['固定科室类型']) {
  458. //固定科室类型
  459. params.deptType = this.dataObj[type][type][type + 'TypeId']; //科室类型
  460. }
  461. this.changeSearchDeptParams(params);
  462. uni.navigateTo({
  463. url: "/pages/searchDept/searchDept",
  464. });
  465. }
  466. }
  467. },
  468. onLoad(queryParams) {
  469. this.patientMsg = `您选择类型为<b class="green">${this.patientTaskType.taskName}</b>,需要填写科室,选择完成后点击下一步`;
  470. this.queryParams = queryParams;
  471. if (this.qucikCreateOrderType === 'patient') {
  472. //患者建单选科室
  473. this.btns = [{
  474. name: "返回列表",
  475. type: "default",
  476. click: () => {
  477. uni.navigateTo({
  478. url:'/pages/patientList/patientList'
  479. })
  480. },
  481. }, ];
  482. } else {
  483. this.btns = [{
  484. name: "回到首页",
  485. type: "default",
  486. click: () => {
  487. uni.navigateTo({
  488. url: "/pages/index/index",
  489. });
  490. },
  491. },
  492. {
  493. name: "确认",
  494. type: "primary",
  495. click: () => {
  496. this.submitData();
  497. },
  498. },
  499. ]
  500. }
  501. this.getData(this.qucikCreateOrderType, this.qucikCreateOrderTypeId);
  502. },
  503. };
  504. </script>
  505. <style lang="scss" scoped>
  506. .quickCreateOrder {
  507. margin-bottom: 100rpx;
  508. .qco_msg {
  509. min-height: 144rpx;
  510. padding: 32rpx;
  511. color: #999;
  512. line-height: 40rpx;
  513. font-size: 28rpx;
  514. text-align: center;
  515. }
  516. // 起点科室,终点科室
  517. .select_block {
  518. padding: 0 30rpx;
  519. height: 88rpx;
  520. font-size: 34rpx;
  521. background-color: #fff;
  522. @include border(top);
  523. @include flex(space-between, center);
  524. .select_label {
  525. color: #000;
  526. &.disableColor {
  527. color: #999;
  528. }
  529. }
  530. .select_placeholder {
  531. color: #888;
  532. @include flex(flex-start, center);
  533. .pda-xiangyou {
  534. font-size: 24rpx;
  535. margin-left: 30rpx;
  536. }
  537. }
  538. }
  539. // 备注
  540. .remarks {
  541. min-height: 150rpx;
  542. background-color: #fff;
  543. padding: 22rpx 25rpx;
  544. @include border(top);
  545. @include border(bottom);
  546. .remarks_textarea {
  547. width: 100%;
  548. min-height: 100rpx;
  549. }
  550. }
  551. // 快捷输入,历史输入
  552. .quickAndHistory {
  553. padding: 43rpx 25rpx 0;
  554. .quickAndHistory_header {
  555. font-weight: bold;
  556. font-size: 34rpx;
  557. padding-bottom: 24rpx;
  558. color: #333;
  559. }
  560. .quickAndHistory_container {
  561. @include flex;
  562. flex-wrap: wrap;
  563. .quickAndHistory_item {
  564. height: 66rpx;
  565. font-size: 28rpx;
  566. border-radius: 33rpx;
  567. background-color: #fff;
  568. line-height: 66rpx;
  569. padding: 0 24rpx;
  570. color: #666;
  571. margin-bottom: 11rpx;
  572. margin-right: 24rpx;
  573. @include clamp;
  574. }
  575. }
  576. }
  577. }
  578. </style>