|
|
|
@ -75,15 +75,19 @@ |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="tips_panel" v-if="tips.length > 0"> |
|
|
|
<u-notice-bar :text="tips" direction="column" speed="250" url="/pages/componentsB/tag/tag"></u-notice-bar> |
|
|
|
</view> |
|
|
|
|
|
|
|
<!-- 快速评级 --> |
|
|
|
<view class="section_4 flex-col"> |
|
|
|
<view class="justify-between group_9"> |
|
|
|
<view class="group_10"> |
|
|
|
<text class="text_14">快速评级</text> |
|
|
|
<text class="text_15">(7day)</text> |
|
|
|
<text class="text_14">开始评级</text> |
|
|
|
</view> |
|
|
|
<view class="right-group flex-row" @click="$url('/pages/fastRating/fastRating')"> |
|
|
|
<text>查看详情</text> |
|
|
|
<view class="right-group flex-row" @click="$url('/packages/article/article?type=service_standard')"> |
|
|
|
<text>服务及收费标准</text> |
|
|
|
<image src="@/static/icon/rightArrow.png" class="image_8" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
@ -140,7 +144,7 @@ |
|
|
|
</view> |
|
|
|
<!-- 评级标准 --> |
|
|
|
<view class="justify-between section_9" @click="$url('/pages/ratingCriteria/ratingCriteria')"> |
|
|
|
<text>评级标准/卡砖设计</text> |
|
|
|
<text>评级标准</text> |
|
|
|
<image |
|
|
|
src="@/static/icon/rightArrow.png" |
|
|
|
class="image_8" /> |
|
|
|
@ -153,7 +157,7 @@ |
|
|
|
|
|
|
|
<script> |
|
|
|
import lfHeader from '@/components/lf-header.vue'; |
|
|
|
import { my } from '@/service/index.js'; |
|
|
|
import { my ,sysInfo } from '@/service/index.js'; |
|
|
|
import { ratingSearch } from '@/service/grading.js'; |
|
|
|
|
|
|
|
|
|
|
|
@ -168,7 +172,9 @@ |
|
|
|
user: {}, |
|
|
|
dots: {}, |
|
|
|
evaluated_order: [], |
|
|
|
showCount: 0 |
|
|
|
showCount: 0, |
|
|
|
tipsDatas:[], |
|
|
|
tips:[], |
|
|
|
}; |
|
|
|
}, |
|
|
|
onShow(){ |
|
|
|
@ -178,6 +184,8 @@ |
|
|
|
} |
|
|
|
}, |
|
|
|
async onLoad(query){ |
|
|
|
this.getSysInfo(); |
|
|
|
|
|
|
|
if(query && query.q){ |
|
|
|
const q = decodeURIComponent(query.q); |
|
|
|
console.log("query",q); |
|
|
|
@ -204,6 +212,17 @@ |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
|
|
|
|
async getSysInfo(){ |
|
|
|
let res = await sysInfo(); |
|
|
|
console.log("getSysInfo res",res) |
|
|
|
let datas = res.data.datas.tips; |
|
|
|
this.tipsDatas = datas; |
|
|
|
this.tips = datas.map((item)=>{ |
|
|
|
return item.title |
|
|
|
}) |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
async toSubOrder(value){ |
|
|
|
let res = await ratingSearch(value); |
|
|
|
let datas = res.data.datas; |
|
|
|
@ -256,6 +275,12 @@ |
|
|
|
</script> |
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|
|
|
|
.tips_panel{ |
|
|
|
margin-top: 30rpx; |
|
|
|
background-color: white; |
|
|
|
} |
|
|
|
|
|
|
|
.header-nav{ |
|
|
|
text-align: center; |
|
|
|
position: relative; |
|
|
|
|