paint.vue 16 KB

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