tire.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  1. <template>
  2. <view class="box">
  3. <view class="top" >
  4. <view class="topTitle">天天低价买贵退差</view>
  5. <view class="msBox">
  6. <view class="msLine">
  7. <image class="msIcon" src="../../static/img2/yczg.png" mode=""></image>
  8. <view class="msTxt">原厂直供</view>
  9. </view>
  10. <view class="msLine">
  11. <image class="msIcon" src="../../static/img2/zszb.png" mode=""></image>
  12. <view class="msTxt">终身质保</view>
  13. </view>
  14. <view class="msLine">
  15. <image class="msIcon" src="../../static/img2/smfw.png" mode=""></image>
  16. <view class="msTxt">上门服务</view>
  17. </view>
  18. </view>
  19. <view class="inputBox">
  20. <view class="iBline">
  21. <span>雪佛兰 科沃兹</span>
  22. <image class="xiaIcon" src="../../static/img2/xia.png" mode=""></image>
  23. </view>
  24. <view class="iBsx"></view>
  25. <view class="iBline">
  26. <view style="display: flex;">
  27. <span>215/55 R16</span>
  28. <span class="shipei">适配</span>
  29. </view>
  30. <image class="xiaIcon" src="../../static/img2/xia.png" mode=""></image>
  31. </view>
  32. </view>
  33. </view>
  34. <view class="contBox">
  35. <view class="contTabBox">
  36. <view class="contTab contTabActive">综合</view>
  37. <view class="tabprice">
  38. <view>价格</view>
  39. <view class="tabpriceImg">
  40. <image src="../../static/timg/icon_arrow_up_def@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIcons"></image>
  41. <image src="../../static/timg/icon_arrow_def@2x.png" mode="" class="paixuLineTbtopIcon paixuLineTbtopIconx"></image>
  42. </view>
  43. </view>
  44. <view class="contTab">销量</view>
  45. </view>
  46. <view class="contLineBox">
  47. <view class="contLine" v-for="(item,index) in 3" @click="goDetail">
  48. <image class="lineImg" src="../../static/timg/noimg.png" mode=""></image>
  49. <view class="goodsRight">
  50. <view class="bygoodsNameBox">
  51. <span class="isRecommend" >适配</span>
  52. <span class="bygoodsName"> 路博路博(ROADBOSS)轮胎 195/65R5 91H HP601</span>
  53. </view>
  54. <view class="tireMS">耐磨 静音</view>
  55. <view class="goodsbq">
  56. <view class="goodsbqLine">第二条半价</view>
  57. <view class="goodsbqLine">双11轮胎节</view>
  58. </view>
  59. <view class="goodspriceBox">
  60. <view class="goodsprice1">¥</view>
  61. <view class="goodsprice2">294.5</view>
  62. <view class="goodsprice3">¥414</view>
  63. </view>
  64. <view class="goodsk">
  65. <view class="goodsKline">
  66. <view class="goodsKlineLeft">送</view>
  67. <view class="goodsKlineRgiht">动平衡</view>
  68. </view>
  69. <view class="goodsKline">
  70. <view class="goodsKlineLeft">送</view>
  71. <view class="goodsKlineRgiht">动平衡</view>
  72. </view>
  73. </view>
  74. </view>
  75. </view>
  76. </view>
  77. </view>
  78. </view>
  79. </template>
  80. <script>
  81. export default {
  82. components: {},
  83. /*保养 1 */
  84. data() {
  85. return {
  86. themeColor:'',
  87. ext:'',
  88. carInfo:'',
  89. }
  90. },
  91. onLoad(opt) {
  92. this.ext = this.$common.getExtStoreId();
  93. this.themeColor = uni.getStorageSync("themeColor");
  94. uni.setNavigationBarColor({
  95. frontColor: "#ffffff",
  96. backgroundColor: 'FD3142'// + this.themeColor
  97. })
  98. this.carInfo=this.$store.state.carInfo;
  99. this.maintainProjectID=opt.maintainProjectID
  100. if(this.carInfo){
  101. //this.getRecommend()
  102. }else{
  103. /* uni.showModal({
  104. title: '提示',
  105. content: '请先选择车辆',
  106. showCancel:false,
  107. success: function (res) {
  108. if (res.confirm) {
  109. uni.navigateTo({
  110. url:'../user/addCar/cailist?type=5'
  111. })
  112. }
  113. }
  114. }); */
  115. }
  116. },
  117. onShow() {
  118. var car =uni.getStorageSync("byCar")
  119. },
  120. methods: {
  121. goDetail(){
  122. uni.navigateTo({
  123. url:'tireDetail'
  124. })
  125. },
  126. clearAll(){
  127. var that=this
  128. uni.showModal({
  129. title: '提示',
  130. content: '确定清空吗?',
  131. success: function(resTK) {
  132. if (resTK.confirm) {
  133. that.list.forEach(item=>{
  134. item.packageItems.forEach(v=>{
  135. v.select=false
  136. })
  137. })
  138. that.itemDefault=''
  139. that.qdNum=0
  140. that.totalPrice=0
  141. }
  142. }
  143. });
  144. },
  145. goCkcar(){
  146. uni.navigateTo({
  147. url:'../user/addCar/cailist?type=5'
  148. })
  149. },
  150. goItem(item){
  151. uni.removeStorageSync('byCar');
  152. uni.navigateTo({
  153. url:'maintainItem?maintainId='+item.id+'&isRecommend='+item.isRecommend
  154. })
  155. },
  156. goSubmit(){
  157. if(this.itemDefault){
  158. if(this.itemDefault.content){
  159. this.itemDefault.content=this.itemDefault.content.replace(/\<img/gi, '<img style="max-width:100% !important;height:auto" ');
  160. }
  161. this.itemDefault.goodsnum=this.goodsnum
  162. this.itemDefault.goodsname=this.lineItem.title
  163. this.itemDefault.itemId=this.lineItem.id
  164. this.itemDefault.mainImgUrl=this.lineItem.mainImgUrl
  165. uni.setStorage({
  166. key: 'itemDefault',
  167. data: this.itemDefault,
  168. success: function () {
  169. uni.navigateTo({
  170. url:'maintainSubmit'
  171. })
  172. }
  173. });
  174. }else{
  175. uni.showToast({
  176. title: '请选择商品规格',
  177. icon:'none',
  178. duration: 3000
  179. });
  180. }
  181. },
  182. }
  183. }
  184. </script>
  185. <style scoped lang="less">
  186. .box {
  187. width: 100vw;
  188. min-height: 100vh;
  189. background: #F4F4F4;
  190. }
  191. .contBox{
  192. background: linear-gradient( 180deg, #FED3C1 0%, #F3F3F3 14%, #F2F2F2 100%);
  193. border-radius: 24rpx 24rpx 0rpx 0rpx;
  194. min-height: 500rpx;
  195. margin-top: -20rpx;
  196. }
  197. .goodsk{
  198. display: flex;padding-top: 8rpx;
  199. }
  200. .goodsKline{
  201. display: flex;font-size: 15rpx;
  202. color: #FF063A;
  203. border-radius: 2rpx;
  204. border: 1rpx solid #FF063A;
  205. margin-right: 8rpx;
  206. }
  207. .goodsKlineLeft{
  208. padding: 2rpx 4rpx;
  209. border-right: 1rpx solid #FF063A;
  210. }
  211. .goodsKlineRgiht{
  212. padding: 2rpx 4rpx;
  213. }
  214. .bygoodsNameBox{
  215. text-overflow: -o-ellipsis-lastline;
  216. overflow: hidden;
  217. text-overflow: ellipsis;
  218. display: -webkit-box;
  219. -webkit-line-clamp: 2;
  220. line-clamp: 2;
  221. -webkit-box-orient: vertical;
  222. width: 440rpx;
  223. }
  224. .goodsRight{
  225. padding-left: 24rpx;
  226. }
  227. .bygoodsName{
  228. font-weight: 600;
  229. font-size: 28rpx;
  230. color: #222222;
  231. line-height: 40rpx;
  232. padding-left: 10rpx;
  233. }
  234. .goodspriceBox{
  235. display: flex;padding-top: 8rpx;
  236. }
  237. .goodsprice1{
  238. font-weight: 600;
  239. font-size: 20rpx;
  240. color: #EC0F0A;
  241. padding-top: 8rpx;
  242. }
  243. .goodsprice2{
  244. font-weight: 500;
  245. font-size: 30rpx;
  246. color: #EC0F0A;
  247. }
  248. .goodsprice3{
  249. font-weight: 400;
  250. font-size: 22rpx;
  251. color: #9A9A9A;
  252. padding-top: 8rpx;
  253. }
  254. .isRecommend{
  255. font-size: 20rpx;
  256. background: #57C73D;
  257. height: 30rpx;
  258. padding: 0 6rpx;
  259. border-radius: 6rpx;
  260. color: #fff;
  261. margin-top: 5rpx;
  262. /* margin-right: 10rpx; */
  263. }
  264. .contLineBox{
  265. padding: 0 20rpx;
  266. }
  267. .contLine{
  268. padding: 22rpx;
  269. background: #FFFFFF;
  270. border-radius: 16rpx;
  271. margin-bottom: 16rpx;
  272. display: flex;
  273. }
  274. .lineImg{
  275. width: 230rpx;border-radius: 13rpx;
  276. height: 230rpx;
  277. }
  278. .goodsbq{
  279. display: flex;padding-top: 10rpx;
  280. }
  281. .goodsbqLine{
  282. font-size: 20rpx;
  283. color: #FF063A;
  284. background: rgba(236, 15, 10, 0.1);
  285. border-radius: 2rpx;
  286. padding: 2rpx 10rpx;
  287. margin-right: 12rpx;
  288. }
  289. .tireMS{
  290. font-weight: 500;
  291. font-size: 22rpx;
  292. color: #434340;
  293. }
  294. .tabprice{
  295. display: flex;
  296. }
  297. .tabpriceImg{
  298. display: flex;
  299. justify-content: center;
  300. align-items: center;
  301. flex-direction: column;
  302. }
  303. .contTabBox{
  304. display: flex;justify-content: space-between;
  305. padding: 20rpx 60rpx;font-weight: 500;
  306. font-size: 26rpx;
  307. color: #222222;
  308. }
  309. .paixuLineTbtopIcon{
  310. width: 16rpx;
  311. height: 8rpx;
  312. padding-top: 6rpx;
  313. padding-bottom: 6rpx;
  314. padding-left: 10rpx;
  315. }
  316. .contTabActive{
  317. font-weight: 500;
  318. font-size: 26rpx;
  319. color: #EC0F0A;
  320. }
  321. .top{
  322. height: 260rpx;
  323. padding: 40rpx 24rpx;
  324. background: linear-gradient( 180deg, #FD3142 0%, #FE9045 100%);
  325. }
  326. .inputBox{
  327. background: rgba(255,255,255,0.4);
  328. border-radius: 38rpx;line-height: 42rpx;
  329. border: 1px solid #FFFFFF;
  330. padding: 18rpx 30rpx;font-size: 26rpx;color: #222222;
  331. display: flex;justify-content: space-between;
  332. margin-top: 32rpx;
  333. }
  334. .iBsx{
  335. width: 2rpx;
  336. height: 46rpx;
  337. background: #EEEEEE;
  338. opacity: 0.5;
  339. }
  340. .shipei{
  341. width: 48rpx;text-align: center;
  342. height: 28rpx;margin-top: 8rpx;
  343. background: #57C73D;margin-left: 10rpx;
  344. border-radius: 5rpx;
  345. display: inline-block;
  346. font-weight: 500;
  347. font-size: 16rpx;
  348. color: #FFFFFF;
  349. line-height: 28rpx;
  350. }
  351. .xiaIcon{
  352. width: 12rpx;height: 9rpx;margin-top: 18rpx;margin-left: 10rpx;
  353. }
  354. .iBline{
  355. width: 300rpx;display: flex;justify-content: space-between;
  356. }
  357. .ibCarIcon{
  358. height: 42rpx;width: 42rpx;
  359. }
  360. .glIcon{
  361. width: 34rpx;height: 34rpx;margin-top: 6rpx;
  362. }
  363. .ibLeft{
  364. display: flex;
  365. }
  366. .ibRight{
  367. display: flex;
  368. }
  369. .ibCarBox{
  370. display: flex;padding-left: 10rpx;
  371. }
  372. .glInput{
  373. width: 120rpx;line-height: 42rpx;height: 42rpx;
  374. padding-left: 10rpx;
  375. }
  376. .msIcon{
  377. width: 26rpx;height: 26rpx;
  378. }
  379. .msTxt{
  380. font-weight: 500;margin-left: 12rpx;
  381. font-size: 22rpx;
  382. color: #FCD903;
  383. padding-top: 2rpx;
  384. }
  385. .msLine{
  386. display: flex;line-height: 28rpx; width: 180rpx;
  387. justify-content: center;
  388. }
  389. .msBox{
  390. display: flex;justify-content: center;padding-top: 24rpx;
  391. padding-left: 30rpx;padding-right: 30rpx;
  392. }
  393. .spBox{
  394. background: linear-gradient( 180deg, #FFFFFF 0%, #F4F4F4 440rpx);
  395. border-radius: 23rpx;
  396. padding: 24rpx 20rpx 0 24rpx;
  397. margin-top: -50rpx;
  398. padding-bottom: constant(safe-area-inset-bottom);
  399. padding-bottom: env(safe-area-inset-bottom);
  400. }
  401. .spTop{
  402. display: flex;justify-content: space-between;line-height: 40rpx;
  403. padding-bottom: 16rpx;
  404. }
  405. .spTitle{
  406. font-weight: 500;
  407. font-size: 28rpx;
  408. color: #222222;
  409. }
  410. .spMs{
  411. font-size: 24rpx;
  412. color: #666666;
  413. }
  414. .znBox{
  415. height: 200rpx;
  416. background: #FDC856;
  417. border-radius: 21rpx;
  418. }
  419. .znCont{
  420. background: url('http://dmsimg.66km.com/marketing/be56733ed0464993b9e71d351d82062e.jpg') no-repeat;
  421. background-size: 100% 100%;
  422. height: 160rpx;
  423. border-radius: 26rpx;
  424. }
  425. .hxIcon{
  426. height: 4rpx;width: 360rpx;
  427. margin-left: 18rpx;margin-top: 20rpx;
  428. display: block;
  429. }
  430. .znMs{
  431. font-size: 24rpx;
  432. color: #FFFFFF;
  433. line-height: 33rpx;
  434. padding-left: 18rpx;padding-top: 16rpx;
  435. }
  436. .znCar{
  437. font-weight: 500;padding-left: 18rpx;
  438. font-size: 32rpx;padding-top: 24rpx;
  439. color: #8C5E24;
  440. line-height: 45rpx;
  441. }
  442. .goodsMs{
  443. font-weight: 400;padding-top: 10rpx;
  444. padding-bottom: 6rpx;
  445. font-size: 22rpx;
  446. color: #8B8B8B;
  447. line-height: 28rpx;
  448. white-space: nowrap; /* 确保文本在一行内显示 */
  449. overflow: hidden; /* 超出容器部分隐藏 */
  450. text-overflow: ellipsis;
  451. width: 480rpx;
  452. }
  453. .nodataImg{
  454. width: 176rpx;height: 180rpx;
  455. }
  456. .nodataTxt{
  457. font-weight: 400;
  458. font-size: 26rpx;
  459. color: #999999;
  460. line-height: 37rpx;
  461. text-align: center;
  462. padding-top: 10rpx;
  463. }
  464. .nodataBox{
  465. padding-top: 186rpx;
  466. background: #fff;
  467. padding-bottom: 200rpx;
  468. border-radius: 20rpx;
  469. }
  470. .topTitle{
  471. font-family: PangMenZhengDao;
  472. font-size: 60rpx;
  473. color: #FFF99F;
  474. line-height: 80rpx;
  475. text-align: center;
  476. }
  477. </style>