otherCompleteOrder.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521
  1. <template>
  2. <view class="HomeItem">
  3. <view class="goWorkAll">
  4. <view class="goWorkSelect combination" v-if="actionConfirmSwitch">
  5. <view class="goWorkSelect-head" v-if="actionConfirmType == 1">请选择以下选项可选择多项,必须所有都选择后选择{{tips}}</view>
  6. <view class="goWorkSelect-head" v-if="actionConfirmType == 2">请选择以下选项可选择多项,至少选择一项后选择{{tips}}</view>
  7. <view class="goWorkSelect-head" v-if="actionConfirmType == 3">请选择以下选项,至少单选一项{{tips}}</view>
  8. <view class="goWorkSelect-list scroll">
  9. <checkbox-group @change="checkboxChange" v-if="actionConfirmType == 1 || actionConfirmType == 2">
  10. <label class="goWorkSelect-item relative" v-for="action in actions" :key="action.value">
  11. <view>
  12. <checkbox :value="action.value" :checked="action.checked" />
  13. </view>
  14. <view>{{action.name}}</view>
  15. </label>
  16. </checkbox-group>
  17. <radio-group @change="checkboxChange" v-if="actionConfirmType == 3">
  18. <label class="goWorkSelect-item relative" v-for="action in actions" :key="action.value">
  19. <view>
  20. <radio :value="action.value" :checked="action.checked" />
  21. </view>
  22. <view>{{action.name}}</view>
  23. </label>
  24. </radio-group>
  25. </view>
  26. </view>
  27. <view class="goWorkSelect history" v-if="actionPhotoSwitch">
  28. <view class="goWorkSelect-head">您需要拍摄现场照片才可{{tips}}!</view>
  29. <view class="goWorkSelect-list">
  30. <uni-file-picker :auto-upload="false" :limit="3" title="最多选择3张图片" v-model="imageValue" fileMediatype="image"
  31. mode="grid" @select="selectFile" @delete="deleteFile"></uni-file-picker>
  32. </view>
  33. </view>
  34. </view>
  35. <view class="foot_btn_spe">
  36. <view class="btn1" @click="photographToOther(order)">{{tips}}</view>
  37. <view class="btn3" @click="goBack">返回</view>
  38. </view>
  39. <!-- 填写交接人账号弹窗 -->
  40. <selectAccount v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  41. @cancel="hosCancel">
  42. </selectAccount>
  43. </view>
  44. </template>
  45. <script>
  46. import * as commonFun from '../../tools/commonFun.js';
  47. import {
  48. pathUrl
  49. } from "../../tools/photograph.js";
  50. import selectAccount from "../../components/selectAccount/selectAccount.vue";
  51. import {
  52. get,
  53. post,
  54. webHandle
  55. } from "../../http/http.js";
  56. export default {
  57. components: {
  58. selectAccount,
  59. },
  60. data() {
  61. return {
  62. tips: '',
  63. currentIndex: undefined,
  64. // 填写交接人账号弹窗model
  65. hosModels: {
  66. disjunctor: false,
  67. },
  68. currentCode: '', //当前拍照使用的科室二维码
  69. currentData: {}, //当前小扫描的工单对象
  70. orderId: undefined,
  71. order: {},
  72. // 拍照动作开关
  73. actionPhotoSwitch: false,
  74. // 确认动作开关
  75. actionConfirmSwitch: false,
  76. // 确认动作模式开关
  77. actionConfirmType: false,
  78. // 参数
  79. options: {},
  80. //动作列表
  81. actions: [],
  82. //图片列表
  83. imageValue: [],
  84. };
  85. },
  86. methods: {
  87. // 其他临床服务-运输过程-终点科室是否开通备注填写
  88. isOpenTransportationProcessRemarks(data, accountObj, funName){
  89. const tasktype = data.taskType;
  90. console.log(tasktype, data);
  91. if(tasktype.associationType.value === 'other' && tasktype.carryingCourses[this.currentIndex].logSwitch && data.gdState.value == 5){
  92. uni.navigateTo({
  93. url: `../../pages/transportationProcessRemarks/transportationProcessRemarks?data=${data ? encodeURIComponent(JSON.stringify(data)) : ''}&accountObj=${accountObj ? encodeURIComponent(JSON.stringify(accountObj)) : ''}&currentCode=${this.currentCode}&funName=${funName}&actions=${this.actions ? encodeURIComponent(JSON.stringify(this.actions)) : ''}&imageValue=${this.imageValue ? encodeURIComponent(JSON.stringify(this.imageValue)) : ''}`
  94. })
  95. }else{
  96. commonFun[funName](this, data, accountObj);
  97. }
  98. },
  99. // 填写交接人账号-确认
  100. hosOk(data) {
  101. console.log(data);
  102. const {
  103. accountName,
  104. account,
  105. accountId
  106. } = data;
  107. if (!accountName && !account) {
  108. //没有填写交接人
  109. uni.showModal({
  110. title: '提示',
  111. content: "请填写交接人账号!",
  112. showCancel: false,
  113. success: function(res) {
  114. if (res.confirm) {
  115. console.log('用户点击确定');
  116. } else if (res.cancel) {
  117. console.log('用户点击取消');
  118. }
  119. }
  120. });
  121. return;
  122. } else if (!accountName && account || accountName && !account) {
  123. //没有填写交接人
  124. uni.showModal({
  125. title: '提示',
  126. content: "请填写正确的交接人账号!",
  127. showCancel: false,
  128. success: function(res) {
  129. if (res.confirm) {
  130. console.log('用户点击确定');
  131. } else if (res.cancel) {
  132. console.log('用户点击取消');
  133. }
  134. }
  135. });
  136. return;
  137. }
  138. this.hosModels.disjunctor = false;
  139. let associationTypeValue = this.currentData.taskType.associationType.value;
  140. console.log(associationTypeValue)
  141. if(this.actionPhotoSwitch && this.actionConfirmSwitch){
  142. this.isOpenTransportationProcessRemarks(this.currentData, data, 'uploadToOther');
  143. }else if(this.actionConfirmSwitch){
  144. // 动作
  145. this.isOpenTransportationProcessRemarks(this.currentData, data, 'nextDeptOrder_ss');
  146. }else if(this.actionPhotoSwitch){
  147. // 拍照
  148. this.isOpenTransportationProcessRemarks(this.currentData, data, 'uploadToOther');
  149. }
  150. },
  151. // 填写交接人账号-取消
  152. hosCancel() {
  153. this.hosModels.disjunctor = false;
  154. },
  155. // 填写交接人账号弹窗
  156. showSelectAccount() {
  157. this.hosModels = {
  158. title: '填写交接人账号',
  159. disjunctor: true,
  160. }
  161. },
  162. // 拍照-其他
  163. photographToOther(data) {
  164. this.currentData = data;
  165. let actions = this.actions.filter(v => v.checked);
  166. let imageValue = this.imageValue;
  167. console.log(actions);
  168. console.log(imageValue);
  169. if(
  170. this.actionConfirmSwitch &&
  171. (
  172. (this.actionConfirmType == 1 && this.actions.length !== actions.length) ||
  173. (this.actionConfirmType == 2 && !actions.length) ||
  174. (this.actionConfirmType == 3 && !actions.length)
  175. )
  176. ){
  177. let title = '';
  178. if(this.actionConfirmType == 1){
  179. title = '请选择以下选项可选择多项,必须所有都选择后选择' + this.tips;
  180. }else if(this.actionConfirmType == 2){
  181. title = '请选择以下选项可选择多项,至少选择一项后选择' + this.tips;
  182. }else if(this.actionConfirmType == 3){
  183. title = '请选择以下选项,至少单选一项' + this.tips;
  184. }
  185. uni.showToast({
  186. icon: "none",
  187. title,
  188. duration: 2000
  189. });
  190. return;
  191. }
  192. if(this.actionPhotoSwitch && !imageValue.length){
  193. uni.showToast({
  194. icon: "none",
  195. title: '您需要完成拍照,才可' + this.tips,
  196. duration: 2000
  197. });
  198. return;
  199. }
  200. uni.showLoading({
  201. title: "加载中",
  202. mask: true,
  203. });
  204. // 其他临床服务
  205. let content;
  206. if(this.currentIndex == 0){
  207. content = data.startDept.qrcode;
  208. }else if(this.currentIndex == 1){
  209. content = data.endDepts[0].qrcode;
  210. }
  211. //检验二维码的有效性
  212. post("/dept/scanning", {
  213. content,
  214. taskTypeId: data.taskType.id,
  215. gdState: data.gdState.id,
  216. }).then((result) => {
  217. this.currentCode = result.code;
  218. if (result.state == 200 || result.state == 201) {
  219. let accountObj = undefined;
  220. if (result.account) {
  221. accountObj = {
  222. account: result.account,
  223. accountName: result.name,
  224. accountId: result.id,
  225. };
  226. } else {
  227. accountObj = undefined;
  228. }
  229. if(this.actionPhotoSwitch && this.actionConfirmSwitch){
  230. this.isOpenTransportationProcessRemarks(data, accountObj, 'uploadToOther');
  231. }else if(this.actionConfirmSwitch){
  232. // 动作
  233. this.isOpenTransportationProcessRemarks(data, accountObj, 'nextDeptOrder_ss');
  234. }else if(this.actionPhotoSwitch){
  235. // 拍照
  236. this.isOpenTransportationProcessRemarks(data, accountObj, 'uploadToOther');
  237. }
  238. } else if (result.state == '0000') {
  239. uni.hideLoading();
  240. this.showSelectAccount();
  241. } else {
  242. uni.hideLoading();
  243. uni.showToast({
  244. icon: "none",
  245. title: result.info || "接口获取数据失败!",
  246. });
  247. }
  248. });
  249. },
  250. // 返回
  251. goBack() {
  252. uni.navigateBack();
  253. },
  254. // 选择动作
  255. checkboxChange: function (e) {
  256. let items = this.actions;
  257. let values = [];
  258. if(this.actionConfirmType == 1 || this.actionConfirmType == 2){
  259. values = e.detail.value || [];
  260. }else if(this.actionConfirmType == 3){
  261. values = [e.detail.value];
  262. }
  263. for (let i = 0, lenI = items.length; i < lenI; ++i) {
  264. const item = items[i]
  265. if(values.includes(item.value)){
  266. this.$set(item,'checked',true)
  267. }else{
  268. this.$set(item,'checked',false)
  269. }
  270. }
  271. },
  272. // 获取上传状态
  273. selectFile(e) {
  274. console.log('选择文件:', e)
  275. this.imageValue = this.imageValue.concat(e.tempFiles);
  276. },
  277. // 移除
  278. deleteFile(e) {
  279. console.log('移除:', e);
  280. },
  281. },
  282. onLoad(options) {
  283. console.log(options);
  284. this.options = options;
  285. if(options.order){
  286. options.order = JSON.parse(options.order);
  287. this.order = options.order;
  288. if(this.order.gdState.value == 4){
  289. this.currentIndex = 0;
  290. this.tips = '确认到达';
  291. }else if(this.order.gdState.value == 5){
  292. this.currentIndex = 1;
  293. this.tips = '完成工单';
  294. }
  295. }
  296. if(options.orderId){
  297. this.orderId = options.orderId;
  298. }
  299. if(options.taskType){
  300. options.taskType = JSON.parse(options.taskType);
  301. this.actionConfirmSwitch = options.taskType.carryingCourses[this.currentIndex].actionConfirmSwitch;
  302. let actions = options.taskType.carryingCourses[this.currentIndex].actionRemarks || "";
  303. this.actions = actions.split('$').map((v, i) => ({
  304. value: i,
  305. name: v,
  306. }));
  307. this.actionPhotoSwitch = options.taskType.carryingCourses[this.currentIndex].actionPhotoSwitch;
  308. this.actionConfirmType = options.taskType.carryingCourses[this.currentIndex].actionConfirmType;
  309. }
  310. },
  311. };
  312. </script>
  313. <style lang="less" scoped>
  314. .HomeItem {
  315. .foot_btn_spe {
  316. width: 100%;
  317. position: fixed;
  318. bottom: 30rpx;
  319. left: 0;
  320. line-height: 88rpx;
  321. height: 88rpx;
  322. text-align: center;
  323. display: flex;
  324. justify-content: space-between;
  325. flex-wrap: wrap;
  326. &::after {
  327. content: '';
  328. flex: 1;
  329. }
  330. view {
  331. height: 88rpx;
  332. width: 48%;
  333. margin: 0 1%;
  334. background-image: linear-gradient(to right, #72c172, #3bb197);
  335. color: #fff;
  336. border-radius: 8rpx;
  337. font-size: 32rpx;
  338. margin-top: 16rpx;
  339. }
  340. }
  341. .login {
  342. height: 420rpx;
  343. padding: 0 32rpx;
  344. padding-top: 164rpx;
  345. position: relative;
  346. z-index: 999;
  347. .savePassword {
  348. margin-top: 32rpx;
  349. }
  350. /deep/ uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
  351. border-color: #42b983 !important;
  352. }
  353. .login_input {
  354. margin-top: 32rpx;
  355. background-color: #ffffff;
  356. height: 72rpx;
  357. box-sizing: border-box;
  358. padding: 16rpx;
  359. }
  360. .title {
  361. font-size: 36rpx;
  362. color: #42b983;
  363. text-align: center;
  364. }
  365. .tips {
  366. font-size: 28rpx;
  367. color: red;
  368. margin-top: 16rpx;
  369. }
  370. .page_item_btn {
  371. height: 88rpx;
  372. background-image: linear-gradient(to right, #72c172, #3bb197);
  373. border-radius: 8rpx;
  374. line-height: 88rpx;
  375. color: #fff;
  376. font-size: 36rpx;
  377. font-weight: 700;
  378. margin-top: 64rpx;
  379. text-align: center;
  380. }
  381. }
  382. //上班页面
  383. .goWorkAll {
  384. height: calc(100vh - 118rpx);
  385. overflow-y: auto;
  386. display: flex;
  387. flex-direction: column;
  388. justify-content: space-between;
  389. /deep/ .uni-radio-input-checked {
  390. background-color: #42b983 !important;
  391. border-color: #42b983 !important;
  392. }
  393. /deep/ .uni-checkbox-input-checked {
  394. color: #42b983 !important;
  395. }
  396. .goWorkSelect {
  397. &.history {
  398. height: 356rpx;
  399. padding-bottom: 16rpx;
  400. }
  401. &.combination {
  402. .goWorkSelect-head {}
  403. .goWorkSelect-list {}
  404. }
  405. .goWorkSelect-head {
  406. font-size: 28rpx;
  407. padding: 16rpx 0;
  408. color: #42b983;
  409. border-bottom: 2rpx solid #42b983;
  410. text-align: center;
  411. }
  412. .goWorkSelect-list {
  413. padding: 16rpx;
  414. .goWorkSelect-item {
  415. height: 52rpx;
  416. display: flex;
  417. align-items: center;
  418. border-bottom: 2rpx solid #e5e9ed;
  419. padding: 16rpx;
  420. &.relative {
  421. position: relative;
  422. .picker {
  423. position: absolute;
  424. width: 100%;
  425. padding-left: 64rpx;
  426. }
  427. }
  428. button {
  429. font-size: 32rpx;
  430. height: 52rpx;
  431. line-height: 52rpx;
  432. margin: 0;
  433. margin-left: 16rpx;
  434. color: rgb(7, 134, 60);
  435. font-weight: 700;
  436. }
  437. }
  438. }
  439. }
  440. }
  441. .goWork {
  442. margin: 0 auto 48rpx;
  443. width: 240rpx;
  444. height: 240rpx;
  445. .goWork_btn_E {
  446. width: 100%;
  447. height: 100%;
  448. background: #bee1a7;
  449. border-radius: 30%;
  450. .goWork_btn_W {
  451. width: 75%;
  452. height: 75%;
  453. background-image: linear-gradient(to right, #72c172, #3bb197);
  454. border-radius: 30%;
  455. margin: 0 auto;
  456. position: relative;
  457. top: 12.5%;
  458. line-height: 180rpx;
  459. color: #fff;
  460. font-size: 36rpx;
  461. text-align: center;
  462. }
  463. }
  464. }
  465. .goWork_text {
  466. width: 100%;
  467. view {
  468. text-align: center;
  469. }
  470. .goWork_text-p {
  471. font-size: 36rpx;
  472. margin-bottom: 48rpx;
  473. }
  474. }
  475. .botImg {
  476. height: 600rpx;
  477. width: 100%;
  478. position: fixed;
  479. bottom: 0;
  480. .img {
  481. height: 100%;
  482. background: url("../../static/img/BG.png") no-repeat center center;
  483. background-size: 100% 100%;
  484. }
  485. }
  486. }
  487. </style>