yuxingxing 2 лет назад
Родитель
Сommit
62917f2930
4 измененных файлов с 83 добавлено и 45 удалено
  1. 28 36
      api/home.js
  2. 2 1
      config/app.js
  3. 2 1
      main.js
  4. 51 7
      pages/index/diy/index_mall.vue

+ 28 - 36
api/home.js

@@ -2,47 +2,39 @@
 
 import request from "@/utils/request.js";
 
-/**
- * 查询轮播数据
- * @returns {*}
- */
-export function getAdsList() {
-	return request.get("v1/ads-list");
+
+// 查询轮播数据
+export function getAdsList(data) {
+	return request.get("v1/ads-list",data);
+}
+
+// 查询首页公告消息
+export function getNoticeList(data) {
+	return request.get("v1/notice-list",data);
 }
 
-/**
- * 获取购物车列表
- * @param numType boolean true 购物车数量,false=购物车产品数量
- */
-export function getCartCounts(numType) {
-	return request.get("cart/count", {
-		numType: numType === undefined ? 0 : numType
-	});
+// 查询一级商品分类
+export function get1(data) {
+	return request.get("v1/category/list",data);
 }
-/**
- * 获取购物车列表
- * 
- */
-export function getCartList(data) {
-	return request.get("cart/list", data);
+
+// 根据一级商品分类查询二级商品分类
+export function get2(data) {
+	return request.get("v1/category/list",data);
 }
 
-/**
- * 修改购物车
- * 
- */
-export function getResetCart(data) {
-	return request.post("v2/reset_cart", data);
+// 根据二级商品分类查询商品列表
+export function get3(data) {
+	return request.get("v1/category/list",data);
 }
 
-/**
- * 修改购物车数量
- * @param int cartId  购物车id
- * @param int number 修改数量
- */
-export function changeCartNum(cartId, number) {
-	return request.post("cart/num", {
-		id: cartId,
-		number: number
-	});
+// 根据商品列表商品Id查询商品明细
+export function get4(data) {
+	return request.get("v1/category/list",data);
 }
+
+// 根据商品列表商品Id查询商品明细
+export function get5(data) {
+	return request.get("v1/category/list",data);
+}
+

+ 2 - 1
config/app.js

@@ -2,7 +2,8 @@ module.exports = {
 	// 小程序配置
 	// #ifdef MP || APP-PLUS
 	// 请求域名 格式: https://您的域名
-	HTTP_REQUEST_URL: `http://wine.gzzzyd.com`,
+	HTTP_REQUEST_URL: `https://www.gzzhsckj.com`,
+	// HTTP_REQUEST_URL: `http://wine.gzzzyd.com`,
 	// HTTP_REQUEST_URL: `v4.crmeb.net`,
 	// #endif
 	

+ 2 - 1
main.js

@@ -23,7 +23,8 @@ Vue.component('pageLoading',pageLoading)
 /* uni.scss */
 import uView from '@/uni_modules/uview-ui'
 Vue.use(uView)
-uni.$u.config.unit = 'rpx'
+// console.log(uni.$u.config.v);
+// uni.$u.config.unit = 'rpx'
 // #ifdef H5
 
 

+ 51 - 7
pages/index/diy/index_mall.vue

@@ -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)
+					});
+				}
 			});
 		},
 		// 促销列表的点击事件;