paint.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872
  1. <template>
  2. <view class="box">
  3. <view class="top" @click="goCarlist">
  4. <view class="left">
  5. <image :src="carInfo.brandLogo" mode="widthFix" class="brandLogo" v-if="carInfo.brandLogo">
  6. <img src="../../static/timg/nocar.png" alt="" class="brandLogo" v-else>
  7. <view class="car" v-if="carInfo.carModel">{{carInfo.carModel}}</view>
  8. <view class="car" v-else>暂无</view>
  9. </image>
  10. </view>
  11. <image src="../../static/img/big_rightArrow.png" mode=""
  12. style="width: 30rpx;height: 30rpx;"></image>
  13. </view>
  14. <view class="main" v-if="itemList">
  15. <view class="mainLeft">
  16. <view class="mainLeftLine" v-for="(item,index) in itemList" :class="{lineLeftActive:leftIndex==index}"
  17. @click="leftClick(item,index)">
  18. <span class="leftTitle">{{item.name}}</span>
  19. <view class="lineNum" v-show="item.num!=0">{{item.num}}</view>
  20. </view>
  21. </view>
  22. <view class="mainRight">
  23. <view class="rightTop">{{itemList[leftIndex].name}}</view>
  24. <view class="mainRightLine" v-for="(item2,index) in itemList[leftIndex].list" :key="index">
  25. <view class="itemTop" @click="changeState(item2)">
  26. <view class="itemName">{{item2.ItemName}}</view>
  27. <span class="rightState" v-if="item2.open==false">展开<image
  28. src="../../static/img/icon_arrow_down.png" mode=""
  29. style="width: 20rpx;height: 11rpx; padding: 5rpx 8rpx;"></image>
  30. </span>
  31. <span class="rightState" v-else>收起<image
  32. src="../../static/img/icon_arrow_up.png" mode=""
  33. style="width: 20rpx;height: 11rpx; padding: 5rpx 8rpx;"></image>
  34. </span>
  35. </view>
  36. <!-- -->
  37. <view class="itemBox" v-if="item2.open==true">
  38. <view class="type" :class="{orangeLine:item2.type==1}" @click="select(item2)">
  39. <view class="typeName" :class="{orangeColor:item2.type==1}">喷漆</view>
  40. <view class="priceBox">
  41. <view class="money"><span class="renminbi">¥</span>{{item2.PSalePrice?item2.PSalePrice:'0'}}
  42. </view>
  43. <view class="old" v-if="item2.PShowScribingType==1"><span>¥</span>{{item2.PScribingPrice?item2.PScribingPrice:'0'}}</view>
  44. </view>
  45. </view>
  46. <view class="type marginLeft" :class="{orangeLine:item2.type==2}" @click="select2(item2)">
  47. <view class="typeName" :class="{orangeColor:item2.type==2}">钣金喷漆</view>
  48. <view class="priceBox">
  49. <view class="money"><span
  50. class="renminbi">¥</span>{{item2.BPSalePrice?item2.BPSalePrice:'0'}}</view>
  51. <view class="old" v-if="item2.BPShowScribingType==1"><span>¥</span>{{item2.BPScribingPrice?item2.BPScribingPrice:'0'}}</view>
  52. </view>
  53. </view>
  54. </view>
  55. </view>
  56. </view>
  57. </view>
  58. <!-- 底部 -->
  59. <view class="bottom">
  60. <view class="bottomLeft">
  61. <view class="caidan" @click="caidanClick">
  62. <image src="../../static/timg/icon_qingdan@2x.png" mode="" class="caidanImg"></image>
  63. <view class="total" v-if="selectItemList.length>0">{{selectItemList.length}}</view>
  64. </view>
  65. <view>
  66. <view class="heji"> <span class="heji1">合计</span> <span class="hejiNum">¥{{sumMoney}}</span> </view>
  67. <view class="hejiMs">合计数量:{{selectItemList.length}}</view>
  68. </view>
  69. </view>
  70. <view class="settlement" :style="{background:'#'+themeColor}" @click="sure">确定</view>
  71. </view>
  72. <view class="caidanTk" v-show="qingdanShow" @click="qingdanShow=false">
  73. <view class="tkCont">
  74. <view class="caidanTkTop">
  75. <view class="tkTopTitle">已选项目</view>
  76. <view class="topTopright">
  77. <view class="empty" @click.stop="empty">清空</view>
  78. </view>
  79. </view>
  80. <view class="tkMain" @click.stop>
  81. <view class="selectItem" v-for="(item,index) in selectItemList" :key="index">
  82. <view class="name">{{item.name}}</view>
  83. <view class="priceRight">
  84. <view class="price">¥ {{item.money?item.money:0}}</view>
  85. <image @click="deleteItem(item,index)" src="../../static/img/icon_delete.png" mode=""
  86. style="width: 26rpx;height: 26rpx;margin-left: 10rpx;"></image>
  87. </view>
  88. </view>
  89. </view>
  90. </view>
  91. </view>
  92. </view>
  93. </template>
  94. <script>
  95. export default {
  96. data() {
  97. return {
  98. carInfo: '',
  99. itemList: [],
  100. leftIndex: 0,
  101. selectItemList: [],
  102. sumMoney: 0,
  103. qingdanShow: false,
  104. themeColor:'',
  105. }
  106. },
  107. onShow() {
  108. this.carInfo = this.$store.state.carInfo
  109. console.log("车=", this.carInfo);
  110. },
  111. onLoad() {
  112. this.themeColor = uni.getStorageSync("themeColor");
  113. this.getData();
  114. },
  115. methods: {
  116. sure(){
  117. if (this.selectItemList.length == 0) {
  118. uni.showToast({
  119. title: '请选择项目',
  120. icon: 'none',
  121. duration: 3000
  122. });
  123. return false;
  124. }
  125. uni.navigateTo({
  126. url:'paintSure?itemList='+JSON.stringify(this.selectItemList)
  127. })
  128. this.$store.commit('mutationsckshopInfo', "")
  129. },
  130. goCarlist() {
  131. uni.navigateTo({
  132. url: '../user/addCar/cailist'
  133. })
  134. },
  135. empty() {
  136. var that = this;
  137. uni.showModal({
  138. title: '提示',
  139. content: '确定要清空已选项目吗',
  140. success: function(res) {
  141. if (res.confirm) {
  142. that.selectItemList = [];
  143. that.sumMoney = 0;
  144. that.qingdanShow = false;
  145. that.getData();
  146. }
  147. }
  148. });
  149. },
  150. deleteItem(item, index) {
  151. // 更新数据
  152. for (var i = 0; i < this.itemList.length; i++) {
  153. let dic = this.itemList[i];
  154. dic.list.forEach((item2, index) => {
  155. if (item.id == item2.ID) {
  156. item2.type = 0;
  157. dic.num -= 1;
  158. }
  159. })
  160. }
  161. this.selectItemList.splice(index, 1);
  162. },
  163. caidanClick() {
  164. this.qingdanShow = !this.qingdanShow
  165. },
  166. select(item) {
  167. if (item.type != 1) {
  168. item.type = 1;
  169. } else {
  170. item.type = 0;
  171. }
  172. console.log('type==', item.type);
  173. this.sumNum();
  174. },
  175. select2(item) {
  176. if (item.type != 2) {
  177. item.type = 2;
  178. } else {
  179. item.type = 0;
  180. }
  181. console.log('type2==', item.type);
  182. this.sumNum();
  183. },
  184. sumNum() {
  185. let item = this.itemList[this.leftIndex];
  186. var count = 0;
  187. item.list.forEach((v, index) => {
  188. if (v.type != 0) {
  189. count += 1;
  190. }
  191. })
  192. item.num = count;
  193. //组合选中的
  194. if (this.selectItemList.length) {
  195. this.selectItemList = [];
  196. }
  197. this.sumMoney = 0;
  198. for (var i = 0; i < this.itemList.length; i++) {
  199. this.itemList[i].list.forEach((item, index) => {
  200. if (item.type == 1) {
  201. let dic = {
  202. "id": item.ID,
  203. "name": item.ItemName + "(喷漆)",
  204. "money": item.PSalePrice
  205. }
  206. this.selectItemList.push(dic);
  207. this.sumMoney += item.PSalePrice;
  208. } else if (item.type == 2) {
  209. let dic = {
  210. "id": item.ID,
  211. "name": item.ItemName + "(钣金喷漆)",
  212. "money": item.BPSalePrice
  213. }
  214. this.selectItemList.push(dic);
  215. this.sumMoney += item.BPSalePrice;
  216. }
  217. })
  218. }
  219. this.sumMoney = this.sumMoney.toFixed(2);
  220. // console.log('selectItemList==', this.selectItemList);
  221. },
  222. changeState(item) {
  223. item.open = !item.open
  224. },
  225. leftClick(item, index) {
  226. this.leftIndex = index
  227. },
  228. getData() {
  229. uni.showLoading({
  230. title: '加载中'
  231. });
  232. this.$http('openSheetMetalSprayPaint/queryPackageList', {
  233. // id: this.id,
  234. }, 'GET').then(res => {
  235. uni.hideLoading();
  236. let List = res.data;
  237. List.forEach((item, index) => {
  238. for (const key in item) {
  239. item['num'] = 0
  240. }
  241. })
  242. for (var i = 0; i < List.length; i++) {
  243. List[i].list.forEach((item, index) => {
  244. for (const key in item) {
  245. item['open'] = false
  246. }
  247. })
  248. }
  249. this.itemList = List;
  250. // console.log('列表=', this.itemList);
  251. })
  252. },
  253. }
  254. }
  255. </script>
  256. <style>
  257. .box {
  258. min-height: 100vh;
  259. background-color: #f4f5f7;
  260. }
  261. .top {
  262. background-color: #FFFFFF;
  263. padding: 30rpx 20rpx;
  264. display: flex;
  265. justify-content: space-between;
  266. align-items: center;
  267. border-bottom: 1rpx solid #EEEEEE;
  268. }
  269. .left {
  270. display: flex;
  271. align-items: center;
  272. }
  273. .car {
  274. font-size: 28rpx;
  275. width: 600rpx;
  276. color: #333333;
  277. line-height: 40rpx;
  278. margin-left: 10rpx;
  279. /* 隐藏文字显示 ...不换行 */
  280. overflow: hidden;
  281. text-overflow: ellipsis;
  282. white-space: nowrap;
  283. }
  284. .brandLogo {
  285. width: 42rpx;
  286. height: 42rpx;
  287. }
  288. .main {
  289. display: flex;
  290. height: calc(100vh - 310rpx);
  291. }
  292. .mainLeft {
  293. width: 154rpx;
  294. background: #F4F5F7;
  295. }
  296. .leftTitle {
  297. color: #333333;
  298. font-size: 26rpx;
  299. }
  300. .lineNum {
  301. position: absolute;
  302. background: #FF270A;
  303. width: 40rpx;
  304. height: 26rpx;
  305. text-align: center;
  306. line-height: 26rpx;
  307. font-size: 20rpx;
  308. color: #FFFFFF;
  309. border-radius: 13rpx;
  310. top: 10rpx;
  311. right: 10rpx;
  312. }
  313. .lineLeftActive {
  314. background: #FFFFFF;
  315. font-weight: bold;
  316. }
  317. .mainRight {
  318. width: 596rpx;
  319. overflow-y: scroll;
  320. background-color: #FFFFFF;
  321. }
  322. .rightTop {
  323. padding: 13rpx 24rpx;
  324. background-color: #F9F9F9;
  325. font-size: 26rpx;
  326. color: #959595;
  327. line-height: 37rpx;
  328. }
  329. .mainRightLine {
  330. padding: 30rpx 0;
  331. margin: 0 24rpx;
  332. background-color: #FFFFFF;
  333. border-bottom: 1rpx solid #EEEEEE;
  334. }
  335. .itemTop {
  336. display: flex;
  337. justify-content: space-between;
  338. align-items: center;
  339. }
  340. .itemName {
  341. font-size: 28rpx;
  342. color: #333333;
  343. }
  344. .rightState {
  345. font-size: 24rpx;
  346. color: #666666;
  347. }
  348. .itemBox {
  349. display: flex;
  350. justify-content: space-around;
  351. /* border-bottom: 1rpx solid #EEEEEE; */
  352. padding-top: 30rpx;
  353. }
  354. .type {
  355. border-radius: 10rpx;
  356. border: 2rpx solid #CCCCCC;
  357. width: 50%;
  358. text-align: center;
  359. }
  360. .marginLeft {
  361. margin-left: 20rpx;
  362. }
  363. .typeName {
  364. height: 57rpx;
  365. color: #666666;
  366. font-size: 26rpx;
  367. line-height: 57rpx;
  368. border-bottom: 2rpx solid #EEEEEE;
  369. }
  370. .orangeLine {
  371. border: 2rpx solid #FF0000;
  372. }
  373. .orangeColor {
  374. color: #FF0000;
  375. }
  376. .renminbi {
  377. font-size: 22rpx;
  378. height: 76rpx;
  379. line-height: 76rpx;
  380. }
  381. .priceBox{
  382. display: flex;
  383. justify-content: center;
  384. }
  385. .money {
  386. height: 76rpx;
  387. line-height: 76rpx;
  388. font-size: 32rpx;
  389. color: #FF0000;
  390. }
  391. .old {
  392. color: #999999;
  393. font-size: 24rpx;
  394. height: 33rpx;
  395. line-height: 33rpx;
  396. text-decoration: line-through;
  397. padding-top: 24rpx;
  398. }
  399. .main {
  400. display: flex;
  401. height: calc(100vh - 410rpx);
  402. }
  403. .mainscrollView {
  404. height: calc(100vh - 410rpx);
  405. padding-bottom: constant(safe-area-inset-bottom);
  406. padding-bottom: env(safe-area-inset-bottom);
  407. box-sizing: content-box;
  408. margin-bottom: 120rpx;
  409. }
  410. /* #ifdef MP-WEIXIN */
  411. .main {
  412. display: flex;
  413. height: calc(100vh - 310rpx);
  414. }
  415. .mainscrollView {
  416. height: calc(100vh - 310rpx);
  417. }
  418. /* #endif */
  419. .mainLeft {
  420. width: 146rpx;
  421. background: #F5F5F5;
  422. }
  423. .mainRight {
  424. width: 604rpx;
  425. }
  426. .mainLeftLine {
  427. color: #3C3C3C;
  428. padding: 30rpx 20rpx;
  429. font-size: 26rpx;
  430. text-align: left;
  431. position: relative;
  432. }
  433. .lineNum {
  434. position: absolute;
  435. background: #FF270A;
  436. width: 40rpx;
  437. height: 26rpx;
  438. text-align: center;
  439. line-height: 26rpx;
  440. font-size: 20rpx;
  441. color: #FFFFFF;
  442. border-radius: 13rpx;
  443. top: 10rpx;
  444. right: 10rpx;
  445. }
  446. .lineLeftActive {
  447. background: #FFFFFF;
  448. }
  449. .nock {
  450. width: 22rpx;
  451. height: 22rpx;
  452. border-radius: 50%;
  453. border: 2px solid #AEAEAE;
  454. margin-top: 2rpx;
  455. margin-right: 10rpx;
  456. }
  457. .imgPrivacy {
  458. width: 36rpx;
  459. height: 36rpx;
  460. /* margin-top: 2rpx; */
  461. /* margin-right: 10rpx; */
  462. }
  463. .contTopRight {
  464. display: flex;
  465. align-items: center;
  466. width: 38rpx;
  467. height: 36rpx;
  468. margin-right: 10rpx;
  469. }
  470. .contTop {
  471. display: flex;
  472. justify-content: space-between;
  473. }
  474. .listPackgeName {
  475. font-size: 26rpx;
  476. font-family: PingFangSC-Regular, PingFang SC;
  477. font-weight: 600;
  478. color: #3C3C3C;
  479. }
  480. .listPackgeMs {
  481. font-size: 22rpx;
  482. font-family: PingFangSC-Regular, PingFang SC;
  483. font-weight: 400;
  484. color: #999999;
  485. padding-top: 5rpx;
  486. line-height: 30rpx;
  487. }
  488. .contZk {
  489. border-bottom: 1px solid #EEEEEE;
  490. padding-bottom: 20rpx;
  491. }
  492. .goodsImg {
  493. width: 120rpx;
  494. height: 120rpx;
  495. border-radius: 11rpx;
  496. }
  497. .goodsItemLIne {
  498. display: flex;
  499. padding-top: 20rpx;
  500. padding-bottom: 20rpx;
  501. }
  502. .goodsCont {
  503. display: flex;
  504. flex-direction: column;
  505. justify-content: space-between;
  506. padding-left: 20rpx;
  507. }
  508. .goodsContTop {
  509. display: flex;
  510. justify-content: space-between;
  511. width: 400rpx;
  512. }
  513. .goodsItemName {
  514. font-size: 26rpx;
  515. font-weight: 400;
  516. color: #3C3C3C;
  517. width: 78%;
  518. }
  519. .salePrice {
  520. font-size: 32rpx;
  521. font-weight: 500;
  522. color: #FF4F00;
  523. }
  524. .replaceBox {
  525. width: 100rpx;
  526. }
  527. .replace {
  528. width: 75rpx;
  529. height: 37rpx;
  530. border-radius: 19rpx;
  531. border: 2rpx solid #B9B9B9;
  532. text-align: center;
  533. line-height: 35rpx;
  534. color: #707070;
  535. font-size: 22rpx;
  536. margin-left: 25rpx;
  537. }
  538. .contZkMain {
  539. padding-top: 20rpx;
  540. }
  541. .asa {
  542. width: 44rpx;
  543. height: 44rpx;
  544. line-height: 44rpx;
  545. text-align: center;
  546. background: #F4F5F7;
  547. font-size: 30rpx;
  548. }
  549. .goodsCOntBOttom {
  550. display: flex;
  551. justify-content: space-between;
  552. }
  553. .as {
  554. display: flex;
  555. }
  556. .goodsPrice {
  557. display: flex;
  558. justify-content: space-between;
  559. padding-top: 10rpx;
  560. }
  561. .goodsPriceNum {
  562. color: #F8F8F8;
  563. font-size: 28rpx;
  564. }
  565. .asNum {
  566. font-size: 24rpx;
  567. color: #333333;
  568. padding: 0 18rpx;
  569. height: 44rpx;
  570. line-height: 44rpx;
  571. background: #F4F5F7;
  572. margin-left: 1px;
  573. margin-right: 1px;
  574. }
  575. .itemNum {
  576. font-size: 24rpx;
  577. font-weight: 400;
  578. color: #999999;
  579. }
  580. .bottom {
  581. position: fixed;
  582. left: 0;
  583. bottom: 0;
  584. width: 100vw;
  585. height: 120rpx;
  586. background: #FFFFFF;
  587. box-shadow: 0px -2px 20px 0px rgba(153, 153, 153, 0.2);
  588. padding-bottom: constant(safe-area-inset-bottom);
  589. padding-bottom: env(safe-area-inset-bottom);
  590. box-sizing: content-box;
  591. z-index: 11;
  592. display: flex;
  593. justify-content: space-between;
  594. }
  595. .caidanImg {
  596. width: 50rpx;
  597. height: 50rpx;
  598. }
  599. .bottomLeft {
  600. display: flex;
  601. }
  602. .caidan {
  603. padding-left: 33rpx;
  604. padding-top: 35rpx;
  605. padding-right: 33rpx;
  606. position: relative;
  607. }
  608. .total {
  609. position: absolute;
  610. width: 40rpx;
  611. height: 26rpx;
  612. background: #FF270A;
  613. line-height: 26rpx;
  614. text-align: center;
  615. color: #FFFFFF;
  616. font-size: 20rpx;
  617. top: 25rpx;
  618. right: 15rpx;
  619. border-radius: 13rpx;
  620. }
  621. .heji1 {
  622. font-size: 24rpx;
  623. font-weight: 500;
  624. color: #666666;
  625. }
  626. .hejiNum {
  627. font-size: 32rpx;
  628. font-family: PingFangSC-Medium, PingFang SC;
  629. font-weight: 500;
  630. color: #FF4F00;
  631. }
  632. .hejiMs {
  633. font-size: 24rpx;
  634. padding-top: 5rpx;
  635. color: #999999;
  636. }
  637. .heji {
  638. padding-top: 23rpx;
  639. }
  640. .settlement {
  641. width: 203rpx;
  642. height: 74rpx;
  643. background: #D53533;
  644. border-radius: 37rpx;
  645. text-align: center;
  646. line-height: 74rpx;
  647. font-size: 30rpx;
  648. font-family: PingFangSC-Medium, PingFang SC;
  649. font-weight: 500;
  650. color: #FEFFFE;
  651. margin-top: 23rpx;
  652. margin-right: 32rpx;
  653. }
  654. .caidanTk {
  655. height: calc(100vh);
  656. width: 100vw;
  657. background: rgba(0, 0, 0, 0.6);
  658. position: fixed;
  659. left: 0;
  660. top: 0;
  661. }
  662. .tkCont {
  663. height: 70vh;
  664. /* margin-top: calc(40vh ); */
  665. position: absolute;
  666. left: 0;
  667. bottom: 0;
  668. }
  669. .caidanTkTop {
  670. width: 750rpx;
  671. height: 90rpx;
  672. background: #FFFFFF;
  673. border-radius: 24rpx 24rpx 0px 0px;
  674. display: flex;
  675. justify-content: space-between;
  676. }
  677. .topTopright {
  678. /* display: flex; */
  679. padding-top: 29rpx;
  680. margin-right: 24rpx;
  681. }
  682. .tkTopTitle {
  683. line-height: 90rpx;
  684. font-size: 30rpx;
  685. font-weight: 600;
  686. color: #3C3C3C;
  687. padding-left: 24rpx;
  688. }
  689. .empty {
  690. width: 86rpx;
  691. height: 42rpx;
  692. background: #EEEEEE;
  693. border-radius: 21rpx;
  694. text-align: center;
  695. color: #666666;
  696. font-size: 24rpx;
  697. line-height: 42rpx;
  698. }
  699. .tkMain {
  700. background: #FFFFFF;
  701. height: calc(70vh - 90rpx);
  702. }
  703. .selectItem {
  704. background-color: #FFFFFFF;
  705. padding: 30rpx 24rpx 0;
  706. display: flex;
  707. justify-content: space-between;
  708. color: #333333;
  709. font-size: 26rpx;
  710. align-items: center;
  711. }
  712. .priceRight {
  713. display: flex;
  714. align-items: center;
  715. }
  716. </style>