maintenance.vue 5.2 KB

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