|
@@ -11,7 +11,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
- import {getNoticeByType} from '@/api/groupon.js'
|
|
|
+ import {getNoticeByType, getArticle} from '@/api/groupon.js'
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
@@ -29,9 +29,12 @@
|
|
|
methods: {
|
|
|
|
|
|
getNoticeByType(){
|
|
|
- getNoticeByType(3).then(res =>{
|
|
|
- this.notice = res.data
|
|
|
- })
|
|
|
+ // getNoticeByType(3).then(res =>{
|
|
|
+ // this.notice = res.data
|
|
|
+ // })
|
|
|
+ getArticle("1676236635245780993").then(res => {
|
|
|
+ this.notice = res.data;
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
},
|