otherCompleteOrder.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520
  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" :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. disjunctor: true,
  159. }
  160. },
  161. // 拍照-其他
  162. photographToOther(data) {
  163. this.currentData = data;
  164. let actions = this.actions.filter(v => v.checked);
  165. let imageValue = this.imageValue;
  166. console.log(actions);
  167. console.log(imageValue);
  168. if(
  169. this.actionConfirmSwitch &&
  170. (
  171. (this.actionConfirmType == 1 && this.actions.length !== actions.length) ||
  172. (this.actionConfirmType == 2 && !actions.length) ||
  173. (this.actionConfirmType == 3 && !actions.length)
  174. )
  175. ){
  176. let title = '';
  177. if(this.actionConfirmType == 1){
  178. title = '请选择以下选项可选择多项,必须所有都选择后选择' + this.tips;
  179. }else if(this.actionConfirmType == 2){
  180. title = '请选择以下选项可选择多项,至少选择一项后选择' + this.tips;
  181. }else if(this.actionConfirmType == 3){
  182. title = '请选择以下选项,至少单选一项' + this.tips;
  183. }
  184. uni.showToast({
  185. icon: "none",
  186. title,
  187. duration: 2000
  188. });
  189. return;
  190. }
  191. if(this.actionPhotoSwitch && !imageValue.length){
  192. uni.showToast({
  193. icon: "none",
  194. title: '您需要完成拍照,才可' + this.tips,
  195. duration: 2000
  196. });
  197. return;
  198. }
  199. uni.showLoading({
  200. title: "加载中",
  201. mask: true,
  202. });
  203. // 其他临床服务
  204. let content;
  205. if(this.currentIndex == 0){
  206. content = data.startDept.qrcode;
  207. }else if(this.currentIndex == 1){
  208. content = data.endDepts[0].qrcode;
  209. }
  210. //检验二维码的有效性
  211. post("/dept/scanning", {
  212. content,
  213. taskTypeId: data.taskType.id,
  214. gdState: data.gdState.id,
  215. }).then((result) => {
  216. this.currentCode = result.code;
  217. if (result.state == 200 || result.state == 201) {
  218. let accountObj = undefined;
  219. if (result.account) {
  220. accountObj = {
  221. account: result.account,
  222. accountName: result.name,
  223. accountId: result.id,
  224. };
  225. } else {
  226. accountObj = undefined;
  227. }
  228. if(this.actionPhotoSwitch && this.actionConfirmSwitch){
  229. this.isOpenTransportationProcessRemarks(data, accountObj, 'uploadToOther');
  230. }else if(this.actionConfirmSwitch){
  231. // 动作
  232. this.isOpenTransportationProcessRemarks(data, accountObj, 'nextDeptOrder_ss');
  233. }else if(this.actionPhotoSwitch){
  234. // 拍照
  235. this.isOpenTransportationProcessRemarks(data, accountObj, 'uploadToOther');
  236. }
  237. } else if (result.state == '0000') {
  238. uni.hideLoading();
  239. this.showSelectAccount();
  240. } else {
  241. uni.hideLoading();
  242. uni.showToast({
  243. icon: "none",
  244. title: result.info || "接口获取数据失败!",
  245. });
  246. }
  247. });
  248. },
  249. // 返回
  250. goBack() {
  251. uni.navigateBack();
  252. },
  253. // 选择动作
  254. checkboxChange: function (e) {
  255. let items = this.actions;
  256. let values = [];
  257. if(this.actionConfirmType == 1 || this.actionConfirmType == 2){
  258. values = e.detail.value || [];
  259. }else if(this.actionConfirmType == 3){
  260. values = [e.detail.value];
  261. }
  262. for (let i = 0, lenI = items.length; i < lenI; ++i) {
  263. const item = items[i]
  264. if(values.includes(item.value)){
  265. this.$set(item,'checked',true)
  266. }else{
  267. this.$set(item,'checked',false)
  268. }
  269. }
  270. },
  271. // 获取上传状态
  272. selectFile(e) {
  273. console.log('选择文件:', e)
  274. this.imageValue = this.imageValue.concat(e.tempFiles);
  275. },
  276. // 移除
  277. deleteFile(e) {
  278. console.log('移除:', e);
  279. },
  280. },
  281. onLoad(options) {
  282. console.log(options);
  283. this.options = options;
  284. if(options.order){
  285. options.order = JSON.parse(options.order);
  286. this.order = options.order;
  287. if(this.order.gdState.value == 4){
  288. this.currentIndex = 0;
  289. this.tips = '确认到达';
  290. }else if(this.order.gdState.value == 5){
  291. this.currentIndex = 1;
  292. this.tips = '完成工单';
  293. }
  294. }
  295. if(options.orderId){
  296. this.orderId = options.orderId;
  297. }
  298. if(options.taskType){
  299. options.taskType = JSON.parse(options.taskType);
  300. this.actionConfirmSwitch = options.taskType.carryingCourses[this.currentIndex].actionConfirmSwitch;
  301. let actions = options.taskType.carryingCourses[this.currentIndex].actionRemarks || "";
  302. this.actions = actions.split('$').map((v, i) => ({
  303. value: i,
  304. name: v,
  305. }));
  306. this.actionPhotoSwitch = options.taskType.carryingCourses[this.currentIndex].actionPhotoSwitch;
  307. this.actionConfirmType = options.taskType.carryingCourses[this.currentIndex].actionConfirmType;
  308. }
  309. },
  310. };
  311. </script>
  312. <style lang="less" scoped>
  313. .HomeItem {
  314. .foot_btn_spe {
  315. width: 100%;
  316. position: fixed;
  317. bottom: 30rpx;
  318. left: 0;
  319. line-height: 88rpx;
  320. height: 88rpx;
  321. text-align: center;
  322. display: flex;
  323. justify-content: space-between;
  324. flex-wrap: wrap;
  325. &::after {
  326. content: '';
  327. flex: 1;
  328. }
  329. view {
  330. height: 88rpx;
  331. width: 48%;
  332. margin: 0 1%;
  333. background-image: linear-gradient(to right, #72c172, #3bb197);
  334. color: #fff;
  335. border-radius: 8rpx;
  336. font-size: 32rpx;
  337. margin-top: 16rpx;
  338. }
  339. }
  340. .login {
  341. height: 420rpx;
  342. padding: 0 32rpx;
  343. padding-top: 164rpx;
  344. position: relative;
  345. z-index: 999;
  346. .savePassword {
  347. margin-top: 32rpx;
  348. }
  349. /deep/ uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
  350. border-color: #42b983 !important;
  351. }
  352. .login_input {
  353. margin-top: 32rpx;
  354. background-color: #ffffff;
  355. height: 72rpx;
  356. box-sizing: border-box;
  357. padding: 16rpx;
  358. }
  359. .title {
  360. font-size: 36rpx;
  361. color: #42b983;
  362. text-align: center;
  363. }
  364. .tips {
  365. font-size: 28rpx;
  366. color: red;
  367. margin-top: 16rpx;
  368. }
  369. .page_item_btn {
  370. height: 88rpx;
  371. background-image: linear-gradient(to right, #72c172, #3bb197);
  372. border-radius: 8rpx;
  373. line-height: 88rpx;
  374. color: #fff;
  375. font-size: 36rpx;
  376. font-weight: 700;
  377. margin-top: 64rpx;
  378. text-align: center;
  379. }
  380. }
  381. //上班页面
  382. .goWorkAll {
  383. height: calc(100vh - 118rpx);
  384. overflow-y: auto;
  385. display: flex;
  386. flex-direction: column;
  387. justify-content: space-between;
  388. /deep/ .uni-radio-input-checked {
  389. background-color: #42b983 !important;
  390. border-color: #42b983 !important;
  391. }
  392. /deep/ .uni-checkbox-input-checked {
  393. color: #42b983 !important;
  394. }
  395. .goWorkSelect {
  396. &.history {
  397. height: 356rpx;
  398. padding-bottom: 16rpx;
  399. }
  400. &.combination {
  401. .goWorkSelect-head {}
  402. .goWorkSelect-list {}
  403. }
  404. .goWorkSelect-head {
  405. font-size: 28rpx;
  406. padding: 16rpx 0;
  407. color: #42b983;
  408. border-bottom: 2rpx solid #42b983;
  409. text-align: center;
  410. }
  411. .goWorkSelect-list {
  412. padding: 16rpx;
  413. .goWorkSelect-item {
  414. height: 52rpx;
  415. display: flex;
  416. align-items: center;
  417. border-bottom: 2rpx solid #e5e9ed;
  418. padding: 16rpx;
  419. &.relative {
  420. position: relative;
  421. .picker {
  422. position: absolute;
  423. width: 100%;
  424. padding-left: 64rpx;
  425. }
  426. }
  427. button {
  428. font-size: 32rpx;
  429. height: 52rpx;
  430. line-height: 52rpx;
  431. margin: 0;
  432. margin-left: 16rpx;
  433. color: rgb(7, 134, 60);
  434. font-weight: 700;
  435. }
  436. }
  437. }
  438. }
  439. }
  440. .goWork {
  441. margin: 0 auto 48rpx;
  442. width: 240rpx;
  443. height: 240rpx;
  444. .goWork_btn_E {
  445. width: 100%;
  446. height: 100%;
  447. background: #bee1a7;
  448. border-radius: 30%;
  449. .goWork_btn_W {
  450. width: 75%;
  451. height: 75%;
  452. background-image: linear-gradient(to right, #72c172, #3bb197);
  453. border-radius: 30%;
  454. margin: 0 auto;
  455. position: relative;
  456. top: 12.5%;
  457. line-height: 180rpx;
  458. color: #fff;
  459. font-size: 36rpx;
  460. text-align: center;
  461. }
  462. }
  463. }
  464. .goWork_text {
  465. width: 100%;
  466. view {
  467. text-align: center;
  468. }
  469. .goWork_text-p {
  470. font-size: 36rpx;
  471. margin-bottom: 48rpx;
  472. }
  473. }
  474. .botImg {
  475. height: 600rpx;
  476. width: 100%;
  477. position: fixed;
  478. bottom: 0;
  479. .img {
  480. height: 100%;
  481. background: url("../../static/img/BG.png") no-repeat center center;
  482. background-size: 100% 100%;
  483. }
  484. }
  485. }
  486. </style>