paint.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. <template>
  2. <view class="box">
  3. <view class="top">
  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="" style="width: 30rpx;height: 30rpx;"></image>
  12. </view>
  13. <view class="main" v-if="itemList">
  14. <view class="mainLeft">
  15. <view class="mainLeftLine" v-for="(item,index) in itemList" :class="{lineLeftActive:leftIndex==index}"
  16. @click="leftClick(item,index)">
  17. <span class="leftTitle">{{item.name}}</span>
  18. <view class="lineNum" v-show="item.num!=0">{{item.num}}</view>
  19. </view>
  20. </view>
  21. <view class="mainRight">
  22. <view class="rightTop">{{itemList[leftIndex].name}}</view>
  23. <view class="mainRightLine" v-for="(item2,index) in itemList[leftIndex].list" :key="index">
  24. <view class="itemTop">
  25. <view class="itemName">{{item2.ItemName}}</view>
  26. <span class="rightState" v-if="item2.open==false" @click="changeState(item2)">展开<image
  27. src="../../static/img/icon_arrow_down.png" mode=""
  28. style="width: 20rpx;height: 11rpx; padding: 5rpx 8rpx;"></image>
  29. </span>
  30. <span class="rightState" v-else @click="changeState(item2)">收起<image
  31. src="../../static/img/icon_arrow_up.png" mode=""
  32. style="width: 20rpx;height: 11rpx; padding: 5rpx 8rpx;"></image>
  33. </span>
  34. </view>
  35. <!-- -->
  36. <view class="itemBox">
  37. <view class="type" :class="{orangeColor:item2.type==1}" @click="select(item2,'1')">
  38. <view class="typeName">喷漆</view>
  39. <view class="money"><span class="renminbi">¥</span>{{item2.PSalePrice?item2.PSalePrice:'0'}}</view>
  40. </view>
  41. <view class="type marginLeft" :class="{orangeColor:item2.type==2}" @click="select(item2,'2')">
  42. <view class="typeName">钣金喷漆</view>
  43. <view class="money"><span class="renminbi">¥</span>{{item2.BPSalePrice?item2.BPSalePrice:'0'}}</view>
  44. </view>
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. </template>
  51. <script>
  52. export default {
  53. data() {
  54. return {
  55. carInfo: '',
  56. itemList: [],
  57. leftIndex: 0,
  58. }
  59. },
  60. onShow() {
  61. this.carInfo = this.$store.state.carInfo
  62. console.log("车=",this.carInfo);
  63. },
  64. onLoad() {
  65. this.getData();
  66. },
  67. methods: {
  68. select(item,type){
  69. console.log('type'+type);
  70. item.type = type
  71. },
  72. changeState(item) {
  73. item.open = !item.open
  74. },
  75. leftClick(item, index) {
  76. this.leftIndex = index
  77. },
  78. getData() {
  79. uni.showLoading({
  80. title: '加载中'
  81. });
  82. this.$http('openSheetMetalSprayPaint/queryPackageList', {
  83. // id: this.id,
  84. }, 'GET').then(res => {
  85. uni.hideLoading();
  86. this.itemList = res.data;
  87. })
  88. },
  89. }
  90. }
  91. </script>
  92. <style>
  93. .box {
  94. min-height: 100vh;
  95. background-color: #f4f5f7;
  96. }
  97. .top {
  98. background-color: #FFFFFF;
  99. padding: 30rpx 20rpx;
  100. display: flex;
  101. justify-content: space-between;
  102. align-items: center;
  103. }
  104. .left {
  105. display: flex;
  106. align-items: center;
  107. }
  108. .car {
  109. font-size: 28rpx;
  110. color: #333333;
  111. line-height: 40rpx;
  112. margin-left: 10rpx;
  113. /* 隐藏文字显示 ...不换行 */
  114. overflow: hidden;
  115. text-overflow: ellipsis;
  116. white-space: nowrap;
  117. }
  118. .brandLogo {
  119. width: 42rpx;
  120. height: 42rpx;
  121. }
  122. .main {
  123. display: flex;
  124. height: calc(100vh - 310rpx);
  125. }
  126. .mainLeft {
  127. width: 154rpx;
  128. background: #F4F5F7;
  129. }
  130. .mainLeftLine {
  131. color: #3C3C3C;
  132. padding: 30rpx 20rpx;
  133. font-size: 26rpx;
  134. text-align: center;
  135. position: relative;
  136. }
  137. .leftTitle {
  138. color: #333333;
  139. font-weight: bold;
  140. font-size: 26rpx;
  141. }
  142. .lineNum {
  143. position: absolute;
  144. background: #FF270A;
  145. width: 40rpx;
  146. height: 26rpx;
  147. text-align: center;
  148. line-height: 26rpx;
  149. font-size: 20rpx;
  150. color: #FFFFFF;
  151. border-radius: 13rpx;
  152. top: 10rpx;
  153. right: 10rpx;
  154. }
  155. .lineLeftActive {
  156. background: #FFFFFF;
  157. }
  158. .mainRight {
  159. width: 596rpx;
  160. background-color: #FFFFFF;
  161. }
  162. .rightTop {
  163. padding: 13rpx 24rpx;
  164. background-color: #F9F9F9;
  165. font-size: 26rpx;
  166. color: #959595;
  167. line-height: 37rpx;
  168. }
  169. .mainRightLine {
  170. padding: 30rpx 24rpx;
  171. background-color: #FFFFFF;
  172. }
  173. .itemTop {
  174. display: flex;
  175. justify-content: space-between;
  176. align-items: center;
  177. }
  178. .itemName {
  179. font-size: 28rpx;
  180. font-weight: bold;
  181. color: #333333;
  182. }
  183. .rightState {
  184. font-size: 24rpx;
  185. color: #6666666;
  186. }
  187. .itemBox {
  188. display: flex;
  189. justify-content: space-around;
  190. border-bottom: 1rpx solid #EEEEEE;
  191. padding: 30rpx 0;
  192. }
  193. .type {
  194. border-radius: 10rpx;
  195. border: 2rpx solid #CCCCCC;
  196. width: 50%;
  197. text-align: center;
  198. }
  199. .marginLeft{
  200. margin-left: 20rpx;
  201. }
  202. .typeName{
  203. height: 57rpx;
  204. color: #666666;
  205. font-size: 26rpx;
  206. line-height: 57rpx;
  207. border-bottom: 2rpx solid #EEEEEE;
  208. }
  209. .orangeColor{
  210. color: #FF0000;
  211. border: 2rpx solid #FF0000;
  212. }
  213. .renminbi{
  214. font-size: 22rpx;
  215. }
  216. .money{
  217. height: 76rpx;
  218. line-height: 76rpx;
  219. font-size: 32rpx;
  220. color: #FF0000;
  221. }
  222. </style>