maintenance.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. <template>
  2. <view class="content">
  3. <view class="tabbox">
  4. <view class="tabline" @click="tabindex=1">
  5. <view class="tabName" :class="{'tabActive':tabindex==1}">保养计划</view>
  6. <view class="tabHx" v-if="tabindex==1"></view>
  7. </view>
  8. <view class="tabline" @click="tabindex=2">
  9. <view class="tabName " :class="{'tabActive':tabindex==2}">原厂配件参数</view>
  10. <view class="tabHx" v-if="tabindex==2"></view>
  11. </view>
  12. </view>
  13. <view class="" v-if="tabindex==1">
  14. <scroll-view scroll-y="true" scroll-x="true" :scroll-top="scrollTop" :scroll-left="scrollTop" @scroll="scroll">
  15. <!-- 内容 -->
  16. <view class="teamContent" :style="{width:HN_width}">
  17. <view v-for="(itemRow,indexRow) in itemData" :key="indexRow">
  18. <view class="row" :class="{grayColor:indexRow==0}">
  19. <view v-for="(itemCol,indexCol) in itemRow" :key="indexCol" class="colBg" :class="{grayColor:indexCol==0}">
  20. <view class="col" v-if="indexCol==0">{{itemCol}}</view>
  21. <view class="col" v-else-if="indexRow==0">{{itemCol}}</view>
  22. <view class="redCol" v-else-if="indexRow!=0 && indexCol!=0 && itemCol==1"></view>
  23. <view class="grayCol" v-else-if="indexRow!=0 && indexCol!=0 && itemCol==0"></view>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. </scroll-view>
  29. </view>
  30. <view class="" v-if="tabindex==2">
  31. <view class="pjTitleBox">
  32. <view class="pjTitle">保养计划</view>
  33. <view class="pjTitle">规格型号</view>
  34. <view class="pjTitle">参考用量</view>
  35. </view>
  36. <view class="pjlineBox">
  37. <view class="pjline" v-for="(item,index) in pjList">
  38. <view class="pjitem">{{item[0]}}</view>
  39. <view class="pjitem">{{item[1]}}</view>
  40. <view class="pjitem">{{item[2]}}</view>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. export default {
  48. components: {
  49. },
  50. data() {
  51. return {
  52. tabindex:1,
  53. liyangId :'',
  54. itemData:[],
  55. noMoreShow: false,
  56. mileage: '',
  57. liyangId: '',
  58. scrollTop: 0,
  59. old: {
  60. scrollTop: 0
  61. },
  62. leftData:[],
  63. pjList:[]
  64. }
  65. },
  66. onLoad(opt) {
  67. this.optdata=opt;
  68. this.queryPlan();
  69. this.queryOilInfoByGroupID()
  70. },
  71. computed: {
  72. HN_width() {
  73. var MaxLength = 2;
  74. var Row_Materials = this.itemData[0];
  75. if (Row_Materials != null && Row_Materials.length > 0) {
  76. MaxLength = Row_Materials.length * (180 + 40)
  77. }
  78. return MaxLength + 'rpx';
  79. },
  80. },
  81. methods: {
  82. queryPlan(){
  83. uni.showLoading({ title: '加载中'});
  84. this.$http('matchingByOpen/queryPlan', {
  85. mileage:'0',
  86. liyangId:this.optdata.nLevelID,
  87. },'POST').then(res => {
  88. uni.hideLoading();
  89. this.itemData = res.data
  90. // 首列数据
  91. for (var i = 0; i < res.data.length; i++) {
  92. var leftArr = res.data[i]
  93. this.leftData.push(leftArr[0])
  94. }
  95. })
  96. },
  97. queryOilInfoByGroupID(){
  98. this.$http('matchingByOpen/queryOilInfoByGroupID', {
  99. // mileage:'30000',
  100. groupId:this.optdata.id,
  101. },'POST').then(res => {
  102. this.pjList=res.data
  103. })
  104. },
  105. scroll: function(e) {
  106. this.old.scrollTop = e.detail.scrollTop
  107. },
  108. }
  109. }
  110. </script>
  111. <style scoped>
  112. .tabbox{
  113. display: flex;
  114. }
  115. .tabline{
  116. width: 50%;
  117. }
  118. .tabHx{
  119. width: 40rpx;
  120. height: 4rpx;
  121. background: #FF4F00;
  122. margin: 0 auto;
  123. }
  124. .tabName{
  125. font-weight: 400;font-size: 30rpx;
  126. color: #1A1A1A;
  127. line-height: 42rpx;
  128. padding-top: 23rpx;padding-bottom: 8rpx;
  129. text-align: center;
  130. }
  131. .tabActive{
  132. color: #FF4F00;
  133. }
  134. .scroll-view {
  135. white-space: nowrap;
  136. height: 1000;
  137. }
  138. .teamContent {
  139. width: 100%;
  140. align-items: center;
  141. }
  142. .row {
  143. display: flex;
  144. justify-content: space-around;
  145. width: 100%;
  146. }
  147. .colBg{
  148. display: flex;
  149. align-items: center;
  150. justify-content: center;
  151. padding: 20rpx;
  152. width: 180rpx;
  153. border: 1rpx #EEEEEE solid;
  154. }
  155. .col {
  156. color: #333333;
  157. font-size: 28rpx;
  158. }
  159. .redCol,
  160. .grayCol{
  161. width: 24rpx;
  162. height: 24rpx;
  163. background-color: #FF4F00;
  164. border-radius: 12rpx;
  165. }
  166. .grayCol{
  167. background-color: #DDDDDD;
  168. }
  169. .grayColor{
  170. background-color: #F7F7F7;
  171. }
  172. .leftView{
  173. display: flex;
  174. justify-content: space-around;
  175. flex-flow: column;
  176. position: absolute;
  177. left: 0rpx;
  178. top: 0rpx;
  179. background-color: #FFFFFF;
  180. z-index: 99;
  181. }
  182. .leftTitleBg{
  183. padding: 20rpx;
  184. width: 180rpx;
  185. background-color: #F7F7F7;
  186. border: 1rpx #EEEEEE solid;
  187. }
  188. .leftTitle{
  189. color: #333333;
  190. font-size: 28rpx;
  191. }
  192. .firstRow{
  193. height: 80rpx;
  194. }
  195. .pjTitle{
  196. width: 33.3%;text-align: center;font-weight: 400;
  197. color: #1A1A1A;font-size: 26rpx;
  198. }
  199. .pjTitleBox{
  200. display: flex;
  201. justify-content: space-between;
  202. background: #F7F7F7;
  203. line-height: 93rpx;
  204. }
  205. .pjline{
  206. display: flex;justify-content: space-between;padding: 20rpx 0;
  207. border-bottom: 1px solid #EEEEEE;
  208. }
  209. .pjitem{
  210. width: 33.3%;text-align: center;font-weight: 400;
  211. color: #1A1A1A;font-size: 26rpx;
  212. }
  213. </style>