|
@@ -42,14 +42,26 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
+
|
|
|
<!-- 通知 -->
|
|
|
<view class="notice">
|
|
|
- <u-notice-bar :text="notice" direction="column" duration="3000" fontSize="28"></u-notice-bar>
|
|
|
+ <u-notice-bar :text="notice" direction="column" duration="3000" @click="goNoticeDetail($event)">
|
|
|
+ </u-notice-bar>
|
|
|
+ </view>
|
|
|
+ <!-- 通知弹框 -->
|
|
|
+ <view>
|
|
|
+ <u-modal :show="noticeShow" title="通告"
|
|
|
+ confirmText="我已知晓" confirmColor="#FABA59" @confirm="noticeClose">
|
|
|
+ <view class="slot-content">
|
|
|
+ <rich-text :nodes="noticeContent"></rich-text>
|
|
|
+ </view>
|
|
|
+ </u-modal>
|
|
|
</view>
|
|
|
+
|
|
|
<!-- 爆款专区 -->
|
|
|
<view class="sale-group">
|
|
|
<view class="sale-content">
|
|
|
- <view class="title">爆款专区 <view class="more">
|
|
|
+ <view class="title">爆款专区 <view class="more">
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="goods-scroll">
|
|
@@ -101,7 +113,7 @@
|
|
|
<script>
|
|
|
import headerSerch from './components/headerSerch';
|
|
|
import goodListMall from './components/goodListMall';
|
|
|
-import {getAdsList} from '../../../api/home.js'
|
|
|
+import { getAdsList, getNoticeList } from '../../../api/home.js'
|
|
|
import {
|
|
|
goShopDetail
|
|
|
} from '@/libs/order.js';
|
|
@@ -112,6 +124,8 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ noticeShow: false,
|
|
|
+ noticeContent: '',
|
|
|
tempArr: [
|
|
|
{
|
|
|
"id": 72,
|
|
@@ -620,7 +634,13 @@ export default {
|
|
|
"id": "id1665385357481000"
|
|
|
},
|
|
|
current: 0,
|
|
|
- notice: ['uView UI众多组件覆盖开发过程的各个需求', '组件功能丰富,多端兼容。让您快速集成,开箱即用'],
|
|
|
+ noticeList: [],
|
|
|
+ notice: [
|
|
|
+ '寒雨连江夜入吴',
|
|
|
+ '平明送客楚山孤',
|
|
|
+ '洛阳亲友如相问',
|
|
|
+ '一片冰心在玉壶'
|
|
|
+ ],
|
|
|
swiperList: [
|
|
|
'https://cdn.uviewui.com/uview/swiper/swiper3.png',
|
|
|
'https://cdn.uviewui.com/uview/swiper/swiper2.png',
|
|
@@ -646,14 +666,38 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.getAdsList()
|
|
|
+ this.getAdsList(),
|
|
|
+ this.getNoticeList()
|
|
|
},
|
|
|
onLoad() {
|
|
|
},
|
|
|
methods: {
|
|
|
+ noticeClose(){
|
|
|
+ this.noticeShow = false
|
|
|
+ },
|
|
|
+ goNoticeDetail(value) {
|
|
|
+ this.noticeContent = this.noticeList[value].content
|
|
|
+ this.noticeShow = true
|
|
|
+ },
|
|
|
+ getNoticeList() {
|
|
|
+ getNoticeList().then(res => {
|
|
|
+ this.notice = []
|
|
|
+ this.noticeList = res.data
|
|
|
+ res.data.forEach(element => {
|
|
|
+ this.notice.push(element.title)
|
|
|
+ });
|
|
|
+ })
|
|
|
+ },
|
|
|
getAdsList() {
|
|
|
- getAdsList().then(res => {
|
|
|
- console.log(res);
|
|
|
+ getAdsList({
|
|
|
+ type: 2
|
|
|
+ }).then(res => {
|
|
|
+ if (res.data.length > 0) {
|
|
|
+ this.swiperList = []
|
|
|
+ res.data.forEach(element => {
|
|
|
+ this.swiperList.push(element.imageUrl)
|
|
|
+ });
|
|
|
+ }
|
|
|
});
|
|
|
},
|
|
|
// 促销列表的点击事件;
|