outpatientEndSignIn.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  4. <view class="Scanning_top_icon">
  5. <text class="cubeic-ok icon_transport transport-duigou"></text>
  6. <view class="text1"> 签到成功 </view>
  7. </view>
  8. <view class="Scanning_top_text">
  9. 您已到达<strong class="red">{{deptName}}</strong>,请完成以下服务
  10. </view>
  11. </view>
  12. <view class="Scanning_cont">
  13. <view class="Scanning_cont_list">
  14. <scroll-view scroll-y="true" class="Scanning_cont_list_scroll">
  15. <view class="Scanning_cont_list_item" v-for="item in orderList" :key="item.id">
  16. <view class="name">
  17. {{item.taskType ? item.taskType.taskName : ''}}
  18. </view>
  19. <view class="value">
  20. 单号:{{item.gdcode}}
  21. </view>
  22. </view>
  23. </scroll-view>
  24. </view>
  25. </view>
  26. <view class="foot_btn">
  27. <view class="btn" @click="goToIndex()"> 知道了 </view>
  28. <view class="btn" @click="additional()" v-if="taskTypeConfig.addService == 1"> 追加服务 </view>
  29. <view class="btn" @click="finish()" v-if="taskTypeConfig.finishService == 1"> 结束服务 </view>
  30. </view>
  31. <!-- 结束服务弹窗 -->
  32. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  33. :operate="models.operate" @ok="ok" @cancel="cancel"></showModel>
  34. </view>
  35. </template>
  36. <script>
  37. import {
  38. get,
  39. post,
  40. SM,
  41. webHandle
  42. } from "../../../http/http.js";
  43. export default {
  44. data() {
  45. return {
  46. // 结束服务弹窗model
  47. models: {
  48. disjunctor: false,
  49. },
  50. deptName: '',
  51. infoData: {},
  52. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  53. queryObj: {}, //路由传递过来的数据
  54. orderList: [],
  55. taskTypeConfig: {},
  56. };
  57. },
  58. methods: {
  59. ok() {
  60. this.models.disjunctor = false;
  61. uni.showLoading({
  62. title: "加载中",
  63. mask: true,
  64. });
  65. post("/patient/endService", {
  66. patientCode: this.infoData.patientCode,
  67. }).then((result) => {
  68. uni.hideLoading();
  69. if (result.state == 200) {
  70. uni.navigateTo({
  71. url: `/pages/outpatient/outpatientEndComplete/outpatientEndComplete?model=${encodeURIComponent(JSON.stringify(result))}`,
  72. });
  73. } else {
  74. uni.showToast({
  75. icon: "none",
  76. title: result.msg || "接口获取数据失败!",
  77. });
  78. }
  79. });
  80. },
  81. cancel() {
  82. this.models.disjunctor = false;
  83. },
  84. // 结束服务
  85. finish(){
  86. this.models = {
  87. disjunctor: true,
  88. title: "提示",
  89. content: `您确认要完成服务吗?`,
  90. icon: "warn",
  91. operate: {
  92. ok: "确定",
  93. cancel: "取消",
  94. },
  95. };s
  96. },
  97. // 追加服务
  98. additional(){
  99. uni.navigateTo({
  100. url: `/pages/outpatient/outpatientEndTaskType/outpatientEndTaskType?model=${encodeURIComponent(JSON.stringify(this.infoData))}`,
  101. });
  102. },
  103. // 知道了
  104. goToIndex(){
  105. uni.navigateTo({
  106. url: `/pages/receiptpage/receiptpage`,
  107. });
  108. },
  109. // 获取检查页面控制
  110. getTaskTypeConfig(){
  111. uni.showLoading({
  112. title: "加载中",
  113. mask: true,
  114. });
  115. post("/simple/data/fetchDataList/taskTypeConfig", {
  116. "idx": 0,
  117. "sum": 10,
  118. "taskTypeConfig": {
  119. "taskTypeDTO": {
  120. "hosId": {
  121. "id": this.hosId
  122. },
  123. "associationType": {
  124. "key": "association_types",
  125. "value": "inspect"
  126. }
  127. }
  128. }
  129. }).then((result) => {
  130. uni.hideLoading();
  131. if (result.status == 200) {
  132. let configs = result.list || [];
  133. if(configs.length){
  134. this.taskTypeConfig = configs[0];
  135. }else{
  136. this.taskTypeConfig = {};
  137. }
  138. } else {
  139. uni.showToast({
  140. icon: "none",
  141. title: result.msg || "接口获取数据失败!",
  142. });
  143. }
  144. });
  145. },
  146. },
  147. onLoad(options) {
  148. console.log(options, "result");
  149. this.queryObj = options;
  150. if(options.model){
  151. this.infoData = JSON.parse(options.model);
  152. this.orderList = this.infoData.orderList || [];
  153. this.deptName = this.infoData.deptName;
  154. console.log(this.infoData);
  155. }
  156. this.getTaskTypeConfig();
  157. // #ifdef APP-PLUS
  158. webHandle("no", "app");
  159. // #endif
  160. // #ifdef H5
  161. webHandle("no", "wx");
  162. // #endif
  163. },
  164. };
  165. </script>
  166. <style lang="less" scoped>
  167. .Scanning_Result {
  168. height: 100vh;
  169. display: flex;
  170. flex-direction: column;
  171. background-color: #fff;
  172. .Scanning_top {
  173. flex-shrink: 0;
  174. .Scanning_top_icon {
  175. padding-top: 26rpx;
  176. display: flex;
  177. flex-direction: column;
  178. justify-content: center;
  179. align-items: center;
  180. .cubeic-ok {
  181. font-size: 140rpx;
  182. color: #35b34a;
  183. }
  184. .text1 {
  185. margin-top: 30rpx;
  186. font-size: 40rpx;
  187. font-weight: bold;
  188. }
  189. }
  190. .Scanning_top_text{
  191. text-align: center;
  192. font-size: 30rpx;
  193. font-weight: bold;
  194. padding: 8rpx 0 23rpx 0;
  195. }
  196. }
  197. .Scanning_cont {
  198. flex: 1;
  199. min-height: 0;
  200. display: flex;
  201. flex-direction: column;
  202. margin: 0 45rpx;
  203. .Scanning_cont_head{
  204. flex-shrink: 0;
  205. height: 78rpx;
  206. display: flex;
  207. border-top: 1rpx solid #EEEEEE;
  208. border-bottom: 1rpx solid #EEEEEE;
  209. .Scanning_cont_head_item{
  210. flex: 1;
  211. font-size: 32rpx;
  212. font-weight: bold;
  213. display: flex;
  214. justify-content: center;
  215. align-items: center;
  216. position: relative;
  217. &.active{
  218. color: #49B856;
  219. &::before{
  220. content: '';
  221. width: 70rpx;
  222. height: 10rpx;
  223. background-color: #49B856;
  224. position: absolute;
  225. left: 50%;
  226. bottom: 0;
  227. transform: translateX(-50%);
  228. border-radius: 6rpx;
  229. }
  230. }
  231. &::after{
  232. content: '';
  233. width: 2rpx;
  234. height: 44rpx;
  235. background-color: #D1D1D1;
  236. position: absolute;
  237. right: 0;
  238. top: 50%;
  239. transform: translateY(-50%);
  240. }
  241. &:last-of-type::after{
  242. opacity: 0;
  243. }
  244. }
  245. }
  246. .Scanning_cont_list{
  247. flex: 1;
  248. min-height: 0;
  249. display: flex;
  250. flex-direction: column;
  251. .Scanning_cont_list_scroll{
  252. flex: 1;
  253. min-height: 0;
  254. border: 1rpx solid #E9E9E9;
  255. }
  256. .Scanning_cont_list_item{
  257. height: 63rpx;
  258. display: flex;
  259. align-items: center;
  260. font-size: 30rpx;
  261. border-bottom: 2rpx dashed #D3D3D3;
  262. border-top: none;
  263. margin: 0 18rpx;
  264. &:last-of-type{
  265. border-bottom: 1rpx dashed #E9E9E9;
  266. }
  267. &.Scanning_cont_list_head{
  268. font-weight: bold;
  269. font-size: 28rpx;
  270. border-top: 1rpx solid #272727;
  271. flex-shrink: 0;
  272. }
  273. .name,
  274. .value{
  275. flex: 1;
  276. display: flex;
  277. align-items: center;
  278. height: 100%;
  279. font-weight: bold;
  280. line-height: 1;
  281. }
  282. .value {
  283. justify-content: flex-end;
  284. }
  285. }
  286. }
  287. }
  288. .foot_btn {
  289. margin: 30rpx;
  290. flex-shrink: 0;
  291. line-height: 88rpx;
  292. display: flex;
  293. justify-content: center;
  294. .btn {
  295. height: 88rpx;
  296. flex: 1;
  297. margin-right: 1%;
  298. background-image: linear-gradient(to right, #72c172, #3bb197);
  299. color: #fff;
  300. border-radius: 8rpx;
  301. font-size: 34rpx;
  302. font-weight: bold;
  303. text-align: center;
  304. &:last-of-type{
  305. margin-right: 0;
  306. }
  307. }
  308. }
  309. }
  310. </style>