detail.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613
  1. <template>
  2. <view v-if="info">
  3. <view class="order-header">
  4. <view class="order-header-body">
  5. <view class="order-header-left">
  6. <image src="../../images/address.png" mode="aspectFit"></image>
  7. </view>
  8. <view class="order-header-main">
  9. <view>所属科室:{{info.depName}}</view>
  10. <view>联系人:{{info.contact}}</view>
  11. <view>联系电话:{{info.phone}}</view>
  12. </view>
  13. <view class="order-header-right">
  14. <span v-if="info.status == 0">待分配</span>
  15. <span v-if="info.status == 1">进行中</span>
  16. <span v-if="info.status == 2">已完成</span>
  17. <span v-if="info.status == 3">已作废</span>
  18. <span v-if="info.status == 4">已结算</span>
  19. <span v-if="info.status == 5">已评价</span>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="container">
  24. <view class="order-box">
  25. <view class="order-box-title">订单基础信息</view>
  26. <view class="order-box-list">
  27. <view class="order-box-list-title">病人姓名</view>
  28. <view class="order-box-list-val">{{info.name}}</view>
  29. </view>
  30. <view class="order-box-list">
  31. <view class="order-box-list-title">病人性别</view>
  32. <view class="order-box-list-val">
  33. <span v-if="info.gender == 1">男</span>
  34. <span v-if="info.gender == 2">女</span>
  35. </view>
  36. </view>
  37. <view class="order-box-list">
  38. <view class="order-box-list-title">病人年龄</view>
  39. <view class="order-box-list-val">{{info.age}}</view>
  40. </view>
  41. <view class="order-box-list">
  42. <view class="order-box-list-title">病人床号</view>
  43. <view class="order-box-list-val">{{info.bed}}</view>
  44. </view>
  45. <view class="order-box-list">
  46. <view class="order-box-list-title">所患疾病</view>
  47. <view class="order-box-list-val">{{info.ill}}</view>
  48. </view>
  49. <view class="order-box-list">
  50. <view class="order-box-list-title">服务类型</view>
  51. <view class="order-box-list-val">{{info.cateName}}</view>
  52. </view>
  53. <view class="order-box-list">
  54. <view class="order-box-list-title">单价(/人/天)</view>
  55. <view class="order-box-list-val">{{info.price}}</view>
  56. </view>
  57. <view class="order-box-list">
  58. <view class="order-box-list-title">开始时间</view>
  59. <view class="order-box-list-val">{{info.start}}</view>
  60. </view>
  61. <view class="order-box-list">
  62. <view class="order-box-list-title">结束时间</view>
  63. <view class="order-box-list-val">{{info.end}}</view>
  64. </view>
  65. <view class="order-box-list">
  66. <view class="order-box-list-title">结束时间</view>
  67. <view class="order-box-list-val">{{info.end}}</view>
  68. </view>
  69. <view class="order-box-list">
  70. <view class="order-box-list-title">预收金</view>
  71. <view class="order-box-list-val">{{info.preMoney}}</view>
  72. </view>
  73. <view class="order-box-list">
  74. <view class="order-box-list-title">订单金额</view>
  75. <view class="order-box-list-val">{{info.amount}}</view>
  76. </view>
  77. <view class="order-box-list2">
  78. <view class="order-box-list-title">备注</view>
  79. <view class="order-box-list-val">{{info.remark?info.remark:'无'}}</view>
  80. </view>
  81. </view>
  82. <view class="order-box2">
  83. <view>订单号:{{info.sn}}</view>
  84. <view>下单日期:{{info.createTime}}</view>
  85. <view v-if="info.finishTime">完成日期:{{info.finishTime}}</view>
  86. <view v-if="info.canceTime">作废日期:{{info.canceTime}}</view>
  87. <view v-if="info.cancelUserName">作废人:{{info.cancelUserName}}</view>
  88. <view v-if="info.cancelReason">作废原因:{{info.cancelReason}}</view>
  89. </view>
  90. <view v-if="info.todo.length > 0">
  91. <view>工单信息</view>
  92. <view v-for="(item,index) in info.todo" class="order-box2">
  93. <view>调度:{{item.userName}}</view>
  94. <view>护工:{{item.workerName}}</view>
  95. <view>开始时间:{{item.start}}</view>
  96. <view>结束时间:{{item.end}}</view>
  97. <view>备注:{{item.remark}}</view>
  98. <view>状态:
  99. <span v-if="item.status == 0">已作废</span>
  100. <span v-if="item.status == 1">服务中</span>
  101. <span v-if="item.status == 2">已结束</span>
  102. </view>
  103. <view>派发日期:{{item.createTime}}</view>
  104. </view>
  105. </view>
  106. <view v-if="info.status ==5">
  107. <view>评价信息</view>
  108. <view class="order-box2">
  109. <view>评价内容:{{info.comment.content}}</view>
  110. <view>评价分数: <uni-rate :readonly="true" :value="info.comment.score"/></view>
  111. <view>评价时间:{{info.comment.createTime}}</view>
  112. </view>
  113. </view>
  114. <view v-if="info.complain.length > 0">
  115. <view>投诉信息</view>
  116. <view v-for="(item,index) in info.complain" class="order-box3">
  117. <view>投诉内容:{{item.content}}</view>
  118. <view>状态:
  119. <span v-if="item.status === 0">待处理</span>
  120. <span v-if="item.status === 1">已处理</span>
  121. </view>
  122. <view>投诉时间:{{item.createTime}}</view>
  123. <view v-if="item.status === 1">处理人:{{item.dealName}}</view>
  124. <view v-if="item.status === 1">备注:{{item.remark}}</view>
  125. <view v-if="item.status === 1">处理时间:{{item.dealTime}}</view>
  126. </view>
  127. </view>
  128. <view v-if="info.pays.length > 0">
  129. <view>预收金信息</view>
  130. <view v-for="(item,index) in info.pays" class="order-box3">
  131. <view>金额:¥{{item.money}}</view>
  132. <view>退款金额:¥{{item.money2}}</view>
  133. <view>支付方式:
  134. <span v-if="item.type === 2">线上</span>
  135. <span v-if="item.type === 1">线下</span>
  136. </view>
  137. <view>日期:{{item.payTime}}</view>
  138. </view>
  139. </view>
  140. <view v-if="info.status == 0||info.status == 1" class="btn" @click="finishBtn()">预收金</view>
  141. <view style="margin-top: 10px" v-if="info.status == 4" class="btn" @click="commentBtn()">评价</view>
  142. <view style="margin-top: 10px" v-if="(info.status!= 0 && info.status!=3) && info.complain.length==0" class="btn" @click="complaintBtn()">投诉</view>
  143. <!-- <view v-if="info.status == 1" class="btn btn-success" @click="finishBtn()">完成</view>
  144. <view v-if="info.status != 3&&info.status != 4" class="btn btn-danger" @click="cancelBtn()">作废</view> -->
  145. </view>
  146. <cmodal :show.sync="cancelShow" title="作废订单" @confirm="cancelConfirm">
  147. <textarea v-model="cancelReason" style="height: 150rpx;" placeholder="请输入作废原因"></textarea>
  148. </cmodal>
  149. <cmodal :show.sync="finishShow" title="预收金" @confirm="finishConfirm" @cancel="cancelFinishConfirm">
  150. <view class="form-box3">
  151. <view class="form-box-label">金额 <text class="text-red">*</text></view>
  152. <view class="form-box-content">
  153. <input type="number" v-model="amount" placeholder="请填写金额" />
  154. </view>
  155. </view>
  156. </cmodal>
  157. <cmodal :show.sync="tsShow" title="投诉" @confirm="tsConfirm" @cancel="cancelTsConfirm">
  158. <view class="form-box3">
  159. <view class="form-box-label">投诉内容<text class="text-red">*</text></view>
  160. <view class="form-box-content">
  161. <input type="textarea" v-model="tsContent" placeholder="请输入投诉内容" />
  162. </view>
  163. </view>
  164. </cmodal>
  165. <cmodal :show.sync="pjShow" title="评价" @confirm="pjConfirm" @cancel="cancelPjConfirm">
  166. <view class="form-box3">
  167. <view class="form-box-label">评价内容</view>
  168. <view class="form-box-content">
  169. <input type="textarea" v-model="pjContent" placeholder="请输入评价内容" />
  170. </view>
  171. </view>
  172. <view class="form-box3">
  173. <view class="form-box-label">评分<text class="text-red">*</text></view>
  174. <view class="form-box-content">
  175. <uni-rate v-model="pjScore" @change="pjonChange"/>
  176. </view>
  177. </view>
  178. </cmodal>
  179. </view>
  180. </template>
  181. <script>
  182. var app = getApp();
  183. import cpicker from "../../components/cpicker/cpicker.vue";
  184. import wpicker from "../../components/w-picker/w-picker.vue";
  185. import cmodal from "../../components/cmodel/cmodel.vue";
  186. export default {
  187. components: {
  188. cpicker,
  189. wpicker,
  190. cmodal
  191. },
  192. data() {
  193. return {
  194. info: null,
  195. flag: 0,
  196. id: 0,
  197. cancelReason: '',
  198. cancelShow: false,
  199. end: '',
  200. finishShow: false,
  201. tsShow: false,
  202. pjShow: false,
  203. endShow: false,
  204. amount: '',
  205. wx: null,
  206. tsContent:'',
  207. pjContent:'',
  208. pjScore:'',
  209. }
  210. },
  211. onLoad(option) {
  212. this.id = option.id;
  213. let that = this;
  214. if (this.$wechat && this.$wechat.isWechat()) {//获取定位经纬度
  215. this.$wechat.getWx(function (res) {
  216. console.log(res)
  217. that.wx = res;
  218. });
  219. }
  220. },
  221. onShow() {
  222. var that = this;
  223. app.ajaxReadyCallback = res => { //各个接口统一回调方法
  224. var apiname = res.data.apiname;
  225. console.log(res);
  226. if(apiname == 'order'){
  227. that.info = res.data.data;
  228. }else if(apiname == 'payOrder'){
  229. that.getPayParam(res.data.data.payId);
  230. }else if(apiname == 'pay'){
  231. if(that.wx){
  232. that.wx.chooseWXPay({
  233. timestamp: res.data.data.timestamp,
  234. nonceStr: res.data.data.noncestr,
  235. package: res.data.data.package,
  236. signType: res.data.data.signtype,
  237. paySign: res.data.data.paysign,
  238. success: function (r) {
  239. // 支付成功后的回调函数
  240. if (r.errMsg == "chooseWXPay:ok") {
  241. window.location.reload();
  242. } else {
  243. uni.showToast({
  244. title: '支付失败',
  245. icon: 'none',
  246. duration: 2000
  247. })
  248. }
  249. },
  250. cancel: function(r) {},
  251. fail:function(r){
  252. uni.showToast({
  253. title: '支付失败',
  254. icon: 'none',
  255. duration: 2000
  256. })
  257. }
  258. });
  259. }else{
  260. uni.showToast({
  261. title: '支付调用失败,请刷新重试',
  262. icon: 'none',
  263. duration: 2000
  264. })
  265. }
  266. }else if (apiname=='complain'){
  267. uni.showToast({
  268. title: '投诉成功',
  269. icon: 'none',
  270. duration: 2000
  271. })
  272. this.getOrderDetail();
  273. }else if (apiname=='comment'){
  274. uni.showToast({
  275. title: '评价成功',
  276. icon: 'none',
  277. duration: 2000
  278. })
  279. this.getOrderDetail();
  280. }
  281. }
  282. this.getOrderDetail();
  283. },
  284. methods: {
  285. pjonChange(e) {
  286. this.pjScore = e.value;
  287. },
  288. getOrderDetail(){
  289. app.ajax({
  290. url: app.globalData.serverUrl + 'PhOrders/detail',
  291. type: 'POST',
  292. apiname: 'order',
  293. data:{
  294. id: this.id
  295. }
  296. });
  297. },
  298. sendOrder(id){
  299. uni.navigateTo({
  300. url: '/pages/order/send?orderId='+id
  301. });
  302. },
  303. cancelBtn(){
  304. this.cancelShow = true;
  305. console.log(orderId,this.cancelShow);
  306. },
  307. cancelConfirm(){
  308. app.ajax({
  309. url: app.globalData.serverUrl + 'Order/cancel',
  310. type: 'POST',
  311. apiname: 'cancel',
  312. data: {
  313. cancelReason: this.cancelReason,
  314. id: this.id
  315. }
  316. });
  317. },
  318. selectEnd(){
  319. this.endShow = true;
  320. },
  321. onConfirm(e,type){
  322. this.end = e.result;
  323. },
  324. finishBtn(){
  325. this.finishShow = true;
  326. this.endShow = false;
  327. this.amount = '';
  328. },
  329. complaintBtn(){
  330. this.tsShow = true;
  331. this.tsContent = '';
  332. },
  333. commentBtn(){
  334. this.pjShow = true;
  335. this.pjContent = '';
  336. this.pjScore = '';
  337. },
  338. finishConfirm(){
  339. if(!this.amount || this.amount <= 0){
  340. uni.showToast({
  341. title: '未输入金额',
  342. icon: 'none',
  343. duration: 2000
  344. })
  345. this.finishShow = true;
  346. return;
  347. }
  348. app.ajax({
  349. url: app.globalData.serverUrl + 'PhOrders/payOrder',
  350. type: 'POST',
  351. apiname: 'payOrder',
  352. data: {
  353. orderId: this.id,
  354. money: this.amount
  355. }
  356. });
  357. },
  358. tsConfirm(){
  359. if(!this.tsContent){
  360. uni.showToast({
  361. title: '请输入投诉内容',
  362. icon: 'none',
  363. duration: 2000
  364. })
  365. this.tsShow = true;
  366. return;
  367. }
  368. app.ajax({
  369. url: app.globalData.serverUrl + 'PhOrders/complain',
  370. type: 'POST',
  371. apiname: 'complain',
  372. data: {
  373. orderId: this.id,
  374. content: this.tsContent
  375. }
  376. });
  377. },
  378. pjConfirm(){
  379. if(!this.pjScore){
  380. uni.showToast({
  381. title: '评分不能为空',
  382. icon: 'none',
  383. duration: 2000
  384. })
  385. this.pjShow = true;
  386. return;
  387. }
  388. app.ajax({
  389. url: app.globalData.serverUrl + 'PhOrders/comment',
  390. type: 'POST',
  391. apiname: 'comment',
  392. data: {
  393. orderId: this.id,
  394. content: this.pjContent,
  395. score: this.pjScore,
  396. }
  397. });
  398. },
  399. getPayParam(payId){
  400. app.ajax({
  401. url: app.globalData.serverUrl + 'PhOrders/pay',
  402. type: 'POST',
  403. apiname: 'pay',
  404. data: {
  405. payId: payId
  406. }
  407. });
  408. },
  409. cancelFinishConfirm(){
  410. this.amount = '';
  411. this.finishShow = false;
  412. },
  413. cancelTsConfirm(){
  414. this.tsContent = '';
  415. this.tsShow = false;
  416. },
  417. cancelPjConfirm(){
  418. this.pjContent = '';
  419. this.pjScore = '';
  420. this.pjShow = false;
  421. },
  422. getUrlCode (name) {
  423. return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.href) || [, ''])[1].replace(/\+/g, '%20')) || null
  424. },
  425. }
  426. }
  427. </script>
  428. <style lang="scss" scoped>
  429. page{
  430. overflow-x: hidden;
  431. }
  432. .container{
  433. overflow: hidden;
  434. }
  435. .btn{
  436. // width: 100%;
  437. height: 90rpx;
  438. line-height: 90rpx;
  439. text-align: center;
  440. font-size: 34rpx;
  441. font-weight: bold;
  442. border-radius: 10rpx;
  443. background-color: #FFFFFF;
  444. color: var(--themeColor);
  445. // margin: 10rpx;
  446. }
  447. .btn.btn-success{
  448. background-color: #5cb85c;
  449. color: #FFFFFF;
  450. }
  451. .btn.btn-danger{
  452. background-color: #FF7576;
  453. color: #FFFFFF;
  454. }
  455. .order-box2{
  456. width: 670rpx;
  457. height: auto;
  458. border-radius: 10rpx;
  459. background-color: #FFFFFF;
  460. overflow: hidden;
  461. padding: 30rpx 20rpx;
  462. margin: 20rpx 0;
  463. color: #666666;
  464. font-size: 28rpx;
  465. }
  466. .order-box{
  467. width: 100%;
  468. height: auto;
  469. border-radius: 10rpx;
  470. background-color: #FFFFFF;
  471. overflow: hidden;
  472. }
  473. .order-box-title{
  474. position: relative;
  475. width: 680rpx;
  476. height: 90rpx;
  477. line-height: 90rpx;
  478. padding-left: 30rpx;
  479. color: #333333;
  480. font-size: 34rpx;
  481. font-weight: bold;
  482. }
  483. .order-box-title::before{
  484. content: '';
  485. width: 5rpx;
  486. height: 28rpx;
  487. position: absolute;
  488. left: 16rpx;
  489. top: 32rpx;
  490. background-color: var(--themeColor);
  491. }
  492. .order-box-list{
  493. width: 670rpx;
  494. min-height: 90rpx;
  495. height: auto;
  496. padding: 0 20rpx;
  497. overflow: hidden;
  498. }
  499. .order-box-list .order-box-list-title{
  500. width: 270rpx;
  501. height: 90rpx;
  502. line-height: 90rpx;
  503. float: left;
  504. color: #333333;
  505. font-size: 34rpx;
  506. font-weight: bold;
  507. }
  508. .order-box-list .order-box-list-val{
  509. width: 380rpx;
  510. min-height: 62rpx;
  511. float: right;
  512. color: #333333;
  513. font-size: 30rpx;
  514. font-weight: bold;
  515. padding-top: 28rpx;
  516. text-align: right;
  517. }
  518. .order-box-list2{
  519. width: 670rpx;
  520. min-height: 90rpx;
  521. height: auto;
  522. padding: 0 20rpx;
  523. overflow: hidden;
  524. }
  525. .order-box-list2 .order-box-list-title{
  526. width: 100%;
  527. height: 90rpx;
  528. line-height: 90rpx;
  529. color: #333333;
  530. font-size: 34rpx;
  531. font-weight: bold;
  532. }
  533. .order-box-list2 .order-box-list-val{
  534. width: 630rpx;
  535. min-height: 50rpx;
  536. height: auto;
  537. color: #333333;
  538. font-size: 30rpx;
  539. font-weight: bold;
  540. background-color: #F7F7F7;
  541. border-radius: 10rpx;
  542. padding: 20rpx;
  543. margin-bottom: 20rpx;
  544. }
  545. .order-header{
  546. background-color: var(--themeColor);
  547. width: 100%;
  548. height: auto;
  549. padding: 20rpx;
  550. }
  551. .order-header .order-header-body{
  552. width: 650rpx;
  553. height: 124rpx;
  554. padding: 30rpx;
  555. background-color: #FFFFFF;
  556. border-radius: 10rpx;
  557. }
  558. .order-header-left{
  559. width: 100rpx;
  560. height: 124rpx;
  561. float: left;
  562. }
  563. .order-header-left image{
  564. width: 70rpx;
  565. height: 70rpx;
  566. margin-top: 30rpx;
  567. }
  568. .order-header-main{
  569. width: 400rpx;
  570. height: 124rpx;
  571. float: left;
  572. color: #333333;
  573. font-size: 26rpx;
  574. }
  575. .order-header-main view{
  576. padding: 5rpx 0;
  577. }
  578. .order-header-right{
  579. width: 120rpx;
  580. height: 124rpx;
  581. line-height: 124rpx;
  582. float: right;
  583. color: var(--themeColor);
  584. font-size: 34rpx;
  585. text-align: right;
  586. }
  587. .order-box3{
  588. width: 670rpx;
  589. height: auto;
  590. border-radius: 10rpx;
  591. background-color: #FFFFFF;
  592. overflow: hidden;
  593. padding: 30rpx 20rpx;
  594. margin: 20rpx 0;
  595. color: #666666;
  596. font-size: 28rpx;
  597. border-left: 5px solid var(--themeColor);
  598. }
  599. </style>