patientBuild.vue 12 KB

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