appointmentInspect.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. <template>
  2. <view class="appointmentInspect">
  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. <scroll-view scroll-y class="scrollHeight">
  8. <label class="inspect_listItem" v-for="inspect in inspects" :key="inspect.value">
  9. <view class="inspect_listItem_header">
  10. <view class="inspect_listItem_header_title">
  11. <checkbox color="#09BB07" :value="inspect.value" :checked="inspect.checked" />
  12. <view class="inspectInfo">
  13. <text class="info">
  14. <text v-if="inspect.yyTime">{{inspect.yyTime|formatDate('MM-dd HH:mm')}}</text>
  15. <text class="dept" v-if="inspect.execDept">
  16. {{deptDisplay == 2?inspect.execDept.deptalias:inspect.execDept.dept}}
  17. </text>
  18. </text>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="inspect_listItem_item">
  23. <view class="inspect_listItem_item_content">
  24. <text class="inspect_listItem_item_name">进行 {{inspect.inspectName || "检查"}}</text>
  25. </view>
  26. </view>
  27. </label>
  28. </scroll-view>
  29. </checkbox-group>
  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. inspects: [],
  51. // 是否加急
  52. isUrgent: false,
  53. // 设备
  54. goods: [],
  55. //患者建单信息展示
  56. patientMsg: '',
  57. // 传递过来的参数
  58. queryParams: {},
  59. //底部按钮
  60. btns: [{
  61. name: "上一步",
  62. type: "primary",
  63. click: () => {
  64. uni.navigateBack();
  65. },
  66. }, {
  67. name: "下一步",
  68. type: "primary",
  69. click: () => {
  70. uni.navigateTo({
  71. url: '/pages/patientBuild/patientBuild'
  72. })
  73. },
  74. }, ],
  75. };
  76. },
  77. computed: {
  78. ...mapState('login', ['loginInfo']),
  79. ...mapState('other', [
  80. "deptDisplay",
  81. 'patientBuildTrip',
  82. 'selectedPatient'
  83. ]),
  84. },
  85. methods: {
  86. // 切换是否加急
  87. switchChange(e) {
  88. this.isUrgent = e.detail.value;
  89. this.urgentRemark = '';
  90. },
  91. // 选择检查
  92. checkboxChange: function(e) {
  93. console.log(e, this.inspects);
  94. var inspects = this.inspects,
  95. values = e.detail.value;
  96. for (var i = 0, lenI = inspects.length; i < lenI; ++i) {
  97. const item = inspects[i]
  98. if (values.includes(item.value)) {
  99. this.$set(item, 'checked', true)
  100. } else {
  101. this.$set(item, 'checked', false)
  102. }
  103. }
  104. },
  105. // 立即建单
  106. buildOrder() {
  107. console.log(this.urgentRemark)
  108. console.log(this.isUrgent)
  109. console.log(this.goods)
  110. // 加急原因非空
  111. if (this.isUrgent && !this.urgentRemark) {
  112. this.$refs.seiminModel.show({
  113. skin: 'toast',
  114. icon: 'warn',
  115. content: '请填写加急原因',
  116. })
  117. return;
  118. }
  119. }
  120. },
  121. onLoad(queryParams) {
  122. this.patientMsg = `以下是患者<b class="green">${this.selectedPatient.patientName}</b>当天预约的检查,请选择本次服务的检查项`;
  123. let inspects = this.patientBuildTrip.data || [];
  124. inspects.map(v => {
  125. v.label = v.inspectName;
  126. v.value = v.id.toString();
  127. });
  128. this.inspects = inspects
  129. this.queryParams = queryParams;
  130. },
  131. };
  132. </script>
  133. <style lang="scss" scoped>
  134. .appointmentInspect {
  135. padding-bottom: 108rpx;
  136. ::v-deep uni-checkbox .uni-checkbox-input {
  137. width: 40rpx;
  138. height: 40rpx;
  139. }
  140. ::v-deep .uni-checkbox-input-checked {
  141. background-color: #09BB07;
  142. &:before {
  143. color: #fff;
  144. }
  145. }
  146. ::v-deep uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
  147. border-color: #09BB07;
  148. }
  149. .qco_msg {
  150. background-color: #f9fafb;
  151. position: fixed;
  152. width: 100%;
  153. z-index: 99;
  154. height: 144rpx;
  155. padding: 32rpx;
  156. color: #999;
  157. line-height: 40rpx;
  158. font-size: 28rpx;
  159. text-align: center;
  160. }
  161. .select_block_wrap {
  162. padding: 144rpx 24rpx 0;
  163. .scrollHeight {
  164. height: 100%;
  165. }
  166. .inspect_listItem {
  167. width: 702rpx;
  168. background-color: #fff;
  169. margin-top: 8rpx;
  170. border-radius: 8rpx;
  171. position: relative;
  172. padding: 0 24rpx;
  173. font-size: 32rpx;
  174. @include border;
  175. @include semicircle(#f9fafb, 82rpx);
  176. @include flex(flex-start, stretch, column);
  177. .inspect_listItem_header {
  178. height: 86rpx;
  179. @include border($directive:bottom, $style:dashed);
  180. @include flex(space-between, center);
  181. .inspect_listItem_header_title {
  182. color: #333;
  183. flex: 1;
  184. @include flex(flex-start, center);
  185. .inspectInfo {
  186. flex: 1;
  187. @include flex;
  188. .info {
  189. color: #333;
  190. font-size: 36rpx;
  191. font-weight: bold;
  192. @include clamp;
  193. .dept {
  194. margin-left: 8rpx;
  195. }
  196. }
  197. .workerName {
  198. flex: 1;
  199. @include clamp;
  200. }
  201. }
  202. }
  203. }
  204. .inspect_listItem_item {
  205. height: 88rpx;
  206. color: #333;
  207. font-size: 30rpx;
  208. flex: 1;
  209. @include border(bottom);
  210. @include flex(flex-start, stretch, column);
  211. &:last-of-type {
  212. border-bottom: none;
  213. }
  214. .inspect_listItem_item_content {
  215. flex: 1;
  216. @include flex(space-between, center);
  217. .inspect_listItem_item_name {
  218. color: #333;
  219. font-size: 36rpx;
  220. text-indent: 1.5em;
  221. @include clamp;
  222. }
  223. }
  224. }
  225. }
  226. }
  227. }
  228. </style>