| 1234567891011121314151617181920212223242526272829303132333435363738 |
- export const articleOpar = {
- data() {
- return {
- // 主题色
- appThemeColor: this.$appTheme.appThemeColor
- }
- },
- onload(){
-
- },
- methods: {
- // goAboutUs(){
- // // 去关于我们
- // // privacy_policy
- // this.$u.api.getArticleListAjax({
- // 'article_type':'about_us'
- // }).then(({data})=>{
-
- // })
- // },
- goArticleToId(id){
-
- },
- goArticleDetail(type,title){
- const agreementParam = {
- param: {
- article_type: type,
- },
- title: title
- }
- let url = `/pages-pub/richTextPage?option=${encodeURIComponent(JSON.stringify(agreementParam))}`
-
- uni.navigateTo({
- url
- })
- },
- }
- }
|