shopDetail.vue 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200
  1. <template>
  2. <view class="cont">
  3. <view v-if="shopdata">
  4. <view class="top" >
  5. <swiper class="swiper" :circular="true"
  6. :indicator-dots="true" indicator-active-color="#FF4F00"
  7. v-if="shopImg.length>0"
  8. >
  9. <swiper-item v-for="(item,index) in shopImg">
  10. <view class="swiper-item">
  11. <image :src="item" mode="widthFix" class="swpImg"></image>
  12. </view>
  13. </swiper-item>
  14. </swiper>
  15. <image src="../../static/img/750500.png" mode="" class="swpImg" v-else></image>
  16. <view class="Member" @click="deleteMember" v-if="shopdata.isAttention">取消关注</view>
  17. <view class="Member" @click="Member" v-if="!shopdata.isAttention">关注</view>
  18. </view>
  19. <!-- 店铺主体 -->
  20. <view class="shopMain">
  21. <view class="shopName">{{shopdata.shopName}}</view>
  22. <view class="pingfenBox" @click="goAppraise(shopdata.shopId)">
  23. <view class="fenshuBox" v-if="shopdata.shopScore"><span class="fenshuNum">{{shopdata.shopScore}}</span> <span class="fenshuTxt">分</span></view>
  24. <view class="fenshuBox" v-if="!shopdata.shopScore"> <span class="fenshuTxt2">暂无评分</span></view>
  25. <view class="shuxian"></view>
  26. <span class="cishu">服务次数 {{shopdata.sheetSum}}</span>
  27. <view class="shuxian"></view>
  28. <span class="cishu">评价数 {{shopdata.evaluateSum}}</span>
  29. <image src="../../static/img/jt.png" mode="" class="pingfenImg"></image>
  30. </view>
  31. <!-- 是否营业 -->
  32. <view class="business">
  33. <view class="businessTitle">营业时间:</view>
  34. <view class="businessTitme"> <span v-if="shopdata.startTime">{{shopdata.startTime}}</span> -- <span v-if="shopdata.endTime">{{shopdata.endTime}}</span> </view>
  35. </view>
  36. <!-- 品牌 -->
  37. <view class="brandsBox">
  38. <view class="brandsLine" v-if="shopdata.levelName">{{shopdata.levelName}}</view>
  39. <view v-for="(item,index) in brandsList" class="brandsLine2">{{item}}</view>
  40. </view>
  41. </view>
  42. <!-- 地图 -->
  43. <view class="mapBox">
  44. <view class="mapLeft">
  45. <view class="dingwBox"><image src="../../static/img/icon_zuob.png" mode="" class="mapdwImg"></image>
  46. <view class="distance" v-if="shopdata.distance&&shopdata.distance!= '0.00'">距离 {{shopdata.distance}}km</view>
  47. <view class="distance" v-else>距离 --km</view>
  48. </view>
  49. <view class="mapaddress">{{shopdata.provinceName}}{{shopdata.cityName}}{{shopdata.areaName}}
  50. <span v-if="shopdata.address">{{shopdata.address}}</span>
  51. </view>
  52. </view>
  53. <view class="shopsx"></view>
  54. <view class="shopRightBox" @click="map">
  55. <view> <image src="../../static/img/icon_ditu.png" mode="" class="shopRightImg"></image> </view>
  56. <view class="shopRihgtTxt">地图</view>
  57. </view>
  58. <view class="shopsx"></view>
  59. <view class="shopRightBox" @click="call">
  60. <view> <image src="../../static/img/icon_phone.png" mode="" class="shopRightImg"></image> </view>
  61. <view class="shopRihgtTxt">电话</view>
  62. </view>
  63. </view>
  64. <!-- 车型里程 -->
  65. <view class="Cartop">
  66. <view class="CartopLeft">
  67. <image :src="maintainCarData.brandLogo" mode="" class="CarbrandLogo" @click="carEdit"></image>
  68. <view class="carName" @click="carEdit">
  69. <span v-if="maintainCarData.brand"> {{maintainCarData.brand}}</span>
  70. <span v-if="maintainCarData.series">-{{maintainCarData.series}}</span>
  71. <span v-if="!maintainCarData.brand">添加我的爱车</span>
  72. </view>
  73. <image src="../../static/img/icon_edit.png" mode="" class="CartopEdit" @click="carEdit"></image>
  74. </view>
  75. <view class="CartopRight">
  76. <input type="text" v-model="maintainCarData.milage" @confirm="getData" value="" placeholder="请输入当前里程" class="CartopInput" placeholder-style="color:#999999;"/>
  77. <view>
  78. <image src="../../static/img/icon_edit.png" mode="" class="CartopEdit" @click="milageEdit"></image>
  79. </view>
  80. </view>
  81. </view>
  82. <!-- 车型里程 -->
  83. <!-- 保养 -->
  84. <view class="main" style="margin-top: 20rpx;">
  85. <view class="mainLeft">
  86. <scroll-view scroll-y="true" class="mainscrollView">
  87. <view class="mainLeftLine" v-for="(item,index) in mealData" :class="{lineLeftActive:leftIndex==index}"
  88. @click="leftClick(item,index)">
  89. <span>{{item.name}}</span>
  90. <view class="lineNum" v-show="item.num!=0">{{item.num}}</view>
  91. </view>
  92. </scroll-view>
  93. </view>
  94. <view class="mainRight">
  95. <scroll-view scroll-y="true" class="mainscrollView">
  96. <view v-show="!mealData[leftIndex].listPackage||mealData[leftIndex].listPackage.length==0">
  97. <view class="nodataBox">
  98. <image src="../../static/img/nodata.png" mode="widthFix" class="nodataImg"></image>
  99. <view class="noTxt">暂无数据</view>
  100. </view>
  101. </view>
  102. <view class="mainRightLine" v-for="(item,index) in mealData[leftIndex].listPackage">
  103. <view class="contTop">
  104. <view class="contTopLeft">
  105. <view class="listPackgeName"> {{item.name}} </view>
  106. <view class="listPackgeMs">10000公里(或6个月)/次 | 机油参考用量4L</view>
  107. </view>
  108. <view class="contTopRight" @click="listcheck(item)">
  109. <image src="../../static/img/login_icon_checked.png" mode="" class="imgPrivacy" v-show="item.planItem"></image>
  110. <image src="../../static/img/login_icon_uncheck.png" mode="" class="imgPrivacy" v-show="!item.planItem"></image>
  111. <!-- <view class="nock" v-show="!item.check"></view> -->
  112. </view>
  113. </view>
  114. <view class="contZk">
  115. <view class="contZkMain" v-show="item.planItem">
  116. <view v-for="(vf,findex) in item.listGoodsAll">
  117. <view class="goodsItemLIne" v-for="(v,i) in vf" v-if="i==0" @click="goGoods(v)">
  118. <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
  119. <image src="../../static/img/noimg.png" mode="" class="goodsImg sm" v-else></image>
  120. <view class="goodsCont">
  121. <view class="goodsContTop">
  122. <view class="goodsItemName">{{v.showName}}</view>
  123. <view class="replace" @click.stop="replace(vf,index,findex,i)" v-if="vf.length>1">更换</view>
  124. </view>
  125. <view class="goodsCOntBOttom">
  126. <view class="salePrice">¥{{v.salePrice}}</view>
  127. <view class="as">
  128. <view class="asa" @click.stop="reduce(v)">-</view>
  129. <view class="asNum">{{v.qty}}</view>
  130. <view class="asa" @click.stop="plus(v)">+</view>
  131. </view>
  132. </view>
  133. </view>
  134. </view>
  135. </view>
  136. <view class="goodsItemLIne" v-for="(v,i) in item.listItem">
  137. <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
  138. <image src="../../static/img/noimg.png" mode="" class="goodsImg sm" v-else></image>
  139. <view class="goodsCont">
  140. <view class="goodsContTop">
  141. <view class="goodsItemName">{{v.showName}}</view>
  142. </view>
  143. <view class="goodsCOntBOttom">
  144. <view class="salePrice">¥{{v.salePrice}}</view>
  145. <view class="itemNum">x1</view>
  146. </view>
  147. </view>
  148. </view>
  149. </view>
  150. </view>
  151. </view>
  152. </scroll-view>
  153. </view>
  154. </view>
  155. <!-- 保养 -->
  156. <!-- 底部 -->
  157. <view class="bottom">
  158. <view class="bottomLeft">
  159. <view class="caidan" @click="caidanClick">
  160. <image src="../../static/img/caidan.png" mode="" class="caidanImg"></image>
  161. <view class="total" v-show="total>0">{{total}}</view>
  162. </view>
  163. <view>
  164. <view class="heji"> <span class="heji1">合计</span> <span class="hejiNum">¥{{totalhj}}</span> </view>
  165. <view class="hejiMs">商品¥{{goodsTotal}}+工时费¥{{salePriceTotal}}</view>
  166. </view>
  167. </view>
  168. <view class="settlement" @click="settlement">去结算</view>
  169. </view>
  170. <view class="caidanTk" v-show="qingdanShow" @click="qingdanShow=false">
  171. <view class="tkCont" @click.stop="">
  172. <view class="caidanTkTop" >
  173. <view class="tkTopTitle">清单</view>
  174. <view class="topTopright">
  175. <view class="empty" @click.stop="empty">清空</view>
  176. <view class="close" @click="qingdanShow=false">X</view>
  177. </view>
  178. </view>
  179. <view class="tkMain">
  180. <scroll-view scroll-y="true" class="tkMainSv">
  181. <view class="qingdanLine" v-for="(item,index) in orderData">
  182. <view class="mainTitle">{{item.name}}</view>
  183. <view class="goodsItem" v-for="(v,i) in item.listGoodsAll">
  184. <view>
  185. <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
  186. <image src="../../static/img/noimg.png" mode="" class="goodsImg " v-else></image>
  187. </view>
  188. <view class="goodsItemRight" >
  189. <view class="goodsItemName">{{v.goodsName}}</view>
  190. <view class="goodsItemBottom">
  191. <view class="goodssalePrice">¥{{v.salePrice}}</view>
  192. <view class="goodsNum">x{{v.qty}}</view>
  193. </view>
  194. </view>
  195. </view>
  196. <view class="goodsItem" v-for="(v,i) in item.listItem">
  197. <view>
  198. <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
  199. <image src="../../static/img/noimg.png" mode="" class="goodsImg " v-else></image>
  200. </view>
  201. <view class="goodsItemRight" >
  202. <view class="goodsItemName">{{v.itemName}}</view>
  203. <view class="goodsItemBottom">
  204. <view class="goodssalePrice">¥{{v.salePrice}}</view>
  205. <view class="goodsNum">x{{v.qty}}</view>
  206. </view>
  207. </view>
  208. </view>
  209. </view>
  210. </scroll-view>
  211. </view>
  212. </view>
  213. </view>
  214. </view>
  215. </view>
  216. </template>
  217. <script>
  218. export default {
  219. data() {
  220. return {
  221. shopId:'',
  222. location:'',
  223. shopdata:'',
  224. shopImg:[],
  225. indicatorcolor:'rgba(255, 79, 0)',
  226. brandsList:[],
  227. maintainCarData:'',
  228. mealData:'',
  229. leftIndex:0,
  230. total:0,
  231. qingdanShow:false,
  232. totalhj:0,
  233. goodsTotal:0,
  234. salePriceTotal:0,
  235. orderData:[],
  236. replaceIndex1:'',
  237. replaceIndex2:'',
  238. }
  239. },
  240. onShow() {
  241. var maintainCarData2=uni.getStorageSync("maintainCarData");
  242. if(this.maintainCarData.id!=maintainCarData2.id){
  243. this.maintainCarData=maintainCarData2;
  244. if(this.maintainCarData.milage==0){
  245. this.maintainCarData.milage='';
  246. }
  247. this.getData();
  248. }
  249. var replaceData=uni.getStorageSync("replaceData");
  250. if(replaceData){
  251. replaceData.qty=1;
  252. console.log(replaceData)
  253. this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].unshift(replaceData)
  254. console.log(this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2])
  255. this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2]=this.unique(this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2])
  256. this.$forceUpdate()
  257. }
  258. },
  259. onLoad(opt) {
  260. this.$common.isUserId()
  261. this.shopId=opt.id;
  262. this.location=uni.getStorageSync("location");
  263. this.maintainCarData=uni.getStorageSync("maintainCarData");
  264. this.getData();
  265. this.addBMemberShopFootprint();
  266. this.getmainData()
  267. },
  268. methods: {
  269. goGoods(item){
  270. uni.navigateTo({
  271. url:'../goods/goodsDetail?goodsId='+item.mGoodsID+'&type=1'+'&typeIndex=2&maintain=1'
  272. })
  273. },
  274. unique(arr1) {
  275. const res = new Map();
  276. return arr1.filter((a) => !res.has(a.goodsID) && res.set(a.goodsID, 1))
  277. },
  278. goAppraise(shopId){
  279. console.log(shopId);
  280. uni.navigateTo({
  281. url:'shopAppraise?shopId=' + shopId
  282. })
  283. },
  284. getmainData(){
  285. uni.showLoading({ });
  286. this.$http('miniApp/packageMiniAppController/queryPackageList', {
  287. mileage:this.maintainCarData.milage,
  288. liyangId:this.maintainCarData.nLevelID,
  289. shopId:this.shopId
  290. },'GET').then(res => {
  291. uni.hideLoading();
  292. this.mealData=res.data;
  293. this.calculation();
  294. })
  295. },
  296. carEdit(){
  297. uni.navigateTo({
  298. url:'../car/cailist?type=2'
  299. })
  300. },
  301. milageEdit(){
  302. this.maintainCarData.milage=''
  303. },
  304. map(){
  305. console.log("打开地图")
  306. var that=this;
  307. if(!that.shopdata.lat||!that.shopdata.lng){
  308. uni.showToast({
  309. title: '该店铺未设置定位',
  310. icon:'none',
  311. duration: 3000
  312. });
  313. }else{
  314. uni.openLocation({
  315. latitude:Number(that.shopdata.lat) ,
  316. longitude:Number( that.shopdata.lng),
  317. name:that.shopdata.shopName,
  318. address:that.shopdata.address,
  319. success: function () {
  320. console.log('success');
  321. },
  322. fail(err) {
  323. console.log(err)
  324. }
  325. });
  326. }
  327. },
  328. call(){
  329. uni.makePhoneCall({
  330. phoneNumber: this.shopdata.mobilePhone
  331. });
  332. },
  333. getData(){
  334. uni.showLoading({ });
  335. this.shopImg=[];
  336. this.$http('miniAppShopInfoController/queryShopDetail', {
  337. id:this.shopId,
  338. lat:this.location.lat,
  339. lng:this.location.lng,
  340. },'GET').then(res => {
  341. uni.hideLoading();
  342. this.shopdata=res.data;
  343. if(this.shopdata.photoPath){
  344. this.shopImg.push(this.shopdata.photoPath)
  345. }
  346. this.shopImg=this.shopImg.concat(this.shopdata.imgList)
  347. console.log(this.shopImg)
  348. if(this.shopdata.brands){
  349. this.brandsList=this.shopdata.brands.split(',');
  350. }
  351. uni.setNavigationBarTitle({
  352. title: res.data.shopName
  353. })
  354. })
  355. },
  356. addBMemberShopFootprint(){
  357. this.$http('miniAppShopInfoController/addBMemberShopFootprint', {
  358. shopId:this.shopId
  359. },'POST').then(res => {
  360. })
  361. },
  362. Member(){
  363. uni.showLoading({ });
  364. this.$http('miniAppShopInfoController/addBMemberShop', {
  365. shopID:this.shopId,
  366. },'POST').then(res => {
  367. uni.hideLoading();
  368. if(res.code==0){
  369. uni.showToast({
  370. title: '关注成功',
  371. icon:'none',
  372. duration: 3000
  373. });
  374. this.shopdata.isAttention=1
  375. }else{
  376. uni.showToast({
  377. title: res.msg,
  378. icon:'none',
  379. duration: 3000
  380. });
  381. }
  382. })
  383. },
  384. deleteMember(){
  385. uni.showLoading({ });
  386. this.$http('miniAppMyBMemberCar/deleteBMemberShop', {
  387. shopId:this.shopId,
  388. },'POST').then(res => {
  389. uni.hideLoading();
  390. if(res.code==0){
  391. uni.showToast({
  392. title: '取消成功',
  393. icon:'none',
  394. duration: 3000
  395. });
  396. this.shopdata.isAttention=0
  397. }else{
  398. uni.showToast({
  399. title: res.msg,
  400. icon:'none',
  401. duration: 3000
  402. });
  403. }
  404. })
  405. },
  406. settlement(){
  407. console.log(this.orderData)
  408. var that=this;
  409. if(this.orderData.length>0){
  410. uni.setStorage({
  411. key: 'cfshopInfo',
  412. data: that.shopdata,
  413. success: function () {
  414. uni.removeStorageSync('couponData');
  415. uni.navigateTo({
  416. url:'../module/confirmOrder?orderData='+JSON.stringify(that.orderData)+'&currentMileage='+that.maintainCarData.milage+'&type=2'
  417. })
  418. }
  419. });
  420. }
  421. },
  422. replace(v,index,i,replaceIndex){
  423. console.log(v)
  424. v.forEach((item,vindex)=>{
  425. if(replaceIndex==vindex){
  426. item.showr=false
  427. }else{
  428. item.showr=true
  429. }
  430. })
  431. uni.removeStorageSync('replaceData');
  432. this.replaceIndex1=index;
  433. this.replaceIndex2=i;
  434. uni.setStorage({
  435. key: 'replaceDataList',
  436. data: v,
  437. success: function () {
  438. uni.navigateTo({
  439. url:'../module/replaceGoods'
  440. })
  441. }
  442. });
  443. },
  444. caidanClick(){
  445. this.qingdanShow=!this.qingdanShow
  446. },
  447. leftClick(item,index){
  448. this.leftIndex=index
  449. },
  450. listcheck(item){
  451. item.planItem=!item.planItem;
  452. //var
  453. this.calculation();
  454. if(item.planItem){
  455. /* this.orderData.push(item) */
  456. }
  457. },
  458. empty(){
  459. var that=this;
  460. uni.showModal({
  461. title: '提示',
  462. content: '确定要清空清单吗',
  463. success: function (res) {
  464. if (res.confirm) {
  465. that.orderData=[];
  466. that.mealData.forEach(item=>{
  467. item.num=0;
  468. if(item.listPackage){
  469. item.listPackage.forEach(v=>{
  470. v.planItem=false
  471. })
  472. }
  473. })
  474. that.calculation();
  475. that.qingdanShow=false;
  476. }
  477. }
  478. });
  479. },
  480. calculation(){
  481. this.total=0;
  482. this.totalhj=0;
  483. this.goodsTotal=0;
  484. this.salePriceTotal=0;
  485. this.orderData=[]
  486. this.mealData.forEach(v=>{
  487. v.num=0;
  488. if(v.listPackage){
  489. v.listPackage.forEach(i=>{
  490. if(i.planItem){
  491. var obj={
  492. listGoodsAll:[],
  493. listItem:'',
  494. }
  495. if(i.listGoodsAll.length>0){
  496. i.listGoodsAll.forEach((goods,goodsIndex)=>{
  497. /* goods.forEach(sp=>{
  498. this.goodsTotal=Number(this.goodsTotal)
  499. this.goodsTotal+=sp.salePrice*sp.qty
  500. this.goodsTotal=this.goodsTotal.toFixed(2)
  501. })
  502. */
  503. this.goodsTotal=Number(this.goodsTotal)
  504. this.goodsTotal+=goods[0].salePrice*goods[0].qty
  505. this.goodsTotal=this.goodsTotal.toFixed(2)
  506. obj.listGoodsAll.push(goods[0])
  507. })
  508. }
  509. if(i.listItem.length>0){
  510. obj.listItem=i.listItem
  511. }
  512. this.orderData.push(obj)
  513. v.num++;
  514. this.total++;
  515. i.listItem.forEach(xm=>{
  516. xm.qty=1;
  517. this.salePriceTotal=Number(this.salePriceTotal)
  518. this.salePriceTotal+=xm.salePrice
  519. this.salePriceTotal=this.salePriceTotal.toFixed(2)
  520. })
  521. //this.totalhj
  522. }
  523. })
  524. }
  525. //if(v.listPackage)
  526. })
  527. this.totalhj=Number(this.goodsTotal)+Number(this.salePriceTotal)
  528. this.totalhj=this.totalhj.toFixed(2)
  529. console.log(this.orderData)
  530. },
  531. reduce(v){
  532. if(v.qty>1){
  533. v.qty--;
  534. this.calculation()
  535. }
  536. },
  537. plus(v){
  538. v.qty++;
  539. this.calculation()
  540. },
  541. }
  542. }
  543. </script>
  544. <style scoped>
  545. .cont{
  546. min-height: 100vh;
  547. background:#F4F5F7 ;
  548. }
  549. /deep/.uni-swiper-wrapper .uni-swiper-dots {
  550. bottom: 60rpx;
  551. }
  552. .swiper-item{
  553. width: 100vw;
  554. height: 500rpx;
  555. }
  556. .swiper{
  557. width: 100vw;
  558. height: 500rpx;
  559. }
  560. .swpImg{
  561. width: 100vw;
  562. height: 500rpx;
  563. }
  564. .top{
  565. position: relative;
  566. }
  567. .Member{
  568. width: 140rpx;
  569. height: 42rpx;
  570. line-height: 42rpx;
  571. text-align: center;
  572. color: #FFFFFF;
  573. font-size: 24rpx;
  574. background: rgba(0,0,0,0.4);
  575. border-radius: 21rpx;
  576. position: absolute;
  577. bottom: 60rpx;
  578. right: 32rpx;
  579. }
  580. .shopMain{
  581. width: 702rpx;
  582. height: 368rpx;
  583. background: #FFFFFF;
  584. border-radius: 10rpx;
  585. margin-left: 24rpx;
  586. margin-top: -50rpx;
  587. z-index: 111;
  588. position: relative;
  589. }
  590. .shopName{
  591. padding-top: 30rpx;
  592. padding-left: 20rpx;
  593. color: #333333;
  594. font-size: 32rpx;
  595. font-weight: 600;
  596. }
  597. .pingfenBox{
  598. width: 559rpx;
  599. height: 62rpx;
  600. background: rgba(255, 79, 0, 0.08);
  601. border-radius: 0px 15rpx 14rpx 0px;
  602. margin-top: 10rpx;
  603. }
  604. .pingfenImg{
  605. width: 14rpx;
  606. height: 26rpx;
  607. margin-right: 30rpx;
  608. margin-top: 20rpx;
  609. }
  610. .fenshuNum{
  611. font-size: 38rpx;
  612. font-weight: 600;
  613. color: #FF4F00;
  614. }
  615. .pingfenBox{
  616. display: flex;
  617. line-height: 62rpx;
  618. justify-content: space-between;
  619. }
  620. .fenshuTxt{
  621. font-size: 26rpx;
  622. font-weight: 600;
  623. color: #FF4F00;
  624. padding-left: 5rpx;
  625. padding-top: 2rpx;
  626. }
  627. .fenshuTxt2{
  628. font-size: 26rpx;
  629. color: #FF4F00;
  630. padding-left: 5rpx;
  631. }
  632. .cishu{
  633. font-size: 24rpx;
  634. color: #666666;
  635. }
  636. .shuxian{
  637. width: 2px;
  638. height: 30rpx;
  639. background:#E9E8E8;
  640. margin-top: 16rpx;
  641. }
  642. .fenshuBox{
  643. padding-left: 20rpx;
  644. }
  645. .business{
  646. display: flex;font-size: 26rpx;
  647. padding-left: 20rpx;padding-top: 20rpx;
  648. color: #999999;
  649. }
  650. .businessTitme{
  651. color: #666666;
  652. }
  653. .brandsBox{
  654. display: flex;
  655. padding: 20rpx;
  656. font-size: 24rpx;
  657. flex-wrap: wrap;
  658. }
  659. .brandsLine{
  660. height: 34rpx;
  661. background: linear-gradient(138deg, #FF630F 0%, #FF450F 100%);
  662. border-radius: 4rpx;
  663. line-height: 34rpx;
  664. padding: 0 8rpx;
  665. color: #FFFFFF;
  666. margin-right: 14rpx;
  667. margin-bottom: 15rpx;
  668. }
  669. .brandsLine2{
  670. border-radius: 4rpx;
  671. line-height: 30rpx;
  672. padding: 0 8rpx;
  673. color: #FF5800;
  674. height: 30rpx;
  675. border:1px solid #FF5800;
  676. margin-right: 14rpx;
  677. margin-bottom: 15rpx;
  678. }
  679. .mapBox{
  680. width: 702rpx;
  681. height: 150rpx;
  682. background: url('http://phone.66km.cn:8088/thFiles/184C909A-0A58-4E60-92F1-4AF80BF071F1.png') no-repeat;
  683. background-size: 100% 100;
  684. display: flex;
  685. margin-left: 24rpx;
  686. margin-top: 20rpx;
  687. }
  688. .mapdwImg{
  689. width: 22rpx;
  690. height: 30rpx;
  691. }
  692. .dingwBox{
  693. display: flex;
  694. }
  695. .mapLeft{
  696. padding-top: 30rpx;
  697. padding-left: 20rpx;
  698. font-size: 24rpx;
  699. width: 450rpx;
  700. }
  701. .distance{
  702. padding-left: 16rpx;
  703. color: #3C3C3C;
  704. font-weight: 600;
  705. }
  706. .mapaddress{
  707. color: #999999;padding-top: 15rpx;
  708. }
  709. .shopsx{
  710. width: 1px;
  711. height: 61rpx;
  712. background: #EEEEEE;
  713. margin-top: 30rpx;
  714. margin-left: 28rpx;
  715. }
  716. .shopRihgtTxt{
  717. color: #999999;font-size: 22rpx;
  718. }
  719. .shopRightBox{
  720. padding-top: 30rpx;
  721. padding-left: 28rpx;
  722. }
  723. .shopRightImg{
  724. width: 52rpx;height: 38rpx;
  725. }
  726. .Cartop{
  727. background: #FFFFFF;
  728. display: flex;
  729. justify-content: space-between;
  730. padding: 30rpx 25rpx;
  731. font-size: 28rpx;
  732. width: 654rpx;
  733. margin-top: 20rpx;
  734. margin-left: 24rpx;
  735. }
  736. .CarbrandLogo{
  737. width: 42rpx;
  738. height: 42rpx;
  739. }
  740. .CartopLeft{
  741. display: flex;
  742. width: 500rpx;
  743. }
  744. .carName{
  745. padding-left: 10rpx;
  746. color: #3C3C3C;
  747. padding-top: 2rpx;
  748. }
  749. .CartopEdit{
  750. width: 30rpx;
  751. height: 30rpx;
  752. padding-top: 3px;
  753. padding-left: 12rpx;
  754. padding-right: 5px;
  755. padding-bottom: 5px;
  756. }
  757. .CartopRight{
  758. display: flex;
  759. }
  760. .CartopInput{
  761. font-size: 28rpx;
  762. text-align: right;
  763. padding-top: 3rpx;
  764. }
  765. .caidanTk{
  766. height: calc(100vh - 120rpx);
  767. width: 100vw;
  768. background: rgba(0,0,0,0.6);
  769. position:fixed;
  770. left: 0;
  771. top: 0;
  772. z-index: 111;
  773. }
  774. .tkCont{
  775. height: 60vh;
  776. margin-top: calc(40vh - 120rpx);
  777. }
  778. .caidanTkTop{
  779. width: 750rpx;
  780. height: 90rpx;
  781. background: #FFFFFF;
  782. border-radius: 24rpx 24rpx 0px 0px;
  783. }
  784. .caidanTkTop{
  785. display: flex;justify-content: space-between;
  786. }
  787. .topTopright{
  788. display: flex;
  789. padding-top: 29rpx;
  790. }
  791. .tkTopTitle{
  792. line-height: 90rpx;
  793. font-size: 30rpx;
  794. font-weight: 600;
  795. color: #3C3C3C;
  796. padding-left: 24rpx;
  797. }
  798. .empty{
  799. width: 86rpx;
  800. height: 42rpx;
  801. background: #EEEEEE;
  802. border-radius: 21rpx;
  803. text-align: center;
  804. color: #666666;
  805. font-size: 24rpx;
  806. line-height: 42rpx;
  807. }
  808. .close{
  809. color: #999999;
  810. font-size: 30rpx;
  811. padding-right: 30rpx;
  812. padding-left: 24rpx;
  813. }
  814. .tkMain{
  815. background: #F0F0F0;
  816. height: calc(60vh - 90rpx);
  817. }
  818. .tkMainSv{
  819. padding: 0 24rpx;
  820. width: 702rpx;
  821. height: calc(60vh - 90rpx);
  822. }
  823. .goodsItemRight{
  824. width: 520rpx;
  825. padding-left: 20rpx;
  826. display: flex;
  827. flex-direction:column;
  828. justify-content: space-between;
  829. }
  830. .goodsItemBottom{
  831. display: flex;
  832. justify-content: space-between;
  833. }
  834. .goodssalePrice{
  835. font-size: 32rpx;font-weight: 500;color: #FF4F00;
  836. }
  837. .goodsNum{
  838. font-size: 24rpx;font-weight: 400;color: #999999;
  839. }
  840. .top{
  841. /* background: #FF4F00; */
  842. display: flex;
  843. justify-content: space-between;
  844. /* padding: 30rpx 25rpx; */
  845. font-size: 28rpx;
  846. color: #FFFFFF;
  847. }
  848. .goodsItem{
  849. display: flex;
  850. padding: 15rpx 0;
  851. }
  852. .qingdanLine{
  853. background: #FFFFFF;
  854. margin-top: 20rpx;
  855. padding: 24rpx 20rpx;
  856. border-radius: 10rpx;
  857. }
  858. .brandLogo{
  859. width: 42rpx;
  860. height: 42rpx;
  861. }
  862. .topLeft{
  863. display: flex;
  864. }
  865. .carName{
  866. padding-left: 10rpx;
  867. width: 280rpx;
  868. }
  869. .topEdit{
  870. width: 22rpx;
  871. height: 22rpx;
  872. padding-top: 5px;
  873. padding-left: 10rpx;
  874. }
  875. .topRight{
  876. display: flex;
  877. }
  878. .topInput{
  879. font-size: 28rpx;
  880. color: #FFFFFF;
  881. text-align: right;
  882. padding-top: 3rpx;
  883. }
  884. .maintainrecommend{
  885. padding: 30rpx 24rpx;
  886. display: flex;
  887. justify-content: space-between;
  888. border-bottom: 2rpx solid #EEEEEE;
  889. }
  890. .recommendTxt{
  891. color: #3C3C3C;
  892. font-size: 30rpx;
  893. font-weight: 600;
  894. }
  895. .manual{
  896. width: 119rpx;
  897. height: 40rpx;
  898. border-radius: 20rpx;
  899. border: 2rpx solid #F19D01;
  900. text-align: center;
  901. line-height: 40rpx;
  902. font-size: 22rpx;
  903. color: #F19D01;
  904. }
  905. .bottom{
  906. position: fixed;
  907. left: 0;
  908. bottom: 0;
  909. width: 100vw;
  910. height: 120rpx;
  911. background: #FFFFFF;
  912. box-shadow: 0px -2px 20px 0px rgba(153, 153, 153, 0.2);
  913. }
  914. .main{
  915. display: flex;
  916. height: calc(100vh - 410rpx);
  917. }
  918. .mainscrollView{
  919. height: calc(100vh - 410rpx);
  920. }
  921. /* #ifdef MP-WEIXIN */
  922. .main{
  923. display: flex;
  924. height: calc(100vh - 310rpx);
  925. }
  926. .mainscrollView{
  927. height: calc(100vh - 310rpx);
  928. }
  929. /* #endif */
  930. .mainLeft{
  931. width: 146rpx;
  932. background: #F5F5F5;
  933. }
  934. .mainRight{
  935. width: 604rpx;background: #FFFFFF;
  936. }
  937. .mainLeftLine{
  938. color: #3C3C3C;
  939. padding: 30rpx 20rpx;
  940. font-size: 24rpx;
  941. text-align: center;
  942. position: relative;
  943. }
  944. .lineNum{
  945. position: absolute;
  946. background: #FF270A;
  947. width: 40rpx;
  948. height: 26rpx;
  949. text-align: center;
  950. line-height: 26rpx;
  951. font-size: 20rpx;
  952. color: #FFFFFF;
  953. border-radius: 13rpx;
  954. top: 10rpx;
  955. right: 10rpx;
  956. }
  957. .lineLeftActive{
  958. background: #FFFFFF;
  959. }
  960. .nock{
  961. width: 22rpx;
  962. height: 22rpx;
  963. border-radius: 50%;
  964. border:2px solid #AEAEAE;
  965. margin-top: 2rpx;
  966. margin-right: 10rpx;
  967. }
  968. .imgPrivacy{
  969. width: 28rpx;
  970. height: 28rpx;
  971. margin-top: 2rpx;
  972. margin-right: 10rpx;
  973. }
  974. .mainRightLine{
  975. padding: 20rpx 20rpx 0 20rpx;
  976. background: #FFFFFF;
  977. }
  978. .contTop{
  979. display: flex;
  980. justify-content: space-between;
  981. }
  982. .listPackgeName{
  983. font-size: 26rpx;
  984. font-family: PingFangSC-Regular, PingFang SC;
  985. font-weight: 600;
  986. color: #3C3C3C;
  987. }
  988. .listPackgeMs{
  989. font-size: 22rpx;
  990. font-family: PingFangSC-Regular, PingFang SC;
  991. font-weight: 400;
  992. color: #999999;
  993. padding-top: 5rpx;
  994. }
  995. .contZk{
  996. border-bottom: 1px solid #EEEEEE;
  997. padding-bottom: 20rpx;
  998. }
  999. .goodsImg{
  1000. width: 120rpx;
  1001. height: 120rpx;
  1002. border-radius: 11rpx;
  1003. }
  1004. .goodsItemLIne{
  1005. display: flex;
  1006. padding-top: 20rpx;
  1007. padding-bottom: 20rpx;
  1008. }
  1009. .goodsCont{
  1010. display: flex;
  1011. flex-direction:column;
  1012. justify-content: space-between;
  1013. padding-left: 20rpx;
  1014. }
  1015. .goodsContTop{
  1016. display: flex;
  1017. justify-content: space-between;
  1018. width: 400rpx;
  1019. }
  1020. .goodsItemName{
  1021. font-size: 26rpx;
  1022. font-weight: 400;
  1023. color: #3C3C3C;
  1024. width: 300rpx;
  1025. }
  1026. .salePrice{
  1027. font-size: 32rpx;
  1028. font-weight: 500;
  1029. color: #FF4F00;
  1030. }
  1031. .replace{
  1032. width: 75rpx;
  1033. height: 37rpx;
  1034. border-radius: 19rpx;
  1035. border: 2rpx solid #B9B9B9;
  1036. text-align: center;
  1037. line-height: 35rpx;
  1038. color: #707070;
  1039. font-size: 22rpx;
  1040. }
  1041. .contZkMain{
  1042. padding-top: 20rpx;
  1043. }
  1044. .asa{
  1045. width: 44rpx;
  1046. height: 44rpx;
  1047. line-height: 44rpx;
  1048. text-align: center;
  1049. background: #F4F5F7;
  1050. font-size: 30rpx;
  1051. }
  1052. .goodsCOntBOttom{
  1053. display: flex;
  1054. justify-content: space-between;
  1055. }
  1056. .as{
  1057. display: flex;
  1058. }
  1059. .goodsPrice{
  1060. display: flex;justify-content: space-between;
  1061. padding-top: 10rpx;
  1062. }
  1063. .goodsPriceNum{
  1064. color: #F8F8F8;
  1065. font-size: 28rpx;
  1066. }
  1067. .asNum{
  1068. font-size: 24rpx;color: #333333;
  1069. padding: 0 18rpx;
  1070. line-height: 44rpx;
  1071. background: #F4F5F7;
  1072. margin-left: 1px;
  1073. margin-right: 1px;
  1074. }
  1075. .itemNum{
  1076. font-size: 24rpx;
  1077. font-weight: 400;
  1078. color: #999999;
  1079. }
  1080. .bottom{
  1081. display: flex;
  1082. justify-content: space-between;
  1083. }
  1084. .caidanImg{
  1085. width: 50rpx;
  1086. height: 50rpx;
  1087. }
  1088. .bottomLeft{
  1089. display: flex;
  1090. }
  1091. .caidan{
  1092. padding-left: 33rpx;
  1093. padding-top: 35rpx;
  1094. padding-right: 33rpx;
  1095. position: relative;
  1096. }
  1097. .total{
  1098. position: absolute;
  1099. width: 40rpx;
  1100. height: 26rpx;
  1101. background: #FF270A;
  1102. line-height: 26rpx;
  1103. text-align: center;
  1104. color: #FFFFFF;
  1105. font-size: 20rpx;
  1106. top: 25rpx;
  1107. right: 15rpx;
  1108. border-radius: 13rpx;
  1109. }
  1110. .heji1{
  1111. font-size: 24rpx;
  1112. font-weight: 500;
  1113. color: #666666;
  1114. }
  1115. .hejiNum{
  1116. font-size: 32rpx;
  1117. font-family: PingFangSC-Medium, PingFang SC;
  1118. font-weight: 500;
  1119. color: #FF4F00;
  1120. }
  1121. .hejiMs{
  1122. font-size: 24rpx;
  1123. padding-top: 5rpx;
  1124. color: #999999;
  1125. }
  1126. .heji{
  1127. padding-top: 23rpx;
  1128. }
  1129. .settlement{
  1130. width: 203rpx;
  1131. height: 74rpx;
  1132. background: #FF4F00;
  1133. border-radius: 37rpx;
  1134. text-align: center;
  1135. line-height: 74rpx;
  1136. font-size: 30rpx;
  1137. font-family: PingFangSC-Medium, PingFang SC;
  1138. font-weight: 500;
  1139. color: #FEFFFE;
  1140. margin-top: 23rpx;
  1141. margin-right: 32rpx;
  1142. }
  1143. .nodataImg{
  1144. width: 400rpx;
  1145. padding-top: 100rpx;
  1146. }
  1147. .noTxt{
  1148. font-size: 36rpx;
  1149. color: #999999;
  1150. padding-top: 50rpx;
  1151. }
  1152. .nodataBox{
  1153. text-align: center;
  1154. }
  1155. </style>