quickCreateOrder.vue 16 KB

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