roomconfirmitem.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <template>
  2. <view class="pages writeoffitem">
  3. <view class="writeoffitem-number">
  4. <view class="number">订单编号:{{resdata.ordersn}}</view>
  5. <view class="time">预订时间:{{resdata.addDate}}</view>
  6. </view>
  7. <view class="wrap">
  8. <view class="write-radius radio-select have-room">
  9. <radio-group @change="haveroomf">
  10. <label class="uni-list-cell uni-list-cell-pd" v-for="(radio, index) in haveroom" :key="radio.value">
  11. <view>
  12. <radio :value="radio.value" :checked="index === haveroomcurrent" />
  13. </view>
  14. <view>{{radio.name}}</view>
  15. </label>
  16. </radio-group>
  17. </view>
  18. <view class="write-radius radio-select clear-room">
  19. <radio-group @change="clearroomf">
  20. <label class="uni-list-cell uni-list-cell-pd" v-for="(radio, index) in clearroom" :key="radio.value">
  21. <view>
  22. <radio :value="radio.value" :checked="index ===clearroomcurrent" />
  23. </view>
  24. <view>{{radio.name}}</view>
  25. </label>
  26. </radio-group>
  27. </view>
  28. <view class="write-radius pay-way">
  29. <view class="pay-way-left">支付方式</view>
  30. <view class="pay-way-right">{{hd_type == 1 ? '电子券':'实体券'}}</view>
  31. </view>
  32. <view class="write-radius hotel-info">
  33. <view class="hotel-info-room">
  34. <image class="room-image" :src="resdata.litpic" mode="scaleToFill"></image>
  35. <view class="hotel-info-text">
  36. <view class="hotel-info-text-item hotel-info-text-hotel">{{hotelname}}</view>
  37. <view class="hotel-info-text-item hotel-info-text-room">{{roomname}}</view>
  38. <view class="hotel-info-text-item hotel-info-text-service">
  39. <text class="hotel-info-text-service-item" v-if="breakfirst">{{breakfirst}}</text>
  40. <text class="hotel-info-text-service-item" v-if="roomwindow">{{roomwindow}}</text>
  41. <text class="hotel-info-text-service-item" v-if="roomstyle">{{roomstyle}}</text>
  42. </view>
  43. </view>
  44. </view>
  45. <view class="room-detail">
  46. <view class="room-detail-item room-detail-time">
  47. <view class="room-detail-time-data">
  48. 入住:{{resdata.usedate}} 离店:{{resdata.departdate}}
  49. </view>
  50. <view class="room-detail-time-total">
  51. 共{{havenight}}晚
  52. </view>
  53. </view>
  54. <!-- <view class="room-detail-item">
  55. <view class="room-list">
  56. <view class="room-list-item">
  57. <view class="room-list-item-date">2020-08-19</view>
  58. <view class="room-list-item-number">1间</view>
  59. </view>
  60. <view class="room-list-item">
  61. <view class="room-list-item-date">2020-08-19</view>
  62. <view class="room-list-item-number">1间</view>
  63. </view>
  64. </view>
  65. <view class="room-list-total">
  66. </view>
  67. </view> -->
  68. <view class="pay-total">
  69. <view class="pay-total-item pay-total-number">
  70. <view class="pay-total-til">总计</view>
  71. <view class="pay-total-con">¥{{resdata.price}}</view>
  72. </view>
  73. <view class="pay-total-item pay-total-way">
  74. <view class="pay-total-til">预订方式</view>
  75. <view class="pay-total-con">全款支付</view>
  76. </view>
  77. </view>
  78. </view>
  79. <!-- room-detail end -->
  80. </view>
  81. <!-- hotel-info end -->
  82. <view class="write-radius contact-info">
  83. <view class="contact-info-item contact-info-name">
  84. <view class="contact-info-item-til">联系人:</view>
  85. <view class="contact-info-item-con">{{resdata.linkman}}</view>
  86. </view>
  87. <view class="contact-info-item contact-info-phone">
  88. <view class="contact-info-item-til">联系电话:</view>
  89. <view class="contact-info-item-con">{{resdata.linktel}}</view>
  90. </view>
  91. </view>
  92. <!-- contact-info end -->
  93. </view>
  94. <view class="bottom-btn-wrap">
  95. <button class="bottom-btn" @click="roomconfirm" type="primary">确认</button>
  96. </view>
  97. </view>
  98. </template>
  99. <script>
  100. export default{
  101. components:{
  102. },
  103. props:{
  104. },
  105. data(){
  106. return{
  107. id:'',
  108. haveroomcurrent:0,
  109. haveroom:[
  110. {value: '1',name: '有房'},
  111. {value: '2',name: '无房'},
  112. ],
  113. haveroomvalue:1,
  114. clearroom:[
  115. {value: '1',name: '清空库存'},
  116. {value: '2',name: '不清空库存'},
  117. ],
  118. clearroomvalue:1,
  119. clearroomcurrent:1,
  120. params:{
  121. token:'',
  122. },
  123. confirmparams:{
  124. token:'',
  125. },
  126. hotelname:'',
  127. roomname:'',
  128. resdata:{},
  129. breakfirst:'',
  130. roomstyle:'',
  131. roomwindow:'',
  132. havenight:'',//共几晚
  133. hd_type:'',
  134. }
  135. },
  136. onLoad(option){
  137. //检查登录,获取token
  138. let loginRes = this.checkLogin('pages/index/index', '2');
  139. if(!loginRes){return false;}
  140. this.params.token=loginRes[0];
  141. this.id = option.id;
  142. this.params = Object.assign(this.params,{id:option.id});
  143. this.getdetail();
  144. },
  145. methods:{
  146. //获取订单详情
  147. getdetail:function(){
  148. this.$api.http.post(this.config.apiBaseurl+'hotel/reserve/detail', this.params,{
  149. header: {
  150. Accept:'application/json',
  151. Authorization: 'Bearer '+ this.params.token, //注意Bearer后面有一空格
  152. }
  153. } ).then(res => {
  154. if(res.data.code=='1001'){
  155. uni.redirectTo({
  156. url:`/pages/login/login?backpage=/pages/roomconfirm/roomconfirmitem/roomconfirmitem?id=${this.id}&backtype=2`,
  157. });
  158. };
  159. this.resdata = res.data;
  160. this.hotelname = res.data.hotel.title;
  161. this.roomname = res.data.room.roomname;
  162. this.breakfirst = res.data.room.breakfirst;
  163. this.roomstyle = res.data.room.roomstyle;
  164. this.roomwindow = res.data.room.roomwindow;
  165. this.hd_type = res.data.hd_type;
  166. //计算几晚
  167. let day1 = Date.parse(new Date(res.data.usedate.replace(/-/g, '/'))) / 1000;
  168. let day2 = Date.parse(new Date(res.data.departdate.replace(/-/g, '/'))) / 1000;
  169. this.havenight = Math.abs((day1 - day2) / (3600 * 24));
  170. console.log(JSON.parse(JSON.stringify(res.data)));
  171. }).catch(err => {
  172. });
  173. },
  174. //提交
  175. roomconfirm:function(){
  176. this.confirmparams.token = this.params.token;
  177. this.confirmparams = Object.assign(this.confirmparams,{orderId:this.id,has:this.haveroomvalue,is_clear:this.clearroomvalue});
  178. this.$api.http.post(this.config.apiBaseurl+'hotel/reserve/confirm', this.confirmparams,{
  179. header: {
  180. Accept:'application/json',
  181. Authorization: 'Bearer '+ this.params.token, //注意Bearer后面有一空格
  182. }
  183. } ).then(res => {
  184. uni.showToast({
  185. icon:'none',
  186. title:res.data.message,
  187. duration: 2000
  188. });
  189. //确认成功跳转到列表页
  190. if(res.data.state == 'ok'){
  191. setTimeout(()=>{
  192. uni.redirectTo({
  193. url:`/pages/roomconfirm/roomconfirm`,
  194. fail:function(e){
  195. console.log(e);
  196. }
  197. });
  198. },1000);
  199. };
  200. console.log(res);
  201. }).catch(err => {
  202. console.log(err);
  203. });
  204. },
  205. haveroomf: function(evt) {
  206. for (let i = 0; i < this.haveroom.length; i++) {
  207. if (this.haveroom[i].value === evt.target.value) {
  208. this.current = i;
  209. break;
  210. }
  211. }
  212. this.haveroomvalue = evt.target.value;
  213. },
  214. clearroomf: function(evt) {
  215. for (let i = 0; i < this.clearroom.length; i++) {
  216. if (this.clearroom[i].value === evt.target.value) {
  217. this.current = i;
  218. break;
  219. }
  220. }
  221. this.clearroomvalue = evt.target.value;
  222. },
  223. }
  224. }
  225. </script>
  226. <style lang="scss" scoped>
  227. page{background-color: $uni-bg-color-grey;}
  228. @import url("/common/css/order.scss");
  229. </style>