confirmYuyue.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. <template>
  2. <view class="box">
  3. <view class="yuyuCheckTis">
  4. 温馨提示:该报价仅为参考价格,实际以门店为准(不同品牌和车型费用不同)
  5. </view>
  6. <view class="cont">
  7. <view class="contkk">
  8. <view class="kkline">
  9. <view class="kklineLeft">
  10. <span class="stars">*</span> <span>预约门店</span>
  11. </view>
  12. <view class="kklineRight">连锁一号</view>
  13. </view>
  14. <view class="kkline">
  15. <view class="kklineLeft">
  16. <span class="stars">*</span> <span>预约车辆</span>
  17. </view>
  18. <view class="kklineRight">
  19. <span>{{carInfo.plateNumber?carInfo.plateNumber:'请选择'}}</span>
  20. <img src="../../static/timg/icon_arrow_right.png" alt="" class="rightJt">
  21. </view>
  22. </view>
  23. <view class="kkline lineborderNo">
  24. <view class="kklineLeft">
  25. <span class="stars">*</span> <span>预约时间</span>
  26. </view>
  27. <view class="kklineRight" @click="cktime">
  28. <span>{{billDate?billDate:'请选择'}}</span>
  29. <img src="../../static/timg/icon_arrow_right.png" alt="" class="rightJt">
  30. </view>
  31. </view>
  32. </view>
  33. <view class="contkk" style="margin-top: 20rpx;">
  34. <view class="kkline2">
  35. <view class="kklineLeft1">预约项目</view>
  36. <view class="kklineRight1">(以实际门店价格为准)</view>
  37. </view>
  38. <view class="kkline2" v-for="(item,index) in yuyueData">
  39. <view class="kklineLeft3">{{item.ItemName}}</view>
  40. <view class="kklineRight3">¥{{item.Price}}</view>
  41. </view>
  42. </view>
  43. <view class="contkk" style="margin-top: 20rpx;">
  44. <view class="bzline">
  45. <view class="beiz">备注</view>
  46. <input type="text" v-model="comment" placeholder="请输入备注(选填)" class="beizInput">
  47. </view>
  48. </view>
  49. </view>
  50. <view style="height: 120rpx;"></view>
  51. <view class="bottom-container">
  52. <view>
  53. <view class="bottom-container-price"><span class="qianhaospan" >¥</span> {{totalPrice}} <span></span></view>
  54. <view class="ckj">参考价格(到店支付)</view>
  55. </view>
  56. <view class="newyyBotbutton" @click="yuyue">立即预约</view>
  57. </view>
  58. <timeSelect ref="timeSelect" :timedata="timedata" @changeTime="changeTime"></timeSelect>
  59. </view>
  60. </template>
  61. <script>
  62. import timeSelect from '@/components/timeSelect/timeSelect.vue'
  63. export default {
  64. components: {
  65. timeSelect
  66. },
  67. data() {
  68. return {
  69. comment:'',
  70. totalPrice:99,
  71. userInfo:'',
  72. timedata:'',
  73. billDate:'',
  74. yuyueData:'',
  75. carInfo:'',
  76. }
  77. },
  78. onLoad() {
  79. console.log(this.$store.state.yuyueData)
  80. this.yuyueData=this.$store.state.yuyueData;
  81. this.carInfo=this.$store.state.carInfo
  82. this.userInfo = uni.getStorageSync("userInfo");
  83. //this.getOrderTimes()
  84. },
  85. methods: {
  86. yuyue(){
  87. if(!this.billDate){
  88. uni.showToast({
  89. title: '请选择预约时间',
  90. icon: 'none',
  91. duration: 3000
  92. });
  93. return false;
  94. }
  95. this.$http('openreservation/saveOrderSheet', {
  96. billDate: this.billDate,
  97. comment: this.comment,
  98. carID: this.carInfo.id,
  99. orderItem: this.yuyueData.map(item => item.ID).join(),
  100. shopId: this.userInfo.shopId,
  101. unionId: this.userInfo.unionId
  102. },'POST').then(res => {
  103. if(res.code==0){
  104. uni.showModal({
  105. title: '提示',
  106. content: '预约成功',
  107. confirmText:'返回首页',
  108. cancelText:'查看订单',
  109. success: function (res) {
  110. if (res.confirm) {
  111. // console.log('用户点击确定');
  112. uni.switchTab({
  113. url:'index'
  114. })
  115. } else if (res.cancel) {
  116. // console.log('用户点击取消');
  117. }
  118. }
  119. });
  120. }else{
  121. uni.showToast({
  122. title: res.msg,
  123. icon: 'none',
  124. duration: 3000
  125. });
  126. }
  127. })
  128. },
  129. changeTime(data){
  130. console.log(data)
  131. this.billDate=data
  132. },
  133. cktime(){
  134. this.$refs.timeSelect.open();
  135. },
  136. }
  137. }
  138. </script>
  139. <style scoped lang="less">
  140. .box{
  141. background: #F4F5F7;
  142. min-height: 100vh;
  143. }
  144. .yuyuCheckTis{
  145. color: #C8841C;
  146. line-height: 37rpx;
  147. font-size: 26rpx;
  148. background: #FFF7EB;
  149. padding: 18rpx 24rpx;
  150. font-weight: 400;
  151. }
  152. .cont{
  153. padding: 24rpx;
  154. }
  155. .contkk{
  156. background: #ffffff;
  157. border-radius: 10rpx;
  158. padding: 0 20rpx;
  159. }
  160. .kkline{
  161. display: flex;
  162. padding: 30rpx 0;
  163. border-bottom: 1px solid #EEEEEE;
  164. color: #666666;
  165. font-size: 28rpx;
  166. }
  167. .kkline2{
  168. display: flex;
  169. justify-content: space-between;
  170. padding: 30rpx 0;
  171. border-bottom: 1px solid #EEEEEE;
  172. color: #666666;
  173. font-size: 28rpx;
  174. }
  175. .stars{
  176. color: #FF2400;
  177. }
  178. .kklineRight{
  179. color: #999999;
  180. font-size: 28rpx;
  181. display: flex;
  182. justify-content: space-between;
  183. width: 450rpx;
  184. }
  185. .kklineLeft {
  186. width: 200rpx;
  187. }
  188. .rightJt{
  189. width: 12rpx;
  190. height: 20rpx;
  191. margin-top: 6rpx;
  192. }
  193. .lineborderNo{
  194. border-bottom: none;
  195. }
  196. .kklineLeft1{
  197. font-weight: 500;
  198. color: #3C3C3C;
  199. font-size: 28rpx;
  200. }
  201. .kklineRight1{
  202. font-weight: 400;
  203. color: #999999;
  204. font-size: 26rpx;
  205. }
  206. .kklineLeft3{
  207. font-weight: 400;
  208. color: #666666;
  209. font-size: 28rpx;
  210. width: 480rpx;
  211. overflow: hidden;
  212. white-space: nowrap;
  213. text-overflow: ellipsis;
  214. }
  215. .kklineRight3{
  216. font-weight: 400;
  217. color: #3C3C3C;
  218. font-size: 28rpx;
  219. }
  220. .bzline{
  221. display: flex;padding: 30rpx 0;
  222. }
  223. .beizInput{
  224. width: 450rpx;font-size: 28rpx;
  225. }
  226. .beiz{
  227. color: #666666;font-size: 28rpx;
  228. width: 200rpx;
  229. }
  230. .bottom-container{
  231. width: 750rpx;
  232. height: 120rpx;
  233. background: #FFFFFF;
  234. box-shadow: 0px -2px 10px 0px rgba(153,153,153,0.1000);
  235. position: fixed;
  236. left: 0;
  237. bottom: 0;
  238. display: flex;
  239. justify-content: space-between;
  240. }
  241. .newyyBotbutton{
  242. width: 204rpx;
  243. height: 74rpx;
  244. background: #D53533;
  245. border-radius: 37rpx;
  246. font-weight: 500;
  247. color: #FFFFFF;
  248. line-height: 74rpx;
  249. text-align: center;
  250. margin-right: 30rpx;
  251. margin-top: 23rpx;
  252. }
  253. .bottom-container-price{
  254. color: #FF0000;
  255. padding-top: 30rpx;
  256. padding-left: 30rpx;
  257. font-size: 32rpx;
  258. }
  259. .qianhaospan{
  260. font-size: 22rpx;
  261. }
  262. .ckj{
  263. color: #999999;font-size: 24rpx;
  264. padding-left: 30rpx;
  265. }
  266. </style>