patientBuild.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  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" :checked="isUrgent" @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" v-if="isYYBuild">
  26. <view class="tips">系统支持提前预约送检服务,您是否需要!</view>
  27. <view class="tips">我不需要预约,希望送检人员立即上门,点击立即建单;</view>
  28. <view class="tips">我需要提前预约送检服务,点击预约建单;</view>
  29. </view>
  30. </view>
  31. <!-- 底部 -->
  32. <seiminFooterBtn :btns="btns"></seiminFooterBtn>
  33. <seiminModel ref="seiminModel" :otherData="{timestamp,date,time}"></seiminModel>
  34. </view>
  35. </template>
  36. <script>
  37. import cloneDeep from 'lodash/cloneDeep';
  38. import {
  39. mapState,
  40. mapMutations,
  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. timestamp: new Date().getTime(),
  51. // 预约日期
  52. date: false,
  53. // 预约时间
  54. time: false,
  55. // 预约建单按钮是否显示
  56. isYYBuild: false,
  57. // 有预约时间并且是选中的
  58. hasYYtimeChecks: [],
  59. // 是否加急
  60. isUrgent: false,
  61. // 设备
  62. goods: [],
  63. //患者建单信息展示
  64. patientMsg: '',
  65. // 传递过来的参数
  66. queryParams: {},
  67. // 加急原因
  68. urgentRemark: "",
  69. //底部按钮
  70. btns: [],
  71. };
  72. },
  73. computed: {
  74. ...mapState('other', [
  75. 'patientBuildTrip',
  76. 'patientTaskType',
  77. 'selectedPatient',
  78. 'patientBuildData',
  79. ]),
  80. },
  81. methods: {
  82. ...mapMutations('other', ['changePatientBuildData']),
  83. // 切换是否加急
  84. switchChange(e) {
  85. this.isUrgent = e.detail.value;
  86. this.urgentRemark = '';
  87. this.showBtns(!this.isUrgent);
  88. },
  89. // 选择设备
  90. checkboxChange: function(e) {
  91. console.log(e, this.goods);
  92. var goods = this.goods,
  93. values = e.detail.value;
  94. for (var i = 0, lenI = goods.length; i < lenI; ++i) {
  95. const item = goods[i]
  96. if (values.includes(item.value)) {
  97. this.$set(item, 'checked', true)
  98. } else {
  99. this.$set(item, 'checked', false)
  100. }
  101. }
  102. },
  103. // 立即建单,isYY 是否预约建单
  104. buildOrder(isYY = false) {
  105. console.log(this.urgentRemark)
  106. console.log(this.isUrgent)
  107. console.log(this.goods)
  108. // 加急原因非空
  109. if (this.isUrgent && !this.urgentRemark) {
  110. this.$refs.seiminModel.show({
  111. skin: 'toast',
  112. icon: 'warn',
  113. content: '请填写加急原因',
  114. })
  115. return;
  116. }
  117. // 存储建单数据
  118. // 设备
  119. this.changePatientBuildData({
  120. key: 'goods',
  121. value: this.goods.filter(v => v.checked)
  122. })
  123. // 加急
  124. this.changePatientBuildData({
  125. key: 'urgent',
  126. value: {
  127. isUrgent: this.isUrgent,
  128. urgentRemark: this.urgentRemark,
  129. }
  130. })
  131. // 预约时间
  132. this.changePatientBuildData({
  133. key: 'yyTime',
  134. value: isYY ? `${this.$refs.seiminModel.dateVal} ${this.$refs.seiminModel.timeVal}:00` : ''
  135. })
  136. // 是否预约建单
  137. this.changePatientBuildData({
  138. key: 'isYY',
  139. value: isYY
  140. })
  141. // 跳转
  142. uni.navigateTo({
  143. url: '/pages/patientBuildConfirm/patientBuildConfirm'
  144. })
  145. },
  146. // 需要预约建单-事件
  147. yyInspectChange() {
  148. if (this.patientTaskType.associationType.value === this.ASSOCIATION_TYPES['患者陪检业务']) {
  149. //陪检
  150. let obj = this.hasYYtimeChecks.find((item) => {
  151. return (
  152. new Date(item.yyTime).getTime() - new Date().getTime() >
  153. this.patientTaskType.appointmentTime * 60 * 1000
  154. );
  155. });
  156. if (obj) {
  157. this.showDateTime();
  158. } else {
  159. this.date = true;
  160. this.time = false;
  161. this.timestamp = new Date().getTime();
  162. }
  163. } else {
  164. //转运
  165. this.date = true;
  166. this.time = false;
  167. this.timestamp = new Date().getTime();
  168. }
  169. },
  170. // 是否加急
  171. allowUrgentChange(isUrgent) {
  172. if (this.isYYBuild) {
  173. this.isYYBuild = !isUrgent;
  174. if (!this.isYYBuild) {
  175. this.date = false;
  176. this.time = false;
  177. this.timestamp = new Date().getTime();
  178. }
  179. } else {
  180. this.date = false;
  181. this.time = false;
  182. this.timestamp = new Date().getTime();
  183. }
  184. },
  185. //回显时间日期
  186. showDateTime() {
  187. //当前时间要大于生效时间
  188. let isYYBuild = this.hasYYtimeChecks.every((item) => {
  189. return (
  190. new Date(item.yyTime).getTime() - new Date().getTime() >
  191. this.patientTaskType.appointmentTime * 60 * 1000
  192. );
  193. });
  194. //如果勾选需要预约检查
  195. if (isYYBuild) {
  196. //筛选离当前时间最近的
  197. let timeList = this.hasYYtimeChecks
  198. .map((item) => new Date(item.yyTime).getTime())
  199. .sort();
  200. this.date = true;
  201. this.time = true;
  202. this.timestamp = new Date(timeList[0] - this.patientTaskType.appointmentTime * 60 * 1000);
  203. } else {
  204. this.date = false;
  205. this.time = false;
  206. this.timestamp = new Date().getTime();
  207. }
  208. },
  209. // 初始化
  210. init() {
  211. // 提示文字
  212. this.patientMsg = `患者<b class="green">${this.selectedPatient.patientName}</b>即将出科,请您选择送检人员需携带哪些设备!`;
  213. let goods = this.patientBuildTrip.goods ? cloneDeep(this.patientBuildTrip.goods) : []; // 设备
  214. let checks = this.patientBuildTrip.checks ? cloneDeep(this.patientBuildTrip.checks) : []; // 检查
  215. this.goods = goods;
  216. // 患者陪检业务和患者其他服务业务相关处理
  217. this.hasYYtimeChecks = checks.filter((v) => Boolean(v.yyTime));
  218. let isPriority = checks.some(v => v.priority == 1);
  219. // 检查有紧急度,则加急
  220. if (isPriority) {
  221. this.isUrgent = true;
  222. this.urgentRemark = '系统根据检查信息,自动进行加急';
  223. } else {
  224. this.isUrgent = false;
  225. this.urgentRemark = '';
  226. }
  227. //判断预约建单按钮
  228. if (this.hasYYtimeChecks.length && this.patientTaskType.appointmentSwitch == 1) {
  229. //选中的检查数组都有预约时间并且允许预约建单
  230. this.isYYBuild = true;
  231. this.allowUrgentChange(this.isUrgent);
  232. if (!this.isUrgent) {
  233. //不加急状态下,回显时间
  234. this.showDateTime();
  235. }
  236. this.yyInspectChange();
  237. } else {
  238. //不允许预约建单
  239. this.isYYBuild = true;
  240. this.date = false;
  241. this.time = false;
  242. this.timestamp = new Date().getTime();
  243. this.yyInspectChange();
  244. }
  245. // 底部按钮展示
  246. this.showBtns(this.isYYBuild);
  247. },
  248. // 底部按钮展示
  249. showBtns(flag) {
  250. if (flag) {
  251. //患者陪检业务或患者其他服务业务,并且预约建单开关打开的情况下
  252. this.btns = [{
  253. name: "上一步",
  254. type: "primary",
  255. click: () => {
  256. uni.navigateBack();
  257. },
  258. }, {
  259. name: "预约建单",
  260. type: "primary",
  261. click: () => {
  262. this.$refs.seiminModel.show({
  263. skin: 'yyDate',
  264. title: '',
  265. content: '请您选择希望陪检人员上门的时间',
  266. btns: [{
  267. name: '取消'
  268. },
  269. {
  270. name: '预约建单',
  271. click: () => {
  272. if (this.$refs.seiminModel.dateVal && this.$refs.seiminModel.timeVal) {
  273. this.buildOrder(true);
  274. }
  275. }
  276. }
  277. ]
  278. })
  279. },
  280. }, {
  281. name: "立即建单",
  282. type: "primary",
  283. click: () => {
  284. this.buildOrder();
  285. },
  286. }, ];
  287. } else {
  288. this.btns = [{
  289. name: "上一步",
  290. type: "primary",
  291. click: () => {
  292. uni.navigateBack();
  293. },
  294. }, {
  295. name: "立即建单",
  296. type: "primary",
  297. click: () => {
  298. this.buildOrder();
  299. },
  300. }, ];
  301. }
  302. },
  303. },
  304. onLoad(queryParams) {
  305. this.queryParams = queryParams;
  306. this.init();
  307. },
  308. };
  309. </script>
  310. <style lang="scss" scoped>
  311. .patientBuild {
  312. margin-bottom: 100rpx;
  313. ::v-deep .uni-checkbox-input {
  314. border-radius: 50%;
  315. }
  316. ::v-deep .uni-checkbox-input-checked {
  317. background-color: #09BB07;
  318. &:before {
  319. color: #fff;
  320. }
  321. }
  322. ::v-deep uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
  323. border-color: #09BB07;
  324. }
  325. .qco_msg {
  326. min-height: 144rpx;
  327. padding: 32rpx;
  328. color: #999;
  329. line-height: 40rpx;
  330. font-size: 28rpx;
  331. text-align: center;
  332. }
  333. .select_block_wrap {
  334. @include border(top);
  335. // 设备
  336. .select_block {
  337. padding: 0 30rpx;
  338. height: 88rpx;
  339. font-size: 34rpx;
  340. background-color: #fff;
  341. position: relative;
  342. @include flex(flex-start, center);
  343. &:last-of-type {
  344. &::after {
  345. opacity: 0;
  346. }
  347. }
  348. &::after {
  349. content: '';
  350. height: 1px;
  351. width: calc(100vw - 30rpx);
  352. background-color: #E5E5E5;
  353. position: absolute;
  354. right: 0;
  355. bottom: 0;
  356. }
  357. .select_label {
  358. color: #000;
  359. }
  360. }
  361. }
  362. // 备注
  363. .remarks {
  364. min-height: 150rpx;
  365. background-color: #f9fafb;
  366. @include border(top);
  367. .remarks_nav {
  368. padding: 0 25rpx;
  369. height: 66rpx;
  370. font-size: 28rpx;
  371. color: #666;
  372. @include flex(flex-start, center);
  373. @include border(bottom);
  374. }
  375. .remarks_btn {
  376. padding: 0 25rpx;
  377. font-size: 34rpx;
  378. height: 88rpx;
  379. background-color: #fff;
  380. @include border(bottom);
  381. @include flex(space-between, center);
  382. }
  383. .remarks_textarea {
  384. padding: 22rpx 25rpx;
  385. width: 100%;
  386. min-height: 150rpx;
  387. background-color: #fff;
  388. @include border(bottom);
  389. }
  390. .remarks_tips {
  391. padding: 32rpx 25rpx;
  392. color: #999;
  393. font-size: 28rpx;
  394. line-height: 40rpx;
  395. }
  396. }
  397. }
  398. </style>