patientBuild.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. <template>
  2. <view class="patientBuild">
  3. <view class="qco_msg" v-html="patientMsg"></view>
  4. <view class="select_block_wrap">
  5. <view class="uni-list">
  6. <checkbox-group @change="checkboxChange">
  7. <label class="select_block" v-for="good in goods" :key="good.value">
  8. <checkbox color="#09BB07" :value="good.value" :checked="good.checked" />
  9. <view>{{good.name}}</view>
  10. </label>
  11. </checkbox-group>
  12. </view>
  13. </view>
  14. <!-- 加急 -->
  15. <view class="remarks" v-if="patientTaskType.allowUrgent == 1">
  16. <view class="remarks_nav">
  17. 是否加急
  18. </view>
  19. <view class="remarks_btn">
  20. <text class="remarks_btn_name">加急</text>
  21. <switch class="remarks_btn_value" color="#09BB07" @change="switchChange" />
  22. </view>
  23. <textarea v-if="isUrgent" class="remarks_textarea" auto-height :maxlength="100" placeholder-style="color:#999;"
  24. placeholder="请填写加急原因" v-model.trim="urgentRemark" />
  25. <view class="remarks_tips"
  26. v-if="(patientTaskType.associationType.value === ASSOCIATION_TYPES['患者其他服务业务'] && patientTaskType.appointmentOtherSwitch == 1) ||(patientTaskType.associationType.value === ASSOCIATION_TYPES['患者陪检业务'] && patientTaskType.appointmentSwitch == 1)">
  27. <view class="tips">系统支持提前预约送检服务,您是否需要!</view>
  28. <view class="tips">我不需要预约,希望送检人员立即上门,点击立即建单;</view>
  29. <view class="tips">我需要提前预约送检服务,点击预约建单;</view>
  30. </view>
  31. </view>
  32. <!-- 底部 -->
  33. <seiminFooterBtn :btns="btns"></seiminFooterBtn>
  34. <seiminModel ref="seiminModel"></seiminModel>
  35. </view>
  36. </template>
  37. <script>
  38. import cloneDeep from 'lodash/cloneDeep';
  39. import {
  40. mapState,
  41. } from "vuex";
  42. import {
  43. ASSOCIATION_TYPES
  44. } from "../../utils/enum.association_types.js";
  45. export default {
  46. data() {
  47. return {
  48. ASSOCIATION_TYPES,
  49. // 是否加急
  50. isUrgent: false,
  51. // 设备
  52. goods: [],
  53. //患者建单信息展示
  54. patientMsg: '',
  55. // 传递过来的参数
  56. queryParams: {},
  57. // 加急原因
  58. urgentRemark: "",
  59. //底部按钮
  60. btns: [],
  61. };
  62. },
  63. computed: {
  64. ...mapState('other', [
  65. 'patientBuildTrip',
  66. 'patientTaskType',
  67. 'selectedPatient'
  68. ]),
  69. },
  70. methods: {
  71. // 切换是否加急
  72. switchChange(e) {
  73. this.isUrgent = e.detail.value;
  74. this.urgentRemark = '';
  75. },
  76. // 选择设备
  77. checkboxChange: function(e) {
  78. console.log(e, this.goods);
  79. var goods = this.goods,
  80. values = e.detail.value;
  81. for (var i = 0, lenI = goods.length; i < lenI; ++i) {
  82. const item = goods[i]
  83. if (values.includes(item.value)) {
  84. this.$set(item, 'checked', true)
  85. } else {
  86. this.$set(item, 'checked', false)
  87. }
  88. }
  89. },
  90. // 立即建单
  91. buildOrder() {
  92. console.log(this.urgentRemark)
  93. console.log(this.isUrgent)
  94. console.log(this.goods)
  95. // 加急原因非空
  96. if (this.isUrgent && !this.urgentRemark) {
  97. this.$refs.seiminModel.show({
  98. skin: 'toast',
  99. icon: 'warn',
  100. content: '请填写加急原因',
  101. })
  102. return;
  103. }
  104. }
  105. },
  106. onLoad(queryParams) {
  107. this.patientMsg = `患者<b class="green">${this.selectedPatient.patientName}</b>即将出科,请您选择送检人员需携带哪些设备!`;
  108. let goods = this.patientBuildTrip.goods || [];
  109. this.goods = goods;
  110. this.queryParams = queryParams;
  111. if (
  112. (this.patientTaskType.associationType.value === ASSOCIATION_TYPES['患者其他服务业务'] && this.patientTaskType
  113. .appointmentOtherSwitch == 1) ||
  114. (this.patientTaskType.associationType.value === ASSOCIATION_TYPES['患者陪检业务'] && this.patientTaskType
  115. .appointmentSwitch == 1)
  116. ) {
  117. //患者陪检业务或患者其他服务业务,并且预约建单开关打开的情况下
  118. this.btns = [{
  119. name: "上一步",
  120. type: "primary",
  121. click: () => {
  122. uni.navigateBack();
  123. },
  124. }, {
  125. name: "预约建单",
  126. type: "primary",
  127. click: () => {
  128. alert('预约建单');
  129. },
  130. }, {
  131. name: "立即建单",
  132. type: "primary",
  133. click: () => {
  134. this.buildOrder();
  135. },
  136. }, ];
  137. } else {
  138. this.btns = [{
  139. name: "上一步",
  140. type: "primary",
  141. click: () => {
  142. uni.navigateBack();
  143. },
  144. }, {
  145. name: "立即建单",
  146. type: "primary",
  147. click: () => {
  148. this.buildOrder();
  149. },
  150. }, ];
  151. }
  152. },
  153. };
  154. </script>
  155. <style lang="scss" scoped>
  156. .patientBuild {
  157. margin-bottom: 100rpx;
  158. ::v-deep .uni-checkbox-input {
  159. border-radius: 50%;
  160. }
  161. ::v-deep .uni-checkbox-input-checked {
  162. background-color: #09BB07;
  163. &:before {
  164. color: #fff;
  165. }
  166. }
  167. ::v-deep uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
  168. border-color: #09BB07;
  169. }
  170. .qco_msg {
  171. min-height: 144rpx;
  172. padding: 32rpx;
  173. color: #999;
  174. line-height: 40rpx;
  175. font-size: 28rpx;
  176. text-align: center;
  177. }
  178. .select_block_wrap {
  179. @include border(top);
  180. // 设备
  181. .select_block {
  182. padding: 0 30rpx;
  183. height: 88rpx;
  184. font-size: 34rpx;
  185. background-color: #fff;
  186. position: relative;
  187. @include flex(flex-start, center);
  188. &:last-of-type {
  189. &::after {
  190. opacity: 0;
  191. }
  192. }
  193. &::after {
  194. content: '';
  195. height: 1px;
  196. width: calc(100vw - 30rpx);
  197. background-color: #E5E5E5;
  198. position: absolute;
  199. right: 0;
  200. bottom: 0;
  201. }
  202. .select_label {
  203. color: #000;
  204. }
  205. }
  206. }
  207. // 备注
  208. .remarks {
  209. min-height: 150rpx;
  210. background-color: #f9fafb;
  211. @include border(top);
  212. .remarks_nav {
  213. padding: 0 25rpx;
  214. height: 66rpx;
  215. font-size: 28rpx;
  216. color: #666;
  217. @include flex(flex-start, center);
  218. @include border(bottom);
  219. }
  220. .remarks_btn {
  221. padding: 0 25rpx;
  222. font-size: 34rpx;
  223. height: 88rpx;
  224. background-color: #fff;
  225. @include border(bottom);
  226. @include flex(space-between, center);
  227. }
  228. .remarks_textarea {
  229. padding: 22rpx 25rpx;
  230. width: 100%;
  231. min-height: 150rpx;
  232. background-color: #fff;
  233. @include border(bottom);
  234. }
  235. .remarks_tips {
  236. padding: 32rpx 25rpx;
  237. color: #999;
  238. font-size: 28rpx;
  239. line-height: 40rpx;
  240. }
  241. }
  242. }
  243. </style>