uniapp 购物弹窗组件 (微信小程序)

 效果图,暂时只适应单规格,居中弹出和下方弹出,如需求不满足,请自行修改代码

(更新于24/11/15)

居中显示效果

下方弹出效果

html 

<template><view class="" v-if="show":class="mode=='center'?(style_show?'specifications_show_center openAnimation':'specifications_show_center closeAnimation'):mode=='bottom'?(style_show?'specifications_show_bottom  openAnimation':'specifications_show_bottom  closeAnimation'):''"@tap.stop="()=>{}"><view class="specifications":class="mode=='bottom'?(style_show?'specifications_bottom_open  ':'specifications_bottom_close  '):''"@tap.stop="()=>{}"><view class="specification"><view class="specification_title">请选择规格</view><image class="colseIcon":src="$publicfun.locaAndHttp()?'../../static/all/del.png':$publicfun.httpUrlImg('colse.png')"mode="aspectFit" @tap.stop="colosePopue"></image><!-- 商品信息 --><view class="modal-header flex "><view class="header-left ss-m-r-30"><image class="sku-image" :src="component_goodsDetail.image" mode="aspectFill"@tap.stop="previewImages1(component_goodsDetail.image,1)"></image></view><view class="header-right   "><view class="goods-title ss-line-2">{{component_goodsDetail.title||'商品名称' }}</view><view class="header-right-bottom ss-flex ss-col-center ss-row-between"><view class="price-text">{{is_kongobj=='{}'? Number(component_goodsDetail.price*1).toFixed(2) :Number(chooseSpecificationObject.price*1).toFixed(2)}}</view><view class="stock-text ss-m-l-20" v-if="is_kongobj!='{}'">库存{{ is_kongobj=='{}'?component_goodsDetail.goods_stock:chooseSpecificationObject.inventory}}件</view></view></view></view><view class="specification_title2">规格</view><view class="specification_title_1"><scroll-view scroll-y="true" style="height: 100%;"><view><height :hg='30'></height><view class="flex flexwrap"><view v-for="(itemall,indexall) in component_goodsDetail.multiplejson" :key="indexall"@click.stop="setguigeindex(indexall,itemall)"><view:class="guigeindex==indexall?'specification_title_1_title specification_title_1_titlec':'specification_title_1_title'"v-if='itemall.title'>{{itemall.title}}</view></view></view><!-- 单规格 --><view class="mt30" v-if="false"><view class="specification_title_1_content"><view class="specification_title_1_content_flex flex jc ac":class="guigeindex2==index?'specification_title_1_content_flex_activate':''"v-for="(item,index) in specification_list[guigeindex].item" :key="index"@tap.stop="selective_specification(item.guigechildren,item)"><!-- 可用于显示商品图片 --><!-- <image class="image" :src="sheep.$url.cdn(type_return_img(item.id).url)"mode="aspectFill" v-if="type_return_img(item.id).url!=''"></image> --><view>{{item.name}}</view></view><view class="nogoods" v-if="item.guigechildren.length==0" style="margin: auto;"><u-empty text='没有规格~' icon=""></u-empty></view></view></view></view></scroll-view></view><view class="" v-if="mode=='center'"><view class="selected"><text>已选规格:</text>{{is_kongobj=='{}'?'未选择':chooseSpecificationObject.title}}</view></view><view class="buy-num-box flex jsb ac"><view class="label-text">购买数量</view><view class="ShopCar flex jc ac"><image class="ShopCaricon":src="$publicfun.locaAndHttp()?'../../static/all/del.png':$publicfun.httpUrlImg('del.png')"mode="aspectFit" @tap.stop="delnum(item)"></image><input type="number" v-model="goodsNum" class="ShopCarInp" @blur="inpnum(item)" /><image class="ShopCaricon":src="$publicfun.locaAndHttp()?'../../static/all/add.png':$publicfun.httpUrlImg('add.png')"mode="aspectFit" @tap.stop="addnum(item)"></image></view></view><view class="sublist" v-if="mode=='center'"><view class="sublist_left"><view class=""><text>总计 </text><text class="TotalPrices"><text>¥</text>{{is_kongobj=='{}'?'0.00':Number(chooseSpecificationObject.price*goodsNum).toFixed(2) }}</text></view></view><view class="sublist_right" @tap.stop="goodsAddCar()"><text>+</text> <text>加入购物车</text></view></view><view class="specification_bottombuts" v-if="mode=='bottom'"><view class="specification_bottombuts_but specification_bottombuts_ShoppingCart"@tap.stop="goodsAddCar()">加入购物车</view><view class="specification_bottombuts_but specification_bottombuts_PayNow" @tap.stop="newPay()">立即购买</view></view><view class="" style="width: 100%;height: 30px;" v-if="mode=='bottom'"></view></view></view></view>
</template>

js

export default {name: "specification",//style_show  主要控制动画效果//mode   设置方向弹出//show   控制显示不显示//goodsDetail  传入的商品信息props: ['show', 'style_show', 'goodsDetail', 'mode'],data() {return {orderprive: '',style: [], //规格动态样式// goodsDetail: { //模拟商品信息// 	goods_name: '番茄鸡蛋面',// 	goods_price: '9.90',// 	goods_stock: 999,// 	specification: [{// 		goods_name: '规格1',// 		goods_price: '9.90',// 		goods_stock: 999,// 		children: [{// 			goods_name: '11',// 			goods_price: '6.60',// 			goods_stock: 999,// 		}]// 	}]// },chooseSpecificationObject: {}, //选中的规格guigeindex: 0, //一级规格guigeindex2: 0, //二级规格component_goodsDetail: {}, //请求接口的商品数据goodsNum: 1,};},onLoad() {},watch: {
//监听是否有商品id传入进来goodsDetail: {handler(newName, oldName) {//获取商品信息的接口GoodsDetail({id: newName.id}).then(res => {this.component_goodsDetail = res.data;this.chooseSpecificationObject = res.data ? res.data.multiplejson[0] : {};this.guigeindex = 0;console.log(res, '商品详情');})this.goodsNum = 1;},immediate: true,deep: true}},onShow() {},computed: {//判断是否选中规格is_kongobj() {console.log(this.chooseSpecificationObject);return JSON.stringify(this.chooseSpecificationObject); }},methods: {newPay() {if (!this.style_show) {return}let that = this;//可用于显示弹窗不默认选中规格的判断// if (JSON.stringify(this.choose_specification) == '{}') {// 	uni.showToast({// 		title: "请选择规格",// 		icon: "none"// 	})// 	return// }// console.log(that.goodsNum);// return// 直接购买将需要的信息提交到vuex缓存中,用于渲染页面this.$store.commit('set_is_immediately', {type: 'goodsDetail',id: that.component_goodsDetail.id, //iditem: that.chooseSpecificationObject, //规格名称count: that.goodsNum,goodsDetail: [that.component_goodsDetail] //商品列表数组})//跳转到提交订单页面this.$publicfun.navigateTo('/pagesA/SubmitOrder/SubmitOrder')this.colosePopue()},//选中规格setguigeindex(index, item) {if (!this.style_show) {return}this.chooseSpecificationObject = item;this.guigeindex = index;if (this.goodsNum > this.chooseSpecificationObject.inventory) {this.goodsNum = this.chooseSpecificationObject.inventory;}},//删除购物车数量delnum() {if (!this.style_show) {return}if (this.goodsNum > 1) {this.goodsNum--;} else {//数量少于1 关闭弹窗this.colosePopue()}},//添加购物车数量addnum() {if (!this.style_show) {return}if (this.goodsNum < this.chooseSpecificationObject.inventory) {this.goodsNum++;} else {uni.showToast({title: '超出购买数量~',icon: "none"})}},//手动输入购买数量inpnum() {if (!this.style_show) {return}if (this.goodsNum > this.chooseSpecificationObject.inventory) {this.goodsNum = this.chooseSpecificationObject.inventory;}if (this.goodsNum == '') {// this.colosePopue()this.goodsNum = 1;this.$publicfun.showToast('购买数量不得少于1~')}if (this.goodsNum <= 0) {// this.colosePopue()this.goodsNum = 1;this.$publicfun.showToast('购买数量不得少于1~')}},//预览商品图片previewImages1(url, index) {
//因为动画效果是 用透明度为0,再消失,透明度改变的时候还可以点击,加这个判断是很必要的if (!this.style_show) {return}//预览图片this.$publicfun.previewImage({url: url,index: index})},//关闭弹窗colosePopue() {if (!this.style_show) {return}this.$emit('closeCar')// this.component_goodsDetail={};},//添加购物车goodsAddCar() {if (!this.style_show) {return}let that = this;//这是添加到购物车carAddAndDel({id: this.goodsDetail.id,count: this.goodsNum,item_name: this.chooseSpecificationObject.title,type: 'add'}).then(res => {if (res.code == 1) {//通过vuex更新数据this.$store.dispatch('fun_set_shopCar');// console.log(res);that.colosePopue();uni.showToast({title: '已添加到购物车~',icon: "none"})} else {uni.showToast({title: res.msg,icon: "none"})}})},}}

css部分

//居中显示.specifications_show_center {width: 100vw;height: 100vh;position: fixed;top: 0;left: 0;z-index: 999999999;background: rgba(0, 0, 0, 0.6);display: flex;justify-content: center;align-items: center;opacity: 1;border-radius: 18rpx;}.openAnimation {animation: slow_show 0.3s linear;}.closeAnimation {opacity: 0 !important;animation: close_slow_show 0.3s linear;}@keyframes slow_show {0% {opacity: 0;}100% {opacity: 1;}}@keyframes close_slow_show {0% {opacity: 1;}100% {opacity: 0;}}//从下方弹出显示.specifications_show_bottom {width: 100vw;height: 100vh;position: fixed;bottom: 0;left: 0;z-index: 999999999;background: rgba(0, 0, 0, 0.6);display: flex;justify-content: center;align-items: flex-end;opacity: 1;border-radius: 18rpx;.specifications {width: 100% !important;position: absolute;bottom: 0;left: 0;padding: 30rpx 50rpx !important;}.specifications_bottom_open {animation: From_bottom_to_top 0.22s linear;}.specifications_bottom_close {animation: From_top_to_bottom 0.3s linear;}}@keyframes From_bottom_to_top {0% {bottom: -100%;}100% {bottom: 0;}}@keyframes From_top_to_bottom {0% {bottom: 0;}100% {bottom: -100%;}}//以上是动画效果.specifications {width: 690rpx;padding: 30rpx;box-sizing: border-box;background: #fff;border-radius: 18rpx;.buy-num-box {height: 100rpx;// padding-left: 20rpx;// box-sizing: border-box;.ShopCar {.ShopCaricon {width: 46rpx;height: 46rpx;}.ShopCarInp {width: 100rpx;height: 46rpx;text-align: center;}}}.modal-header {// position: relative;padding: 20rpx 0;margin-top: 20rpx;.sku-image {width: 160rpx;height: 160rpx;border-radius: 10rpx;background: darkslategray;}.header-right {width: calc(100% - 160rpx - 20rpx);height: 160rpx;display: flex;flex-direction: column;justify-content: space-between;margin-left: 20rpx;}.close-icon {position: absolute;top: 10rpx;right: 20rpx;font-size: 46rpx;opacity: 0.2;}.goods-title {font-size: 28rpx;font-weight: bold;line-height: 42rpx;position: relative;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;.tig {border: 2rpx solid #ff6000;border-radius: 4rpx;width: 126rpx;height: 38rpx;position: absolute;left: 0;top: 0;.tig-icon {width: 40rpx;height: 40rpx;background: #ff6000;margin-left: -2rpx;border-radius: 4rpx 0 0 4rpx;.groupon-tag {width: 32rpx;height: 32rpx;}}.tig-title {font-size: 24rpx;font-weight: 500;line-height: normal;color: #ff6000;width: 86rpx;display: flex;justify-content: center;align-items: center;}}.info-title {text-indent: 132rpx;}}.header-right-bottom {display: flex;justify-content: space-between;align-items: center;}.price-text {font-size: 30rpx;font-weight: 500;color: red;font-family: OPPOSANS;&::before {content: '¥';font-size: 24rpx;}}.stock-text {font-size: 26rpx;color: #999999;}}.d_box {.d_box_item {font-size: 34rpx;color: #3d3d3d;width: 45%;margin-bottom: 20rpx;}}.specification {background: #FFFFFF;border-radius: 12rpx;position: relative;z-index: 10074;.specification_title {text-align: center;font-size: 38rpx;font-weight: 600;color: #353535;margin: 0 auto;}.colseIcon {width: 40rpx;height: 40rpx;position: absolute;right: 0rpx;top: 0rpx;}.specification_title2 {font-size: 38rpx;font-weight: 600;color: #353535;margin: 0 auto;margin-bottom: 30rpx;}.specification_goods_title {font-size: 38rpx;font-weight: 600;}.specification_title_1 {width: 100%;max-height: 400rpx !important;margin: 0 auto;.specification_title_1_title {font-size: 32rpx;font-weight: 600;color: #676767;// color: $AccentColor;display: inline-block;padding: 10rpx 20rpx;text-align: center;background: #fff;border-radius: 18rpx;white-space: nowrap;// border: 1rpx solid $AccentColor !important;border: 1rpx solid #676767 !important;margin-right: 10rpx;margin-bottom: 10rpx;}.specification_title_1_titlec {color: $AccentColor !important;// background: $AccentColor !important;border: 1rpx solid $AccentColor !important;}.specification_title_1_content {display: flex;flex-wrap: wrap;// overflow-x: auto;display: -webkit-box;-webkit-overflow-scrolling: touch;.specification_title_1_content_flex_activate {background: $AccentColor !important;border: 1rpx solid $AccentColor !important;color: #fff !important;}.font_sizi_1 {color: $AccentColor;}.font_sizi_2 {border-left: 1rpx solid $AccentColor;}.specification_title_1_content_flex {// height: 63rpx;background: #FFFFFF;border-radius: 14rpx;border: 1rpx solid #999;margin-right: 20rpx;text-align: center;// line-height: 63rpx;font-size: 28rpx;font-weight: 400;color: #343434;padding: 10rpx 20rpx;margin-bottom: 20rpx;.image {width: 60rpx;height: 60rpx;margin-right: 20rpx;border-radius: 12rpx;}}}}.close {position: absolute;bottom: -150rpx;left: 50%;transform: translateX(-50%);}}.selected {width: 100%;padding: 20rpx 0;background: #F5F5F5;margin-top: 60rpx;text {font-size: 24rpx;font-weight: 400;color: #363636;}text:nth-child(1) {font-size: 24rpx;font-weight: 400;color: #676767;padding: 0 20rpx;margin-left: 10rpx;}}.sublist {display: flex;align-items: center;justify-content: space-between;margin-top: 30rpx;// padding: 30rpx 40rpx;.sublist_left {.TotalPrices {margin-left: 10rpx;}text:nth-child(1) {font-size: 28rpx;font-weight: 600;color: #363636;}text:nth-child(2) {font-size: 28rpx;font-weight: 600;color: #FF0000;text:nth-child(1) {font-size: 28rpx;font-weight: 600;color: #FF0000;font-size: 24rpx;}}}.sublist_right {width: 234rpx;height: 62rpx;background: $AccentColor;border-radius: 12rpx;font-size: 32rpx;font-weight: 500;color: #F3FCFF;line-height: 62rpx;text-align: center;}}//从下方弹出的弹窗按钮.specification_bottombuts {width: 100%;margin: auto;display: flex;justify-content: space-between;align-items: center;margin-top: 20rpx;.specification_bottombuts_but {width: 50%;padding: 25rpx 20rpx;font-size: 28rpx;font-weight: bold;color: #fff;text-align: center;}.specification_bottombuts_ShoppingCart {background: #9dceff;border-radius: 99px 0 0 99px;}.specification_bottombuts_PayNow {background: #0a84ff;border-radius: 0px 99px 99px 0px;}}.minus {width: 25px;height: 25px;border-width: 1px;border-color: #E6E6E6;border-style: solid;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;@include flex;justify-content: center;align-items: center;}.input {padding: 0 10px;}.plus {width: 25px;height: 25px;border-width: 1px;background-color: #00B8FB;border-color: #00B8FB;border-style: solid;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;@include flex;justify-content: center;align-items: center;}}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.xdnf.cn/news/19950.html

如若内容造成侵权/违法违规/事实不符,请联系一条长河网进行投诉反馈,一经查实,立即删除!

相关文章

力扣-Mysql-1811 - 寻找面试候选人(中等)

一、题目来源 1811. 寻找面试候选人 - 力扣&#xff08;LeetCode&#xff09; 二、数据表结构 表: Contests -------------------- | Column Name | Type | -------------------- | contest_id | int | | gold_medal | int | | silver_medal | int | | bronze_medal | …

【C语言】volatile 防止编译的时候被优化

volatile 易变的 volatile是 C 和 C 中的一个类型修饰符&#xff0c;用于指示编译器该变量可能在程序之外被更改&#xff0c;因此不应对其进行优化。这在涉及硬件寄存器、信号处理或多线程编程时非常有用。 如果你做过单片机开发&#xff0c;你肯定写过这样的代码&#xff1a;…

makefile速通

makefile速通 文章目录 makefile速通1.基础显式规则隐含规则%*通配符 赋值 伪目标CFLAGS 2.函数wildcardpatsubst 3.项目实例 1.基础 显式规则 目标文件&#xff1a;依赖文件 [TAB] 指令隐含规则 % 任意* 所有通配符 符号含义$^所有依赖文件$所有目标文件$<所有依赖文…

面向服务的软件工程——巨详细讲解商务流程建模符号 (BPMN),一篇章带你入门BPMN!!!(week1)

文章目录 一、前言二、重点概念三、BPMN元素讲解流对象1.活动任务(Task)子流程(sub-process)多实例活动连接对象序列流消息流关联泳道Artifacts数据对象组(Group)事件(Events)启动事件中间事件结束事件边界事件边界事件1边界事件2小疑问?网关参考文献:一、前言 在我们…

模拟实现~简易通讯录

一.前言 今天给小伙伴们分享的是运用结构体以及指针等相关C语言知识实现一个简易版的通讯录。咱们写的通讯录的功能主要包括添加及删除联系人&#xff0c;修改联系人信息&#xff0c;显现所有联系人&#xff0c;查找已添加联系人&#xff0c;以及对联系人进行排序&#xff0c;…

0成本添加访问级监控

互联网的安全感这个概念源于阿里。顾名思义&#xff0c;让互联网的用户对于web产品能够产生足够的信任和依赖。特别是涉及到用户资金交易的站点&#xff0c;一次严重的用户资料泄露就可以彻底毁掉你的品牌。 然而当前阶段除了bat大部分互联网行业的企业对于网络安全给的重视都…

分布式系统稳定性建设-性能优化篇

分布式系统稳定性建设-性能优化篇 系统稳定性建设是系统工程的核心内容之一。以下是一些重要的方面: 架构设计: 采用模块化、松耦合的架构设计,以提高系统的可扩展性和可维护性。合理划分系统功能模块,降低单个模块的复杂度。定义清晰的接口和数据交换标准,确保各模块之间协调…

Web端高效BIM 3D可视化引擎HOOPS Communicator技术解析!

HOOPS Communicator是一款简单而强大的工业级高性能3D Web可视化开发包&#xff0c;专注于Web端工程图形渲染。采用了先进的流式加载方式&#xff0c;并支持服务端和客户端渲染&#xff0c;是可以在云端进行部署和无缝集成的新技术平台。 灵活且易于部署&#xff0c;可在以工程…

C/C++实现tcp客户端和服务端的实现(从零开始写自己的高性能服务器)

目录 tcp客户端通信流程 tcp客户端设计 1、创建通信对象 2、链接服务器 3、发送数据 / 读取数据 4、关闭通信 tcp服务端设计 1、创建通信对象 2、绑定服务器地址信息 3、设置服务器为监听模式 4、接收客户的链接请求 编写tcp客户端和服务端&#xff0c;实现双向通信…

C++ 容器全面剖析:掌握 STL 的奥秘,从入门到高效编程

引言 C 标准模板库&#xff08;STL&#xff09;提供了一组功能强大的容器类&#xff0c;用于存储和操作数据集合。不同的容器具有独特的特性和应用场景&#xff0c;因此选择合适的容器对于程序的性能和代码的可读性至关重要。对于刚接触 C 的开发者来说&#xff0c;了解这些容…

快速上手并使用Muduo库

Muduo muduo库是基于主从reactor模型的高性能服务器&#xff08;高并发服务器&#xff09;框架 reactor模型&#xff1a;基于事件触发的模型&#xff08;基于epoll进行IP事件监控&#xff09; 主从reactor模型&#xff1a;将IO事件监控有进行进一步的层次划分 主reactor&#x…

深入解析【C++多态】:探索面向对象编程中的动态绑定与行为多样性和多态的核心概念与应用实践

&#x1f31f;个人主页&#xff1a;落叶 &#x1f31f;当前专栏: C专栏 目录 多态的概念 多态的定义及实现 实现多态还有两个必须重要条件 虚函数 虚函数的重写/覆盖 多态场景的⼀个选择题 虚函数重写的⼀些其他问题 协变(了解进行) 析构函数的重写 override 和 final关…

React Native Mac 环境搭建

下载 Mac 版Android Studio 下载 安装 JDK 环境 Flutter 项目实战-环境变量配置一 安装 Node.js 方式一 通过Node.js 官网下载 下载完成后点击安装包进行安装 安装完成

【Word】一键批量引用论文上标——将正文字体改为上标格式

【Word】一键批量引用论文上标——将正文字体改为上标格式 写在最前面Word一键批量引用论文上标技巧分享核心思路&#xff1a;Word 替换功能 通配符步骤详解1. 打开 Word 替换功能2. 输入通配符模式3. 设置替换格式为上标4. 批量替换 实际效果展示技巧扩展 &#x1f308;你好呀…

深入探索Python数据可视化:自定义颜色映射、标签与进阶技巧

目录 一、自定义颜色映射&#xff08;Cmap&#xff09; 1. 内置Cmap类型 2. 使用内置Cmap 3. 自定义Cmap 二、标签添加 1. 在散点图上添加标签 2. 在折线图上标记关键点 3. 在柱状图上添加标签 三、进阶技巧 1. 多图形布局 2. 添加图例 3. 3D数据可视化 四、总结 …

【Java SE】数据库连接池

数据库连接池是一个管理数据库连接的容器。它的主要作用是分配和管理数据库连接&#xff0c;允许应用程序重复使用现有的连接&#xff0c;而不是每次都重新建立新的连接。此外&#xff0c;连接池会释放那些空闲时间超过最大限制的连接&#xff0c;从而避免因未及时释放连接而造…

FastAPI重载不生效?解决PyCharm中Uvicorn无法重载/重载缓慢的终极方法!

文章目录 📖 介绍 📖🏡 演示环境 🏡📒 重载缓慢 📒📝 问题概述🚨 相关原因📝 解决方案一📝 解决方案二📝 解决方案三📝 解决方案四⚓️ 相关链接 ⚓️📖 介绍 📖 在使用FastAPI开发时,reload=True 本应让你在修改代码后自动重启服务,提升开发效率…

CPU算法分析LiteAIServer视频智能分析平台未戴安全帽检测算法

随着人工智能技术的不断进步&#xff0c;CPU算法分析在视频智能分析平台中的应用日益广泛。特别是在工地安全管理领域&#xff0c;未戴安全帽检测算法已成为一项关键的安全保障措施。LiteAIServer视频智能分析平台通过结合CPU的高效运算能力和先进的深度学习算法&#xff0c;实…

两网站定时数据exchange项目详解

功能说明 A网站&#xff1a;用户可以通过表单输入嫌疑人信息&#xff0c;这些信息会被存储在内存中&#xff0c;并通过API接口返回。B网站&#xff1a;通过API接口接收从A网站同步过来的嫌疑人数据&#xff0c;并显示这些数据。主应用&#xff1a;使用APScheduler每隔1分钟从A…

【云计算】腾讯云架构高级工程师认证TCP--考纲例题,知识点总结

【云计算】腾讯云架构高级工程师认证TCCP–知识点总结&#xff0c;排版整理 文章目录 1、云计算架构概论1.1 五大版块知识点&#xff08;架构设计&#xff0c;基础服务&#xff0c;高阶技术&#xff0c;安全&#xff0c;上云&#xff09;1.2 课程详细目录1.3 云基础架构设计1.4…