quickCreateOrder.vue 11 KB

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