|
|
@ -5,7 +5,7 @@ |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
<script> |
|
|
<script> |
|
|
import { aboutUs, gradeAgreement, privacyAgreement, cardDesign, ratingStandard, getServiceStandard } from '@/service/agreementArticle.js'; |
|
|
|
|
|
|
|
|
import { tipsDetail,aboutUs, gradeAgreement, privacyAgreement, cardDesign, ratingStandard, getServiceStandard } from '@/service/agreementArticle.js'; |
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
|
data(){ |
|
|
data(){ |
|
|
@ -29,9 +29,20 @@ |
|
|
this.getRatingStandard(); |
|
|
this.getRatingStandard(); |
|
|
}else if(options.type === 'service_standard'){ |
|
|
}else if(options.type === 'service_standard'){ |
|
|
this.getServiceStandard(); |
|
|
this.getServiceStandard(); |
|
|
|
|
|
}else{ |
|
|
|
|
|
this.getTips(); |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
|
|
|
|
// 获取关于我们 |
|
|
|
|
|
async getTips(){ |
|
|
|
|
|
let res = await tipsDetail(); |
|
|
|
|
|
this.article = res.data.datas.content; |
|
|
|
|
|
uni.setNavigationBarTitle({ |
|
|
|
|
|
title: res.data.datas.title |
|
|
|
|
|
}) |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
// 获取关于我们 |
|
|
// 获取关于我们 |
|
|
async getAboutUsDetail(){ |
|
|
async getAboutUsDetail(){ |
|
|
let res = await aboutUs(); |
|
|
let res = await aboutUs(); |
|
|
|