goodsDetail.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  1. <template>
  2. <view class="box">
  3. <view v-if="goodsData">
  4. <view class="mainTop">
  5. <view class="imgBox">
  6. <swiper class="swiper" :circular="true"swiper-item
  7. :indicator-dots="true" indicator-active-color="#FF4F00"
  8. >
  9. <swiper-item v-for="(item,index) in goodsData.listImg">
  10. <view class="swiper-item">
  11. <image :src="item.url" mode="aspectFit" class="goodsImg" v-if="item.url"></image>
  12. <image src="../../static/img/noimg.png" mode="widthFix" class="goodsImg" v-else></image>
  13. </view>
  14. </swiper-item>
  15. <swiper-item v-if=" goodsData.listImg.length==0">
  16. <image src="../../static/img/noimg.png" mode="widthFix" class="goodsImg" ></image>
  17. </swiper-item>
  18. </swiper>
  19. </view>
  20. <view class="priceBox">
  21. <span class="price1">¥{{goodsData.salePrice}}</span>
  22. </view>
  23. <view class="goodsName">
  24. {{goodsData.ShowName}}
  25. </view>
  26. </view>
  27. <!-- 已选车辆店铺-->
  28. <!-- 购物流程-->
  29. <view class="buyLc">
  30. <view class="title">购物流程</view>
  31. <view class="lcIMgBox">
  32. <image src="../../static/img/icon_liuc.png" mode="" class="lcImg"></image>
  33. </view>
  34. <view class="lcLineBox">
  35. <view class="lcline">
  36. 选择商品/项目
  37. </view>
  38. <view class="lcline">
  39. 选择门店
  40. </view>
  41. <view class="lcline">
  42. 在线支付
  43. </view>
  44. <view class="lcline">
  45. 到店服务
  46. </view>
  47. </view>
  48. </view>
  49. <!-- 购物流程-->
  50. <!-- 详情-->
  51. <view class="goosDetal" v-if="MiniAppContent">
  52. <view class="goodsDetalTitle">详情</view>
  53. <rich-text :nodes="MiniAppContent" style="font-size: 0px;"></rich-text>
  54. </view>
  55. <!-- 详情-->
  56. <view style="height: 150rpx;"></view>
  57. <!-- 无店的情况-->
  58. <!-- <view class="bottomNoshop" v-if="!shopData">
  59. <view class="bottomNoshopBtn" @click="gockShop">请先前往首页选择门店</view>
  60. </view> -->
  61. <!-- 立即购买-->
  62. <!-- <view class="buyBottom" v-if="maintain!=1&&maintain!=2">
  63. <view class="buyBottomLeftLine buyBottomLeftLine2" @click="call">
  64. <image src="../../static/img/heicall.png" mode="widthFix" class="callImg"></image>
  65. <view class="buyBottomLeftLineTxt">电话</view>
  66. </view>
  67. <view class="buyBottomLeftLine buyBottomLeftLine2 buyBottomLeftLine3" @click="addGoodsCollection">
  68. <image src="../../static/img/icon_xin_pre.png" mode="widthFix" class="callImg"v-if="goodsData.isCollection==1"></image>
  69. <image src="../../static/img/icon_xin.png" mode="widthFix" class="callImg" v-else></image>
  70. <view class="buyBottomLeftLineTxt" v-if="goodsData.isCollection==1" style="color: #FF4F00;">已收藏</view>
  71. <view class="buyBottomLeftLineTxt" v-else>收藏</view>
  72. </view>
  73. <view class="buyBtn" @click="buy" v-if="maintainCarData&&nobuy!=1">立即购买</view>
  74. </view>
  75. <view class="buyBottom" v-if="maintain==2">
  76. <view class="tihuanBtn" @click="tihuan">替换</view>
  77. </view> -->
  78. </view>
  79. </view>
  80. </template>
  81. <script>
  82. export default {
  83. data() {
  84. return {
  85. goodsId:'',
  86. ShowName:'',
  87. shopData:'',
  88. maintainCarData:'',
  89. goodsData:'',
  90. type:'',
  91. MiniAppContent:'',
  92. typeIndex:'',
  93. nobuy:2,
  94. maintain:'',
  95. goodsreplaceData:'',
  96. }
  97. },
  98. onLoad(opt) {
  99. this.ShowName=opt.ShowName;
  100. this.goodsId=opt.goodsId;
  101. this.shopData=uni.getStorageSync("shopData");
  102. this.maintainCarData=uni.getStorageSync("maintainCarData");
  103. if(opt.type){
  104. this.type=opt.type
  105. }
  106. if(opt.nobuy){
  107. this.nobuy=opt.nobuy
  108. }
  109. if(opt.maintain){
  110. this.maintain=opt.maintain
  111. if(this.maintain==2){
  112. this.goodsreplaceData=uni.getStorageSync("goodsreplaceData");
  113. }
  114. }
  115. this.typeIndex=opt.typeIndex;
  116. this.getData();
  117. //this.addGoodsFootprint()
  118. },
  119. onShow() {
  120. this.$common.isUserId()
  121. this.shopData=uni.getStorageSync("shopData");
  122. },
  123. methods: {
  124. tihuan(){
  125. var that=this;
  126. uni.setStorage({
  127. key: 'replaceData',
  128. data: that.goodsreplaceData,
  129. success: function () {
  130. uni.navigateBack({
  131. delta:2
  132. })
  133. }
  134. });
  135. },
  136. buy(){
  137. var arr=[];
  138. var obj={
  139. 'id':'',
  140. 'listGoodsAll':[],
  141. 'listItem':[],
  142. };
  143. var url=''
  144. if(this.goodsData.list.length>0){
  145. if(this.goodsData.list[0].url){
  146. url=this.goodsData.list[0].url
  147. }else{
  148. }
  149. }
  150. var ShowName=''
  151. if(this.goodsData.ShowName){
  152. ShowName=this.goodsData.ShowName
  153. }
  154. var goodsObj={
  155. goodsID:this.goodsData.ID,
  156. mItemID:'',
  157. mGoodsID:this.goodsData.miniId,
  158. salePrice:this.goodsData.MiniAppSalePrice,
  159. qty:1,
  160. goodsName:ShowName,
  161. picUrl:url
  162. }
  163. obj.listGoodsAll.push(goodsObj);
  164. arr.push(obj)
  165. console.log(arr)
  166. //return false
  167. uni.removeStorageSync('couponData');
  168. uni.navigateTo({
  169. url:'../module/confirmOrder?orderData='+JSON.stringify(arr)+'&currentMileage='+this.maintainCarData.milage
  170. })
  171. },
  172. gockShop(){
  173. uni.navigateTo({
  174. url:'../Shop/ckShop'
  175. })
  176. },
  177. call(){
  178. console.log(this.shopData.mobilePhone)
  179. if(this.shopData.mobilePhone){
  180. uni.makePhoneCall({
  181. phoneNumber: this.shopData.mobilePhone
  182. });
  183. }else{
  184. uni.showToast({
  185. title: '未设置电话',
  186. icon:'none',
  187. duration: 3000,
  188. });
  189. }
  190. },
  191. addGoodsCollection(){
  192. if(this.goodsData.isCollection==0){
  193. uni.showLoading({ });
  194. this.$http('miniAppMyBMemberCar/addGoodsCollection', {
  195. goodsId:this.goodsId,
  196. },'POST').then(res => {
  197. uni.hideLoading();
  198. if(res.code!=0){
  199. uni.showToast({
  200. title: res.msg,
  201. icon:'none',
  202. duration: 3000,
  203. });
  204. }else{
  205. uni.showToast({
  206. title: '收藏成功',
  207. icon:'none',
  208. duration: 3000,
  209. });
  210. this.goodsData.isCollection=1;
  211. }
  212. })
  213. }else{
  214. uni.showLoading({ });
  215. this.$http('miniAppMyBMemberCar/deleteBMemberGoods', {
  216. goodId:this.goodsId,
  217. },'POST').then(res => {
  218. uni.hideLoading();
  219. if(res.code!=0){
  220. uni.showToast({
  221. title: res.msg,
  222. icon:'none',
  223. duration: 3000,
  224. });
  225. }else{
  226. uni.showToast({
  227. title: '取消成功',
  228. icon:'none',
  229. duration: 3000,
  230. });
  231. this.goodsData.isCollection=0;
  232. }
  233. })
  234. }
  235. },
  236. getData(){
  237. if(this.type==2){
  238. var params={
  239. goodsId:this.goodsId,
  240. //shopId:this.shopData.shopId,
  241. }
  242. }else{
  243. var location = uni.getStorageSync("locationCity");
  244. var params={
  245. id:this.goodsId,
  246. guidePrice:this.maintainCarData.guidePrice,
  247. cityCode:location.cityCode,
  248. // shopId:this.shopData.shopId,
  249. }
  250. }
  251. uni.showLoading({ });
  252. if( this.typeIndex==1){
  253. var url='miniApp/tPackageMiniAppController/queryGoodsMiniAppList'
  254. }else{
  255. var url='miniApp/tPackageMiniAppController/queryGoodsInfoDetail'
  256. }
  257. this.$http(url, params,'GET').then(res => {
  258. uni.hideLoading();
  259. /* var a=res.data.Items
  260. this.phoneList=this.phoneList.concat(a); */
  261. if(res.data.MiniAppContent){
  262. this.MiniAppContent=res.data.MiniAppContent.replace(/\<p/gi, '<p style="display: inline-block"');
  263. }
  264. this.goodsData=res.data;
  265. uni.setNavigationBarTitle({
  266. title: res.data.ShowName
  267. })
  268. })
  269. },
  270. addGoodsFootprint(){
  271. this.$http('miniAppMyBMemberCar/addGoodsFootprint', {
  272. goodId:this.goodsId,
  273. },'POST').then(res => {
  274. })
  275. }
  276. },
  277. filters:{
  278. formatRichText(html) {
  279. },
  280. }
  281. }
  282. </script>
  283. <style scoped>
  284. .box{
  285. min-height: 100vh;
  286. background:#F4F5F7 ;
  287. }
  288. .mainTop{
  289. background: #FFFFFF;
  290. }
  291. .swiper-item{
  292. width: 100vw;
  293. height: 700rpx;
  294. }
  295. .swiper{
  296. height: 700rpx;
  297. }
  298. .goodsImg{
  299. width: 750rpx;
  300. height: 700rpx;
  301. }
  302. .imgBox{
  303. text-align: center;
  304. }
  305. .priceBox{
  306. padding: 30rpx 17rpx;
  307. }
  308. .price1{
  309. font-size: 36rpx;
  310. font-weight: 600;
  311. color: #FF4F00;
  312. }
  313. .price2{
  314. font-size: 24rpx;
  315. color: #999999;
  316. padding-left: 20rpx;
  317. text-decoration:line-through;
  318. }
  319. .goodsName{
  320. padding: 0 25rpx 30rpx 25rpx;
  321. font-size: 32rpx;
  322. font-weight: 500;
  323. color: #333333;
  324. }
  325. .carShopBox{
  326. background: #FFFFFF;
  327. padding: 30rpx 24rpx;
  328. margin-top: 20rpx;
  329. }
  330. .maintainCarTitle{
  331. font-size: 26rpx;
  332. color: #999999;
  333. }
  334. .maintainCarTxt{
  335. font-size: 26rpx;
  336. color: #3C3C3C;
  337. padding-left: 30rpx;
  338. }
  339. .title{
  340. font-size: 30rpx;
  341. padding-bottom: 30rpx;
  342. color: #333333;
  343. font-weight: 600;
  344. }
  345. .shopBox{
  346. padding-top: 30rpx;
  347. display: flex;
  348. }
  349. .flex{
  350. display: flex;
  351. justify-content: space-between;
  352. }
  353. .shopCont{
  354. padding-left: 22rpx;
  355. width: 480rpx;
  356. }
  357. .shopName{
  358. color: #333333;
  359. font-size: 26rpx;
  360. font-weight: 600;
  361. }
  362. .span1{
  363. color: #FF4F00;font-size: 36rpx;
  364. }
  365. .span2{
  366. color: #FF4F00;font-size: 22rpx;
  367. }
  368. .span3{
  369. color: #333333;font-size: 22rpx;padding-left: 22rpx;
  370. }
  371. .shopBq{
  372. color: #FF4F00;font-size: 22rpx;border-radius: 4rpx;
  373. border: 1px solid #FF4F00;line-height: 30rpx;height: 30rpx;padding: 0rpx 5rpx;
  374. margin-top: 10rpx;
  375. }
  376. .shopTime{
  377. color: #666666;font-size: 22rpx;
  378. }
  379. .addressBox{
  380. color: #666666;font-size: 22rpx;
  381. }
  382. .shopImg{
  383. width: 120rpx;
  384. height: 120rpx;
  385. }
  386. .buyLc{
  387. padding: 24rpx 30rpx;
  388. background: #FFFFFF;
  389. margin-top: 20rpx;
  390. }
  391. .lcImg{
  392. width: 618rpx;
  393. height: 22rpx;
  394. }
  395. .lcIMgBox{
  396. text-align: center;
  397. }
  398. .lcline{
  399. font-size: 26rpx;
  400. color: #333333;
  401. }
  402. .lcLineBox{
  403. display: flex;
  404. justify-content: space-around;
  405. padding-top: 20rpx;
  406. }
  407. .goosDetal{
  408. background: #FFFFFF;
  409. margin-top: 20rpx;
  410. }
  411. .goodsDetalTitle{
  412. padding: 24rpx 30rpx;
  413. font-size: 30rpx;
  414. font-weight: 600;
  415. color: #333333;
  416. }
  417. .bottomNoshop{
  418. position: fixed;
  419. left: 0;
  420. bottom: 0;
  421. width: 750rpx;
  422. height: 120rpx;
  423. background: #FFFFFF;
  424. box-shadow: 0px -2px 20px 0px rgba(153, 153, 153, 0.2);
  425. }
  426. .bottomNoshopBtn{
  427. width: 690rpx;
  428. height: 74rpx;
  429. background: #CCCCCC;
  430. border-radius: 37rpx;
  431. text-align: center;
  432. line-height: 74rpx;
  433. color: #FFFFFF;
  434. margin-top: 29rpx;
  435. margin-left: 30rpx;
  436. }
  437. .callImg{
  438. width: 36rpx;
  439. }
  440. .buyBottomLeftLineTxt{
  441. font-size: 22rpx;
  442. color: #333333;
  443. }
  444. .buyBottom{
  445. position: fixed;
  446. left: 0;
  447. bottom: 0;
  448. width: 750rpx;
  449. height: 120rpx;
  450. background: #FFFFFF;
  451. box-shadow: 0px -2px 20px 0px rgba(153, 153, 153, 0.2);
  452. display: flex;
  453. }
  454. .buyBtn{
  455. width: 400rpx;
  456. height: 74rpx;
  457. background: #FF4F00;
  458. border-radius: 37rpx;
  459. text-align: center;
  460. line-height: 74rpx;
  461. font-size: 30rpx;
  462. color: #FFFFFF;
  463. margin-top: 23rpx;
  464. margin-left: 50rpx;
  465. }
  466. .buyBottomLeftLine1{
  467. padding-top: 28rpx;
  468. padding-left: 56rpx;
  469. }
  470. .buyBottomLeftLine2{
  471. padding-top: 32rpx;
  472. padding-left: 56rpx;
  473. text-align: center;
  474. }
  475. .buyBottomLeftLine3{
  476. width: 120rpx;
  477. padding-left: 0;
  478. margin-left: 50rpx;
  479. }
  480. .goosDetal /deep/ img{
  481. width: 100vw;
  482. }
  483. .goosDetal image{
  484. width: 100vw;
  485. }
  486. .goosDetal /deep/ p{
  487. margin: 0;
  488. padding: 0;
  489. display: flex;
  490. }
  491. .tihuanBtn{
  492. width: 600rpx;
  493. height: 74rpx;
  494. background: #FF4F00;
  495. border-radius: 37rpx;
  496. text-align: center;
  497. line-height: 74rpx;
  498. font-size: 30rpx;
  499. color: #FFFFFF;
  500. margin-top: 23rpx;
  501. margin-left: 75rpx;
  502. }
  503. </style>