confirmYuyue.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  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">{{yyshopInfo.shopName}}</view>
  13. </view>
  14. <view class="kkline">
  15. <view class="kklineLeft">
  16. <span class="stars">*</span> <span>预约车辆</span>
  17. </view>
  18. <view class="kklineRight" @click="goCarlist">
  19. <span>{{carInfo.plateNumber?carInfo.plateNumber:'请选择'}}</span>
  20. <img src="../../static/img/big_rightArrow.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/img/big_rightArrow.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" v-if="item.Price">{{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" placeholder-style="color:#cccccc;">
  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" v-if="totalPrice" ></span> {{totalPrice}} <span></span></view>
  54. <view class="ckj">参考价格(到店支付)</view>
  55. </view>
  56. <view class="newyyBotbutton" :style="{background:'#'+themeColor}" @click="yuyue">立即预约</view>
  57. </view>
  58. <timeSelect ref="timeSelect" :stationID="stationID" :timedata="timedata" :themeColor="themeColor" @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:'',
  71. userInfo:'',
  72. timedata:'',
  73. billDate:'',
  74. yuyueData:'',
  75. carInfo:'',
  76. yyshopInfo:'',
  77. themeColor:'',
  78. isgo:true,
  79. stationID:'',
  80. }
  81. },
  82. onLoad(opt) {
  83. this.themeColor = uni.getStorageSync("themeColor");
  84. console.log(this.$store.state.yuyueData)
  85. this.yuyueData=this.$store.state.yuyueData;
  86. this.stationID=this.yuyueData[0].StationID
  87. this.totalPrice=opt.totalPrice
  88. //this.carInfo=this.$store.state.carInfo
  89. this.userInfo = uni.getStorageSync("userInfo");
  90. this.yyshopInfo=uni.getStorageSync("yyshopInfo")
  91. //this.getOrderTimes()
  92. },
  93. onShow() {
  94. this.carInfo=this.$store.state.carInfo;
  95. console.log(this.carInfo)
  96. },
  97. methods: {
  98. goCarlist(){
  99. uni.navigateTo({
  100. url:'../user/addCar/cailist'
  101. })
  102. },
  103. yuyue(){
  104. if(!this.carInfo){
  105. uni.showToast({
  106. title: '请选择车辆',
  107. icon: 'none',
  108. duration: 3000
  109. });
  110. return false;
  111. }
  112. if(!this.carInfo.id){
  113. uni.showToast({
  114. title: '请选择车辆',
  115. icon: 'none',
  116. duration: 3000
  117. });
  118. return false;
  119. }
  120. if(!this.billDate){
  121. uni.showToast({
  122. title: '请选择预约时间',
  123. icon: 'none',
  124. duration: 3000
  125. });
  126. return false;
  127. }
  128. if(!this.isgo){
  129. return false
  130. }
  131. this.isgo=false;
  132. this.$http('openreservation/saveOrderSheet', {
  133. billDate: this.billDate,
  134. comment: this.comment,
  135. carID: this.carInfo.id,
  136. orderItem: this.yuyueData.map(item => item.ID).join(),
  137. shopId: this.yyshopInfo.id,
  138. unionId: this.userInfo.unionId,
  139. stationID:this.stationID
  140. },'POST').then(res => {
  141. this.isgo=true;
  142. var id=res.data
  143. if(res.code==0){
  144. uni.showModal({
  145. title: '提示',
  146. content: '预约订单提交成功',
  147. confirmText:'返回首页',
  148. cancelText:'查看订单',
  149. success: function (res) {
  150. if (res.confirm) {
  151. // console.log('用户点击确定');
  152. uni.switchTab({
  153. url:'index'
  154. })
  155. } else if (res.cancel) {
  156. // console.log('用户点击取消');
  157. // uni.reLaunch({
  158. // url:'../user/bespeakDetail?id='+id
  159. // })
  160. uni.redirectTo({
  161. url:'../user/bespeakDetail?id='+id
  162. })
  163. }
  164. }
  165. });
  166. }else{
  167. uni.showToast({
  168. title: res.msg,
  169. icon: 'none',
  170. duration: 3000
  171. });
  172. }
  173. })
  174. },
  175. changeTime(data){
  176. console.log(data)
  177. this.billDate=data
  178. },
  179. cktime(){
  180. this.$refs.timeSelect.open();
  181. },
  182. }
  183. }
  184. </script>
  185. <style scoped lang="less">
  186. .box{
  187. background: #F4F5F7;
  188. min-height: 100vh;
  189. }
  190. .yuyuCheckTis{
  191. color: #C8841C;
  192. line-height: 37rpx;
  193. font-size: 28rpx;
  194. background: #FFF7EB;
  195. padding: 18rpx 24rpx;
  196. font-weight: 400;
  197. }
  198. .cont{
  199. padding: 24rpx;
  200. }
  201. .contkk{
  202. background: #ffffff;
  203. border-radius: 10rpx;
  204. padding: 0 20rpx;
  205. }
  206. .kkline{
  207. display: flex;
  208. padding: 30rpx 0;
  209. border-bottom: 1px solid #EEEEEE;
  210. color: #666666;
  211. font-size: 28rpx;
  212. }
  213. .kkline2{
  214. display: flex;
  215. justify-content: space-between;
  216. padding: 30rpx 0;
  217. border-bottom: 1px solid #EEEEEE;
  218. color: #666666;
  219. font-size: 28rpx;
  220. }
  221. .stars{
  222. color: #FF2400;
  223. }
  224. .kklineRight{
  225. color: #3c3c3c;
  226. font-size: 28rpx;
  227. display: flex;
  228. justify-content: space-between;
  229. width: 450rpx;
  230. }
  231. .kklineLeft {
  232. width: 200rpx;
  233. }
  234. .rightJt{
  235. width: 30rpx;
  236. height: 30rpx;
  237. margin-top: 4rpx;
  238. }
  239. .lineborderNo{
  240. border-bottom: none;
  241. }
  242. .kklineLeft1{
  243. font-weight: 500;
  244. color: #3C3C3C;
  245. font-size: 28rpx;
  246. }
  247. .kklineRight1{
  248. font-weight: 400;
  249. color: #999999;
  250. font-size: 26rpx;
  251. }
  252. .kklineLeft3{
  253. font-weight: 400;
  254. color: #666666;
  255. font-size: 28rpx;
  256. width: 480rpx;
  257. overflow: hidden;
  258. white-space: nowrap;
  259. text-overflow: ellipsis;
  260. }
  261. .kklineRight3{
  262. font-weight: 400;
  263. color: #3C3C3C;
  264. font-size: 28rpx;
  265. }
  266. .bzline{
  267. display: flex;padding: 30rpx 0;
  268. }
  269. .beizInput{
  270. width: 450rpx;font-size: 28rpx;
  271. }
  272. .beiz{
  273. color: #666666;font-size: 28rpx;
  274. width: 200rpx;
  275. }
  276. .bottom-container{
  277. width: 750rpx;
  278. height: 120rpx;
  279. background: #FFFFFF;
  280. box-shadow: 0px -2px 10px 0px rgba(153,153,153,0.1000);
  281. position: fixed;
  282. left: 0;
  283. bottom: 0;
  284. display: flex;
  285. justify-content: space-between;
  286. }
  287. .newyyBotbutton{
  288. width: 204rpx;
  289. height: 74rpx;
  290. background: #D53533;
  291. border-radius: 37rpx;
  292. font-weight: 500;
  293. color: #FFFFFF;
  294. line-height: 74rpx;
  295. text-align: center;
  296. margin-right: 30rpx;
  297. margin-top: 23rpx;
  298. }
  299. .bottom-container-price{
  300. color: #FF0000;
  301. padding-top: 30rpx;
  302. padding-left: 30rpx;
  303. font-size: 32rpx;
  304. }
  305. .qianhaospan{
  306. font-size: 22rpx;
  307. }
  308. .ckj{
  309. color: #999999;font-size: 24rpx;
  310. padding-left: 30rpx;
  311. }
  312. </style>