no message

This commit is contained in:
2024-01-16 22:53:42 +08:00
commit 40e5198c79
479 changed files with 52166 additions and 0 deletions

16
pages/vin-info/index.js Normal file
View File

@@ -0,0 +1,16 @@
var e = require("../../hooks/onShareAppMessage.js"),
r = require("../../common/vendor.js");
require("../../config/index.js"), require("../../constant/index.js");
var n = {
__name: "index",
setup: function (r) {
return (
e.onShareAppMessage(),
function (e, r) {
return {};
}
);
},
},
s = r._export_sfc(n, [["__scopeId", "data-v-ef0fd91c"]]);
(n.__runtimeHooks = 2), wx.createPage(s);

View File

@@ -0,0 +1 @@
{ "navigationBarTitleText": "什么是VIN", "usingComponents": {} }

37
pages/vin-info/index.wxml Normal file
View File

@@ -0,0 +1,37 @@
<view class="content data-v-ef0fd91c">
<view class="title data-v-ef0fd91c">什么是VIN</view>
<view class="divider data-v-ef0fd91c"></view>
<view class="info data-v-ef0fd91c">
VIN (Vehicle Identification
Number)中文名为车辆识别代码俗称车架号车架号就好比一辆车的身份证号码分别由17位字母、数字组合而成。通过17位代号我们可以了解这辆车的生产厂家、年代、车型、发动机型号等信息。
</view>
<view class="divider-box data-v-ef0fd91c"></view>
<view class="title data-v-ef0fd91c">在哪可以找到?</view>
<view class="divider data-v-ef0fd91c"></view>
<view class="desc data-v-ef0fd91c">一般位于前挡风玻璃下方</view>
<view class="image-wrap data-v-ef0fd91c">
<image
class="image1 data-v-ef0fd91c"
mode="widthFix"
src="/static/images/pic_vin_info_1.png"
></image>
</view>
<view class="divider data-v-ef0fd91c"></view>
<view class="desc data-v-ef0fd91c">驾驶员一侧的中柱B柱上的铭牌</view>
<view class="image-wrap data-v-ef0fd91c">
<image
class="image2 data-v-ef0fd91c"
mode="widthFix"
src="/static/images/pic_vin_info_2.png"
></image>
</view>
<view class="divider data-v-ef0fd91c"></view>
<view class="desc data-v-ef0fd91c">机动车行驶证 、保险单上也可以找到</view>
<view class="image-wrap data-v-ef0fd91c">
<image
class="image3 data-v-ef0fd91c"
mode="widthFix"
src="/static/images/pic_vin_info_3.png"
></image>
</view>
</view>

34
pages/vin-info/index.wxss Normal file
View File

@@ -0,0 +1,34 @@
page {
background-color: #fff;
}
.content.data-v-ef0fd91c {
padding-bottom: 50rpx;
}
.content .title.data-v-ef0fd91c {
font-weight: 700;
}
.content .info.data-v-ef0fd91c,
.content .title.data-v-ef0fd91c {
font-size: 30rpx;
padding: 30rpx 40rpx;
}
.content .desc.data-v-ef0fd91c {
color: #9a9a9a;
font-size: 28rpx;
padding: 20rpx 40rpx;
}
.content .image-wrap.data-v-ef0fd91c {
align-items: center;
display: -webkit-flex;
display: flex;
justify-content: center;
padding: 10rpx 40rpx;
}
.content .image1.data-v-ef0fd91c,
.content .image2.data-v-ef0fd91c {
margin-left: 120rpx;
width: 500rpx;
}
.content .image3.data-v-ef0fd91c {
width: 400rpx;
}