123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <template>
- <view class="content">
- <homenav :iStatusBarHeight="iStatusBarHeight" :title="'电池安装'"></homenav>
- <view class="box">
- <video style="width:750rpx;" class="edui-faked-video twtcs" :src="videoUrl" width="420" height="280" enable-danmu danmu-btn controls></video>
-
- </view>
- </view>
- </template>
- <script>
- import homenav from "../../components/homenav/nav.vue"
- import nodata from '../../components/nodata/nodata.vue'
- export default {
- components: {
- homenav,nodata
- },
- data() {
- return {
- videoUrl:"https://66km.oss-cn-beijing.aliyuncs.com/yanghuziliao/jiyou/%E6%AC%A7%E6%B4%B2%E7%BB%B4%E4%BF%AE%E6%A0%87%E5%87%86%E6%8D%A2%E6%B2%B9SOP%E6%B5%81%E7%A8%8B.mp4",
- historyList:[],
- iStatusBarHeight:'',
- loading:false,
- }
- },
- onLoad(opt) {
- this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
- // this.queryHistory()
- },
- methods: {
- goDetail(e){
- uni.navigateTo({
- url:'/pages/index/goodsList?nLevelID='+e.nLevelID+'&logo='+e.logo+'&value='+e.title+'&id='+e.groupID+'&isVin='+e.ifVin+'&vin='+e.vin
- })
- },
- queryHistory(){
- this.loading=false;
- this.$http2('queryHistory', {
-
-
- },'POST').then(res => {
- this.loading=true;
- this.historyList=res.data
- })
- },
- }
- }
- </script>
- <style scoped>
- .box{
-
- }
- .historylinecarImg{
- width: 54rpx;
- height: 54rpx;
- }
- .historylinecar{
- font-weight: 400;font-size: 26rpx;
- color: #1A1A1A;
- line-height: 46rpx;width: 636rpx;
- }
- .historyLine{
-
- padding: 30rpx 0;border-top: 1rpx solid #EEEEEE;
- }
- .historyLineCar{
- display: flex;justify-content: space-between;
- }
- .vinms{
- width: 38rpx;
- height: 26rpx;
- background: linear-gradient(224deg, #FFDA28 0%, #FFBF35 100%);
- border-radius: 4rpx;
- text-align: center;
- line-height: 26rpx;
- font-weight: 600;
- color: #FFFFFF;
- font-size: 18rpx;
- margin-top: 2rpx;
- }
- .historyLineVin{
- display: flex;
- }
- .vinNum{
- font-weight: 400;font-size: 22rpx;padding-left: 10rpx;
- color: #999999;line-height: 30rpx;
- }
- .historyLogoBox{
- display: flex;align-items: center;
- }
- </style>
|