quickCreateOrder.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. <template>
  2. <view class="quickCreateOrder">
  3. <view class="qco_msg" v-html="dataObj.msg"></view>
  4. <!-- 起点科室,终点科室 -->
  5. <block v-if="qucikCreateOrderType === 'other'">
  6. <view class="select_block">
  7. <text class="select_label">起点科室</text>
  8. <view class="select_placeholder">请选择起点科室<text class="pda pda-xiangyou"></text></view>
  9. </view>
  10. <view class="select_block">
  11. <text class="select_label">终点科室</text>
  12. <view class="select_placeholder">请选择终点科室<text class="pda pda-xiangyou"></text></view>
  13. </view>
  14. </block>
  15. <!-- 备注 -->
  16. <view class="remarks" v-if="dataObj.remarksSwitch == 1">
  17. <textarea :focus="remarksFocus" class="remarks_textarea" auto-height :maxlength="100"
  18. placeholder-style="color:#999" :placeholder="dataObj.remarksPrompts|| '请填写工单备注,不超过100个字符'"
  19. v-model="workOrderRemark" />
  20. </view>
  21. <!-- 快捷输入,历史输入 -->
  22. <view class="quickAndHistory" v-if="dataObj.remarksSwitch == 1 && dataObj.customRemarks.length">
  23. <view class="quickAndHistory_header">
  24. 快捷输入
  25. </view>
  26. <view class="quickAndHistory_container">
  27. <view class="quickAndHistory_item" @click="addRemarks(customRemark)"
  28. v-for="(customRemark,i) in dataObj.customRemarks" :key="i">
  29. {{customRemark}}
  30. </view>
  31. </view>
  32. </view>
  33. <view class="quickAndHistory" v-if="dataObj.remarksSwitch == 1">
  34. <view class="quickAndHistory_header">
  35. 历史输入
  36. </view>
  37. <view class="quickAndHistory_container">
  38. <view class="quickAndHistory_item" @click="addRemarks(historyCustomRemark)"
  39. v-for="(historyCustomRemark,i) in historyCustomRemarks" :key="i">
  40. {{historyCustomRemark}}
  41. </view>
  42. </view>
  43. </view>
  44. <!-- 底部 -->
  45. <seiminFooterBtn :btns="btns"></seiminFooterBtn>
  46. <seiminModel ref="seiminModel"></seiminModel>
  47. </view>
  48. </template>
  49. <script>
  50. import {
  51. mapState
  52. } from 'vuex';
  53. import {
  54. reqBuildTrip,
  55. reqRecentRemarks,
  56. reqBuildOrder
  57. } from '../../request/api.js';
  58. import {
  59. SOURCEID
  60. } from '../../utils/enum.sourceid.js';
  61. export default {
  62. data() {
  63. return {
  64. // 工单备注是否获取焦点
  65. remarksFocus: true,
  66. // 工单备注
  67. workOrderRemark: '',
  68. // 获取到的数据集合对象(历史输入除外)
  69. dataObj: {},
  70. // 历史输入
  71. historyCustomRemarks: [],
  72. //底部按钮
  73. btns: [{
  74. name: '回到首页',
  75. type: 'default',
  76. click: () => {
  77. uni.navigateTo({
  78. url: '/pages/index/index'
  79. })
  80. }
  81. },
  82. {
  83. name: '确认',
  84. type: 'primary',
  85. click: () => {
  86. this.submitData();
  87. }
  88. }
  89. ]
  90. };
  91. },
  92. computed: {
  93. ...mapState(['qucikCreateOrderType', 'qucikCreateOrderTypeId']),
  94. ...mapState('user', ['loginInfoUserDeptId']),
  95. },
  96. methods: {
  97. // 添加备注
  98. addRemarks(customRemark) {
  99. this.remarksFocus = false;
  100. this.$nextTick(() => {
  101. this.remarksFocus = true;
  102. });
  103. this.workOrderRemark += customRemark;
  104. },
  105. //获取所有数据
  106. getData(qucikCreateOrderType, qucikCreateOrderTypeId) {
  107. uni.showLoading({
  108. title: '加载中'
  109. });
  110. let postData = {
  111. "taskTypeId": qucikCreateOrderTypeId,
  112. "deptId": this.loginInfoUserDeptId,
  113. };
  114. if (qucikCreateOrderType === 'specimen') {
  115. Promise.all([
  116. reqBuildTrip(postData),
  117. reqRecentRemarks(postData)
  118. ]).then(values => {
  119. uni.hideLoading();
  120. this.getBuildTrip(values[0]);
  121. this.getRecentRemarks(values[1]);
  122. })
  123. }
  124. },
  125. // 获取其他数据
  126. getBuildTrip(res) {
  127. if (res.status == 200) {
  128. // 处理返回的数据
  129. if (res.customRemarks) {
  130. res.customRemarks = res.customRemarks.split('$');
  131. } else {
  132. res.customRemarks = []
  133. }
  134. this.dataObj = res;
  135. }
  136. },
  137. // 获取历史输入
  138. getRecentRemarks(res) {
  139. if (res.state == 200) {
  140. this.historyCustomRemarks = res.data || [];
  141. }
  142. },
  143. // 提交数据,建单
  144. submitData() {
  145. uni.showLoading({
  146. title: '加载中',
  147. mask: true
  148. })
  149. let postData = {
  150. urgent: 0,
  151. workOrder: {
  152. sourceId: SOURCEID['护士端'],
  153. workOrderRemark: this.workOrderRemark,
  154. taskType: {
  155. id: this.qucikCreateOrderTypeId
  156. },
  157. createDept: this.loginInfoUserDeptId,
  158. startDept: {
  159. id: this.loginInfoUserDeptId
  160. },
  161. },
  162. };
  163. reqBuildOrder(postData).then(res => {
  164. uni.hideLoading();
  165. if (res.status == 200) {
  166. this.$refs.seiminModel.showChangeDept({
  167. skin: "toast",
  168. content: '创建成功',
  169. btns: [{
  170. name: "知道了",
  171. textColor: "#49B856",
  172. flex: 1,
  173. click() {
  174. uni.navigateTo({
  175. url: '/pages/index/index'
  176. })
  177. }
  178. }]
  179. });
  180. } else {
  181. this.$refs.seiminModel.showChangeDept({
  182. skin: "toast",
  183. icon: 'error',
  184. content: res.msg || '操作失败'
  185. });
  186. }
  187. })
  188. }
  189. },
  190. onLoad() {
  191. this.getData(this.qucikCreateOrderType, this.qucikCreateOrderTypeId);
  192. }
  193. }
  194. </script>
  195. <style lang="scss" scoped>
  196. .quickCreateOrder {
  197. margin-bottom: 100rpx;
  198. .qco_msg {
  199. min-height: 144rpx;
  200. padding: 32rpx 160rpx;
  201. color: #999;
  202. line-height: 40rpx;
  203. font-size: 28rpx;
  204. text-align: center;
  205. b {
  206. color: $defaultColor;
  207. font-weight: normal;
  208. }
  209. }
  210. // 起点科室,终点科室
  211. .select_block {
  212. padding: 0 30rpx;
  213. height: 88rpx;
  214. font-size: 34rpx;
  215. border-top: 1px solid #E5E5E5;
  216. background-color: #fff;
  217. @include flex(space-between, center);
  218. .select_label {
  219. color: #000;
  220. }
  221. .select_placeholder {
  222. color: #888;
  223. @include flex(flex-start, center);
  224. .pda-xiangyou {
  225. font-size: 24rpx;
  226. margin-left: 30rpx;
  227. }
  228. }
  229. }
  230. // 备注
  231. .remarks {
  232. min-height: 150rpx;
  233. background-color: #fff;
  234. border-top: 1px solid #E5E5E5;
  235. border-bottom: 1px solid #E5E5E5;
  236. padding: 22rpx 25rpx;
  237. .remarks_textarea {
  238. width: 100%;
  239. min-height: 100rpx;
  240. }
  241. }
  242. // 快捷输入,历史输入
  243. .quickAndHistory {
  244. padding: 43rpx 25rpx 0;
  245. .quickAndHistory_header {
  246. font-weight: bold;
  247. font-size: 34rpx;
  248. padding-bottom: 24rpx;
  249. color: #333;
  250. }
  251. .quickAndHistory_container {
  252. @include flex;
  253. flex-wrap: wrap;
  254. .quickAndHistory_item {
  255. height: 66rpx;
  256. font-size: 28rpx;
  257. border-radius: 33rpx;
  258. background-color: #fff;
  259. line-height: 66rpx;
  260. padding: 0 24rpx;
  261. color: #666;
  262. margin-bottom: 11rpx;
  263. margin-right: 24rpx;
  264. @include clamp;
  265. }
  266. }
  267. }
  268. }
  269. </style>