|
|
|
@ -1,10 +1,10 @@
|
|
|
|
|
<template>
|
|
|
|
|
<view class="app-container">
|
|
|
|
|
<u-navbar leftText="返回" title="门前三包服务" :autoBack="true" :placeholder="true">
|
|
|
|
|
<!-- <u-navbar leftText="返回" title="门前三包服务" :autoBack="true" :placeholder="true">
|
|
|
|
|
<view slot="right">
|
|
|
|
|
<text class="nav-right"></text>
|
|
|
|
|
</view>
|
|
|
|
|
</u-navbar>
|
|
|
|
|
</u-navbar> -->
|
|
|
|
|
<view class="list-item">
|
|
|
|
|
<view class="list-item-box">
|
|
|
|
|
<view class="list-item-box-top">
|
|
|
|
@ -18,7 +18,8 @@
|
|
|
|
|
<view class="list-item-box-top">
|
|
|
|
|
三包等级:
|
|
|
|
|
</view>
|
|
|
|
|
<view class="list-item-box-bottom " :class="titleObj.sbLevel==3?'red':titleObj.sbLevel==4?'yellow':titleObj.sbLevel==5?'good':''">
|
|
|
|
|
<view class="list-item-box-bottom "
|
|
|
|
|
:class="titleObj.sbLevel==3?'red':titleObj.sbLevel==4?'yellow':titleObj.sbLevel==5?'good':''">
|
|
|
|
|
<!-- 3红 4黄 5绿 -->
|
|
|
|
|
{{titleObj.sbLevel==3?'红牌':titleObj.sbLevel==4?'黄牌':titleObj.sbLevel==5?'绿牌':'暂无'}}
|
|
|
|
|
</view>
|
|
|
|
@ -31,10 +32,11 @@
|
|
|
|
|
<view class="Mytitle">
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
<view class="mytext">
|
|
|
|
|
{{levelList[0].rateRuleContent || ""}}
|
|
|
|
|
<view class="mytext" v-html="levelList[0].rateRuleContent">
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<!-- <view class="mytext">
|
|
|
|
|
<u-parse :content="levelList[0].rateRuleContent" :tag-style="style"></u-parse>
|
|
|
|
|
</view> -->
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -43,6 +45,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
// import uParse from '@/components/u-parse/u-parse.vue'
|
|
|
|
|
import {
|
|
|
|
|
listraterule,
|
|
|
|
|
jnshop
|
|
|
|
@ -61,10 +64,14 @@
|
|
|
|
|
sbLevelName: null,
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
state: "1"
|
|
|
|
|
},
|
|
|
|
|
titleObj: {
|
|
|
|
|
sbLevel: "",
|
|
|
|
|
shopName:""
|
|
|
|
|
shopName: "",
|
|
|
|
|
},
|
|
|
|
|
style: {
|
|
|
|
|
p:'font-size:20rpx;!important'
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
@ -169,7 +176,13 @@
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mytext {
|
|
|
|
|
line-height: 45rpx;
|
|
|
|
|
// line-height: 45rpx;
|
|
|
|
|
margin-top: 38rpx;
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
grid-row-gap: 20rpx;
|
|
|
|
|
line-height: 2;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.item-cell {
|
|
|
|
@ -226,11 +239,14 @@
|
|
|
|
|
.good {
|
|
|
|
|
color: green;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.red {
|
|
|
|
|
color: red;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.yellow {
|
|
|
|
|
color: yellowgreen;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</style>
|