history.vue 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <template>
  2. <view class="content">
  3. <homenav :iStatusBarHeight="iStatusBarHeight" :title="'历史查询'"></homenav>
  4. <view class="box">
  5. <view class="historyLine" v-for="(item,index) in historyList" @click="goDetail(item)">
  6. <view class="historyLineCar">
  7. <image :src="item.logo" mode="" class="historylinecarImg"></image>
  8. <view class="historylinecar">{{item.title}}</view>
  9. </view>
  10. <view class="historyLineVin" v-if="item.ifVin">
  11. <view class="vinms">vin</view>
  12. <view class="vinNum">{{item.vin}}</view>
  13. </view>
  14. </view>
  15. <nodata v-if="historyList.length==0&&loading"></nodata>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. import homenav from "../../components/homenav/nav.vue"
  21. import nodata from '../../components/nodata/nodata.vue'
  22. export default {
  23. components: {
  24. homenav,nodata
  25. },
  26. data() {
  27. return {
  28. historyList:[],
  29. iStatusBarHeight:'',
  30. loading:false,
  31. }
  32. },
  33. onLoad(opt) {
  34. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  35. this.queryHistory()
  36. },
  37. methods: {
  38. goDetail(e){
  39. uni.navigateTo({
  40. url:'/pages/index/byItem?nLevelID='+e.nLevelID+'&logo='+e.logo+'&value='+e.title+'&id='+e.groupID+'&isVin='+e.ifVin+'&vin='+e.vin
  41. })
  42. },
  43. queryHistory(){
  44. this.loading=false;
  45. this.$http2('queryHistory', {
  46. },'POST').then(res => {
  47. this.loading=true;
  48. this.historyList=res.data
  49. })
  50. },
  51. }
  52. }
  53. </script>
  54. <style scoped>
  55. .box{
  56. padding: 0 24rpx;
  57. }
  58. .historylinecarImg{
  59. width: 46rpx;
  60. height: 46rpx;
  61. }
  62. .historylinecar{
  63. font-weight: 400;font-size: 26rpx;
  64. color: #1A1A1A;
  65. line-height: 46rpx;width: 636rpx;
  66. }
  67. .historyLine{
  68. padding: 30rpx 0;border-top: 1rpx solid #EEEEEE;
  69. }
  70. .historyLineCar{
  71. display: flex;justify-content: space-between;
  72. }
  73. .vinms{
  74. width: 38rpx;
  75. height: 26rpx;
  76. background: linear-gradient(224deg, #FFDA28 0%, #FFBF35 100%);
  77. border-radius: 4rpx;
  78. text-align: center;
  79. line-height: 26rpx;
  80. font-weight: 600;
  81. color: #FFFFFF;
  82. font-size: 18rpx;
  83. margin-top: 2rpx;
  84. }
  85. .historyLineVin{
  86. display: flex;
  87. }
  88. .vinNum{
  89. font-weight: 400;font-size: 22rpx;padding-left: 10rpx;
  90. color: #999999;line-height: 30rpx;
  91. }
  92. </style>