confirmYuyue.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. <template>
  2. <view class="box">
  3. <!-- <view class="yuyuCheckTis" :style="{background:'#'+themeColor}">
  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 ">
  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 class=" lineborderNo" >
  33. <view class="bzline">
  34. <view class="beiz"><span class="stars">*</span>手机号</view>
  35. <input type="number" v-model="mobilePhone" placeholder="请输入手机号" class="beizInput" placeholder-style="color:#cccccc;">
  36. </view>
  37. </view>
  38. </view>
  39. <view class="contkk" style="margin-top: 20rpx;">
  40. <view class="kkline2">
  41. <view class="kklineLeft1">预约项目</view>
  42. <view class="kklineRight1">(以实际门店价格为准)</view>
  43. </view>
  44. <view class="kkline2" v-for="(item,index) in yuyueData">
  45. <view class="kklineLeft3">{{item.ItemName}}</view>
  46. <view class="kklineRight3" v-if="item.Price">¥{{item.Price}}</view>
  47. </view>
  48. </view>
  49. <view class="contkk" style="margin-top: 20rpx;">
  50. <view class="bzline">
  51. <view class="beiz">备注</view>
  52. <input type="text" v-model="comment" placeholder="请输入备注(选填)" class="beizInput" placeholder-style="color:#cccccc;">
  53. </view>
  54. </view>
  55. </view>
  56. <view style="height: 120rpx;"></view>
  57. <view class="bottom-container">
  58. <view>
  59. <view class="bottom-container-price"><span class="qianhaospan" v-if="totalPrice" >¥</span> {{totalPrice}} <span></span></view>
  60. <view class="ckj">参考价格(到店支付)</view>
  61. </view>
  62. <view class="newyyBotbutton" :style="{background:'#'+themeColor}" @click="yuyue">立即预约</view>
  63. </view>
  64. <timeSelect ref="timeSelect" :stationID="stationID" :timedata="timedata" :themeColor="themeColor" @changeTime="changeTime"></timeSelect>
  65. </view>
  66. </template>
  67. <script>
  68. import timeSelect from '@/components/timeSelect/timeSelect.vue'
  69. export default {
  70. components: {
  71. timeSelect
  72. },
  73. data() {
  74. return {
  75. comment:'',
  76. totalPrice:'',
  77. userInfo:'',
  78. timedata:'',
  79. billDate:'',
  80. yuyueData:'',
  81. carInfo:'',
  82. yyshopInfo:'',
  83. themeColor:'',
  84. isgo:true,
  85. stationID:'',
  86. mobilePhone:'',
  87. ext:'',
  88. }
  89. },
  90. onLoad(opt) {
  91. this.themeColor = uni.getStorageSync("themeColor");
  92. console.log(this.$store.state.yuyueData)
  93. this.yuyueData=this.$store.state.yuyueData;
  94. this.stationID=this.yuyueData[0].StationID
  95. this.totalPrice=opt.totalPrice
  96. //this.carInfo=this.$store.state.carInfo
  97. //this.userInfo = uni.getStorageSync("userInfo");
  98. this.userInfo = this.$store.state.userInfo;
  99. this.yyshopInfo=uni.getStorageSync("yyshopInfo")
  100. this.ext=this.$common.getExtStoreId();
  101. //this.getOrderTimes()
  102. if(this.userInfo){
  103. console.log(this.userInfo)
  104. //var customerInfo=uni.getStorageSync("wxOpenData").loginInfo.customerInfo;
  105. this.mobilePhone=this.userInfo.mobilePhone;
  106. }
  107. },
  108. onShow() {
  109. this.carInfo=this.$store.state.carInfo;
  110. console.log(this.carInfo)
  111. },
  112. methods: {
  113. goCarlist(){
  114. uni.navigateTo({
  115. url:'../user/addCar/cailist'
  116. })
  117. },
  118. yuyue(){
  119. /* if(!this.carInfo){
  120. uni.showToast({
  121. title: '请选择车辆',
  122. icon: 'none',
  123. duration: 3000
  124. });
  125. return false;
  126. }
  127. if(!this.carInfo.id){
  128. uni.showToast({
  129. title: '请选择车辆',
  130. icon: 'none',
  131. duration: 3000
  132. });
  133. return false;
  134. } */
  135. var reg = /^1[3|4|5|7|8][0-9]\d{8}$/;
  136. if(reg.test(this.mobilePhone) == false ){
  137. console.log("手机号码格式不正确");
  138. uni.showToast({
  139. title: '请输入正确的手机号',
  140. icon: 'none',
  141. duration: 3000
  142. });
  143. return false;
  144. }
  145. if(!this.billDate){
  146. uni.showToast({
  147. title: '请选择预约时间',
  148. icon: 'none',
  149. duration: 3000
  150. });
  151. return false;
  152. }
  153. if(!this.mobilePhone){
  154. uni.showToast({
  155. title: '请填写手机号',
  156. icon: 'none',
  157. duration: 3000
  158. });
  159. return false;
  160. }
  161. if(!this.isgo){
  162. return false
  163. }
  164. this.isgo=false;
  165. this.$http('openreservation/saveOrderSheet', {
  166. billDate: this.billDate,
  167. comment: this.comment,
  168. // carID: this.carInfo?.id || '',
  169. carID: '',
  170. orderItem: this.yuyueData.map(item => item.ID).join(),
  171. shopId: this.yyshopInfo.id,
  172. unionId: this.ext.unionId,
  173. stationID:this.stationID,
  174. mobilePhone:this.mobilePhone
  175. },'POST').then(res => {
  176. this.isgo=true;
  177. var id=res.data
  178. if(res.code==0){
  179. if(this.userInfo){
  180. uni.showModal({
  181. title: '提示',
  182. content: '预约订单提交成功',
  183. confirmText:'返回首页',
  184. cancelText:'查看订单',
  185. success: function (res) {
  186. if (res.confirm) {
  187. // console.log('用户点击确定');
  188. uni.switchTab({
  189. url:'index'
  190. })
  191. } else if (res.cancel) {
  192. // console.log('用户点击取消');
  193. // uni.reLaunch({
  194. // url:'../user/bespeakDetail?id='+id
  195. // })
  196. uni.redirectTo({
  197. url:'../user/bespeakDetail?id='+id
  198. })
  199. }
  200. }
  201. });
  202. }else{
  203. uni.showModal({
  204. title: '提示',
  205. content: '预约订单提交成功',
  206. confirmText:'返回首页',
  207. showCancel:false,
  208. success: function (res) {
  209. if (res.confirm) {
  210. // console.log('用户点击确定');
  211. uni.switchTab({
  212. url:'index'
  213. })
  214. }
  215. }
  216. });
  217. }
  218. }else{
  219. uni.showToast({
  220. title: res.msg,
  221. icon: 'none',
  222. duration: 3000
  223. });
  224. }
  225. })
  226. },
  227. changeTime(data){
  228. console.log(data)
  229. this.billDate=data
  230. },
  231. cktime(){
  232. this.$refs.timeSelect.open();
  233. },
  234. }
  235. }
  236. </script>
  237. <style scoped lang="less">
  238. .box{
  239. background: #F4F5F7;
  240. min-height: 100vh;
  241. }
  242. .yuyuCheckTis{
  243. color: #C8841C;
  244. line-height: 37rpx;
  245. font-size: 28rpx;
  246. background: #FFF7EB;
  247. padding: 18rpx 24rpx;
  248. font-weight: 400;
  249. }
  250. .cont{
  251. padding: 24rpx;
  252. }
  253. .contkk{
  254. background: #ffffff;
  255. border-radius: 10rpx;
  256. padding: 0 20rpx;
  257. }
  258. .kkline{
  259. display: flex;
  260. padding: 30rpx 0;
  261. border-bottom: 1px solid #EEEEEE;
  262. color: #666666;
  263. font-size: 28rpx;
  264. }
  265. .kkline2{
  266. display: flex;
  267. justify-content: space-between;
  268. padding: 30rpx 0;
  269. border-bottom: 1px solid #EEEEEE;
  270. color: #666666;
  271. font-size: 28rpx;
  272. }
  273. .stars{
  274. color: #FF2400;
  275. }
  276. .kklineRight{
  277. color: #3c3c3c;
  278. font-size: 28rpx;
  279. display: flex;
  280. justify-content: space-between;
  281. width: 450rpx;
  282. }
  283. .kklineLeft {
  284. width: 200rpx;
  285. }
  286. .rightJt{
  287. width: 30rpx;
  288. height: 30rpx;
  289. margin-top: 4rpx;
  290. }
  291. .lineborderNo{
  292. border-bottom: none;
  293. }
  294. .kklineLeft1{
  295. font-weight: 500;
  296. color: #3C3C3C;
  297. font-size: 28rpx;
  298. }
  299. .kklineRight1{
  300. font-weight: 400;
  301. color: #999999;
  302. font-size: 26rpx;
  303. }
  304. .kklineLeft3{
  305. font-weight: 400;
  306. color: #666666;
  307. font-size: 28rpx;
  308. width: 480rpx;
  309. overflow: hidden;
  310. white-space: nowrap;
  311. text-overflow: ellipsis;
  312. }
  313. .kklineRight3{
  314. font-weight: 400;
  315. color: #3C3C3C;
  316. font-size: 28rpx;
  317. }
  318. .bzline{
  319. display: flex;padding: 30rpx 0;
  320. }
  321. .beizInput{
  322. width: 450rpx;font-size: 28rpx;
  323. }
  324. .beiz{
  325. color: #666666;font-size: 28rpx;
  326. width: 200rpx;
  327. }
  328. .bottom-container{
  329. width: 750rpx;
  330. height: 120rpx;
  331. background: #FFFFFF;
  332. box-shadow: 0px -2px 10px 0px rgba(153,153,153,0.1000);
  333. position: fixed;
  334. left: 0;
  335. bottom: 0;
  336. display: flex;
  337. justify-content: space-between;
  338. }
  339. .newyyBotbutton{
  340. width: 204rpx;
  341. height: 74rpx;
  342. background: #D53533;
  343. border-radius: 37rpx;
  344. font-weight: 500;
  345. color: #FFFFFF;
  346. line-height: 74rpx;
  347. text-align: center;
  348. margin-right: 30rpx;
  349. margin-top: 23rpx;
  350. }
  351. .bottom-container-price{
  352. color: #FF0000;
  353. padding-top: 30rpx;
  354. padding-left: 30rpx;
  355. font-size: 32rpx;
  356. }
  357. .qianhaospan{
  358. font-size: 22rpx;
  359. }
  360. .ckj{
  361. color: #999999;font-size: 24rpx;
  362. padding-left: 30rpx;
  363. }
  364. </style>