|
@@ -3,9 +3,8 @@
|
|
|
<view class="main">
|
|
|
<view class="one">
|
|
|
<view class="one_1">
|
|
|
- <text class="text1">{{info.name}}{{info.specs}}</text>
|
|
|
- <text class="text2">好评率</text>
|
|
|
- <text class="text3">{{info.rate}}%</text>
|
|
|
+ <view class="text1">{{info.name}}{{info.specs}}</view>
|
|
|
+ <view class="text2">好评率 <text>{{info.rate}}%</text></view>
|
|
|
</view>
|
|
|
<view class="one_2">
|
|
|
<view class="one_2_1" v-for="(item,index) in btnlist" :key="index">
|
|
@@ -13,6 +12,9 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view class="two">
|
|
|
+
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</mobile-frame>
|
|
|
</template>
|
|
@@ -65,7 +67,39 @@
|
|
|
flex-direction: column;
|
|
|
width: 100vw;
|
|
|
height: 100vh;
|
|
|
+ background-color: var(--f1Color);
|
|
|
+
|
|
|
+ .one {
|
|
|
+ margin: 0 0 2vw 0;
|
|
|
+
|
|
|
+ .one_1 {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-around;
|
|
|
+ background-color: var(--mainColor);
|
|
|
+ margin: 0 0 0.5vw 0;
|
|
|
+ padding: 2vw;
|
|
|
+
|
|
|
+ .text1 {
|
|
|
+ font-size: var(--font16Szie);
|
|
|
+ }
|
|
|
|
|
|
- .one {}
|
|
|
+ .text2 {
|
|
|
+ font-size: var(--font16Szie);
|
|
|
+ color: var(--f85Color);
|
|
|
+
|
|
|
+ text {
|
|
|
+ margin: 0 0 0 1vw;
|
|
|
+ color: var(--ff0Color);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .one_2 {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 2vw;
|
|
|
+ background-color: var(--mainColor);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|