feat: ✨ 订单详情页静态结构
This commit is contained in:
parent
fc3db08c65
commit
029074ae97
@ -152,6 +152,13 @@
|
||||
"style": {
|
||||
"navigationBarTitleText": "新建订单"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "detail/detail",
|
||||
"style": {
|
||||
"navigationBarTitleText": "订单详情",
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
711
src/pagesOrder/detail/detail.vue
Normal file
711
src/pagesOrder/detail/detail.vue
Normal file
@ -0,0 +1,711 @@
|
||||
<template>
|
||||
<!-- 自定义导航栏: 默认透明不可见, scroll-view 滚动到 50 时展示 -->
|
||||
<view class="navbar" :style="{ paddingTop: safeAreaInsets?.top + 'px' }">
|
||||
<view class="wrap">
|
||||
<navigator v-if="hasBack" open-type="navigateBack" class="back icon-left"></navigator>
|
||||
<navigator v-else url="/pages/index/index" open-type="switchTab" class="back icon-home">
|
||||
</navigator>
|
||||
<view class="title">订单详情</view>
|
||||
</view>
|
||||
</view>
|
||||
<scroll-view scroll-y class="viewport" id="scroller" @scrolltolower="onScrollToLower">
|
||||
<template v-if="true">
|
||||
<!-- 订单状态 -->
|
||||
<view class="overview" :style="{ paddingTop: safeAreaInsets!.top + 20 + 'px' }">
|
||||
<!-- 待付款状态:展示去支付按钮和倒计时 -->
|
||||
<template v-if="true">
|
||||
<view class="status icon-clock">等待付款</view>
|
||||
<view class="tips">
|
||||
<text class="money">应付金额: ¥ 99.00</text>
|
||||
<text class="time">支付剩余</text>
|
||||
00 时 29 分 59 秒
|
||||
</view>
|
||||
<view class="button">去支付</view>
|
||||
</template>
|
||||
<!-- 其他订单状态:展示再次购买按钮 -->
|
||||
<template v-else>
|
||||
<!-- 订单状态文字 -->
|
||||
<view class="status"> 待付款 </view>
|
||||
<view class="button-group">
|
||||
<navigator
|
||||
class="button"
|
||||
:url="`/pagesOrder/create/create?orderId=${query.id}`"
|
||||
hover-class="none"
|
||||
>
|
||||
再次购买
|
||||
</navigator>
|
||||
<!-- 待发货状态:模拟发货,开发期间使用,用于修改订单状态为已发货 -->
|
||||
<view v-if="false" class="button"> 模拟发货 </view>
|
||||
</view>
|
||||
</template>
|
||||
</view>
|
||||
<!-- 配送状态 -->
|
||||
<view class="shipment">
|
||||
<!-- 订单物流信息 -->
|
||||
<view v-for="item in 1" :key="item" class="item">
|
||||
<view class="message">
|
||||
您已在广州市天河区黑马程序员完成取件,感谢使用菜鸟驿站,期待再次为您服务。
|
||||
</view>
|
||||
<view class="date"> 2023-04-14 13:14:20 </view>
|
||||
</view>
|
||||
<!-- 用户收货地址 -->
|
||||
<view class="locate">
|
||||
<view class="user"> 张三 13333333333 </view>
|
||||
<view class="address"> 广东省 广州市 天河区 黑马程序员 </view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 商品信息 -->
|
||||
<view class="goods">
|
||||
<view class="item">
|
||||
<navigator
|
||||
class="navigator"
|
||||
v-for="item in 2"
|
||||
:key="item"
|
||||
:url="`/pages/goods/goods?id=${item}`"
|
||||
hover-class="none"
|
||||
>
|
||||
<image
|
||||
class="cover"
|
||||
src="https://yanxuan-item.nosdn.127.net/c07edde1047fa1bd0b795bed136c2bb2.jpg"
|
||||
></image>
|
||||
<view class="meta">
|
||||
<view class="name ellipsis">ins风小碎花泡泡袖衬110-160cm</view>
|
||||
<view class="type">藏青小花, 130</view>
|
||||
<view class="price">
|
||||
<view class="actual">
|
||||
<text class="symbol">¥</text>
|
||||
<text>99.00</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="quantity">x1</view>
|
||||
</view>
|
||||
</navigator>
|
||||
<!-- 待评价状态:展示按钮 -->
|
||||
<view class="action" v-if="true">
|
||||
<view class="button primary">申请售后</view>
|
||||
<navigator url="" class="button"> 去评价 </navigator>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 合计 -->
|
||||
<view class="total">
|
||||
<view class="row">
|
||||
<view class="text">商品总价: </view>
|
||||
<view class="symbol">99.00</view>
|
||||
</view>
|
||||
<view class="row">
|
||||
<view class="text">运费: </view>
|
||||
<view class="symbol">10.00</view>
|
||||
</view>
|
||||
<view class="row">
|
||||
<view class="text">应付金额: </view>
|
||||
<view class="symbol primary">109.00</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 订单信息 -->
|
||||
<view class="detail">
|
||||
<view class="title">订单信息</view>
|
||||
<view class="row">
|
||||
<view class="item">
|
||||
订单编号: {{ query.id }} <text class="copy" @tap="onCopy(query.id)">复制</text>
|
||||
</view>
|
||||
<view class="item">下单时间: 2023-04-14 13:14:20</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 猜你喜欢 -->
|
||||
<XtxGuess ref="guessRef" />
|
||||
|
||||
<!-- 底部操作栏 -->
|
||||
<view class="toolbar-height" :style="{ paddingBottom: safeAreaInsets?.bottom + 'px' }"></view>
|
||||
<view class="toolbar" :style="{ paddingBottom: safeAreaInsets?.bottom + 'px' }">
|
||||
<!-- 待付款状态:展示支付按钮 -->
|
||||
<template v-if="true">
|
||||
<view class="button primary"> 去支付 </view>
|
||||
<view class="button" @tap="popup?.open?.()"> 取消订单 </view>
|
||||
</template>
|
||||
<!-- 其他订单状态:按需展示按钮 -->
|
||||
<template v-else>
|
||||
<navigator
|
||||
class="button secondary"
|
||||
:url="`/pagesOrder/create/create?orderId=${query.id}`"
|
||||
hover-class="none"
|
||||
>
|
||||
再次购买
|
||||
</navigator>
|
||||
<!-- 待收货状态: 展示确认收货 -->
|
||||
<view class="button primary"> 确认收货 </view>
|
||||
<!-- 待评价状态: 展示去评价 -->
|
||||
<view class="button"> 去评价 </view>
|
||||
<!-- 待评价/已完成/已取消 状态: 展示删除订单 -->
|
||||
<view class="button delete"> 删除订单 </view>
|
||||
</template>
|
||||
</view>
|
||||
</template>
|
||||
<template v-else>
|
||||
<!-- 骨架屏组件 -->
|
||||
<PageSkeleton />
|
||||
</template>
|
||||
</scroll-view>
|
||||
<!-- 取消订单弹窗 -->
|
||||
<uni-popup ref="popup" type="bottom" background-color="#fff">
|
||||
<view class="popup-root">
|
||||
<view class="title">订单取消</view>
|
||||
<view class="description">
|
||||
<view class="tips">请选择取消订单的原因:</view>
|
||||
<view class="cell" v-for="item in reasonList" :key="item" @tap="reason = item">
|
||||
<text class="text">{{ item }}</text>
|
||||
<text class="icon" :class="{ checked: item === reason }"></text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="footer">
|
||||
<view class="button" @tap="popup?.close?.()">取消</view>
|
||||
<view class="button primary">确认</view>
|
||||
</view>
|
||||
</view>
|
||||
</uni-popup>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { useGuessList } from '@/composables'
|
||||
import type { AnimationMethods } from '@/types/animation'
|
||||
import { onReady } from '@dcloudio/uni-app'
|
||||
import { computed, ref } from 'vue'
|
||||
|
||||
// 获取屏幕边界到安全区域距离
|
||||
const { safeAreaInsets } = uni.getSystemInfoSync()
|
||||
// 猜你喜欢
|
||||
const { guessRef, onScrollToLower } = useGuessList()
|
||||
// 弹出层组件
|
||||
const popup = ref<UniHelper.UniPopupInstance>()
|
||||
// 取消原因列表
|
||||
const reasonList = ref([
|
||||
'商品无货',
|
||||
'不想要了',
|
||||
'商品信息填错了',
|
||||
'地址信息填写错误',
|
||||
'商品降价',
|
||||
'其它',
|
||||
])
|
||||
// 订单取消原因
|
||||
const reason = ref('')
|
||||
// 复制内容
|
||||
const onCopy = (id: string) => {
|
||||
// 设置系统剪贴板的内容
|
||||
uni.setClipboardData({ data: id })
|
||||
}
|
||||
// 获取页面参数
|
||||
const query = defineProps<{
|
||||
id: string
|
||||
}>()
|
||||
|
||||
// 获取当前页面栈
|
||||
const pages = getCurrentPages()
|
||||
const hasBack = pages.length > 1
|
||||
|
||||
// 获取当前页面实例
|
||||
const pageInstance = pages.at(-1) as AnimationMethods
|
||||
console.log(pageInstance)
|
||||
|
||||
onReady(() => {
|
||||
// 动画效果: 导航栏背景色
|
||||
pageInstance.animate(
|
||||
'.navbar',
|
||||
[
|
||||
{
|
||||
backgroundColor: 'transparent',
|
||||
},
|
||||
{
|
||||
backgroundColor: '#f8f8f8',
|
||||
},
|
||||
],
|
||||
1000,
|
||||
{
|
||||
scrollSource: '#scroller',
|
||||
timeRange: 1000,
|
||||
startScrollOffset: 0,
|
||||
endScrollOffset: 50,
|
||||
},
|
||||
)
|
||||
|
||||
// 动画效果: 导航栏标题
|
||||
pageInstance.animate(
|
||||
'.navbar .title',
|
||||
[
|
||||
{
|
||||
color: 'transparent',
|
||||
},
|
||||
{
|
||||
color: '#000',
|
||||
},
|
||||
],
|
||||
1000,
|
||||
{
|
||||
scrollSource: '#scroller',
|
||||
timeRange: 1000,
|
||||
startScrollOffset: 0,
|
||||
endScrollOffset: 50,
|
||||
},
|
||||
)
|
||||
|
||||
// 动画效果: 返回按钮
|
||||
pageInstance.animate(
|
||||
'.navbar .back',
|
||||
[
|
||||
{
|
||||
color: '#fff',
|
||||
},
|
||||
{
|
||||
color: '#000',
|
||||
},
|
||||
],
|
||||
1000,
|
||||
{
|
||||
scrollSource: '#scroller',
|
||||
timeRange: 1000,
|
||||
startScrollOffset: 0,
|
||||
endScrollOffset: 50,
|
||||
},
|
||||
)
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
page {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
width: 750rpx;
|
||||
color: #000;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 9;
|
||||
/* background-color: #f8f8f8; */
|
||||
background-color: transparent;
|
||||
|
||||
.wrap {
|
||||
position: relative;
|
||||
|
||||
.title {
|
||||
height: 44px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: 32rpx;
|
||||
/* color: #000; */
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.back {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
height: 44px;
|
||||
width: 44px;
|
||||
font-size: 44rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
/* color: #000; */
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.viewport {
|
||||
background-color: #f7f7f8;
|
||||
}
|
||||
|
||||
.overview {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
line-height: 1;
|
||||
padding-bottom: 30rpx;
|
||||
color: #fff;
|
||||
background-image: url(https://pcapi-xiaotuxian-front-devtest.itheima.net/miniapp/images/order_bg.png);
|
||||
background-size: cover;
|
||||
|
||||
.status {
|
||||
font-size: 36rpx;
|
||||
}
|
||||
|
||||
.status::before {
|
||||
margin-right: 6rpx;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.tips {
|
||||
margin: 30rpx 0;
|
||||
display: flex;
|
||||
font-size: 14px;
|
||||
align-items: center;
|
||||
|
||||
.money {
|
||||
margin-right: 30rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.button-group {
|
||||
margin-top: 30rpx;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.button {
|
||||
width: 260rpx;
|
||||
height: 64rpx;
|
||||
margin: 0 10rpx;
|
||||
text-align: center;
|
||||
line-height: 64rpx;
|
||||
font-size: 28rpx;
|
||||
color: #27ba9b;
|
||||
border-radius: 68rpx;
|
||||
background-color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.shipment {
|
||||
line-height: 1.4;
|
||||
padding: 0 20rpx;
|
||||
margin: 20rpx 20rpx 0;
|
||||
border-radius: 10rpx;
|
||||
background-color: #fff;
|
||||
|
||||
.locate,
|
||||
.item {
|
||||
min-height: 120rpx;
|
||||
padding: 30rpx 30rpx 25rpx 75rpx;
|
||||
background-size: 50rpx;
|
||||
background-repeat: no-repeat;
|
||||
background-position: 6rpx center;
|
||||
}
|
||||
|
||||
.locate {
|
||||
background-image: url(https://pcapi-xiaotuxian-front-devtest.itheima.net/miniapp/images/locate.png);
|
||||
|
||||
.user {
|
||||
font-size: 26rpx;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.address {
|
||||
font-size: 24rpx;
|
||||
color: #666;
|
||||
}
|
||||
}
|
||||
|
||||
.item {
|
||||
background-image: url(https://pcapi-xiaotuxian-front-devtest.itheima.net/miniapp/images/car.png);
|
||||
border-bottom: 1rpx solid #eee;
|
||||
position: relative;
|
||||
|
||||
.message {
|
||||
font-size: 26rpx;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.date {
|
||||
font-size: 24rpx;
|
||||
color: #666;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.goods {
|
||||
margin: 20rpx 20rpx 0;
|
||||
padding: 0 20rpx;
|
||||
border-radius: 10rpx;
|
||||
background-color: #fff;
|
||||
|
||||
.item {
|
||||
padding: 30rpx 0;
|
||||
border-bottom: 1rpx solid #eee;
|
||||
|
||||
.navigator {
|
||||
display: flex;
|
||||
margin: 20rpx 0;
|
||||
}
|
||||
|
||||
.cover {
|
||||
width: 170rpx;
|
||||
height: 170rpx;
|
||||
border-radius: 10rpx;
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
|
||||
.meta {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.name {
|
||||
height: 80rpx;
|
||||
font-size: 26rpx;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.type {
|
||||
line-height: 1.8;
|
||||
padding: 0 15rpx;
|
||||
margin-top: 6rpx;
|
||||
font-size: 24rpx;
|
||||
align-self: flex-start;
|
||||
border-radius: 4rpx;
|
||||
color: #888;
|
||||
background-color: #f7f7f8;
|
||||
}
|
||||
|
||||
.price {
|
||||
display: flex;
|
||||
margin-top: 6rpx;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
.symbol {
|
||||
font-size: 20rpx;
|
||||
}
|
||||
|
||||
.original {
|
||||
color: #999;
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
.actual {
|
||||
margin-left: 10rpx;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.text {
|
||||
font-size: 22rpx;
|
||||
}
|
||||
|
||||
.quantity {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
font-size: 24rpx;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.action {
|
||||
display: flex;
|
||||
flex-direction: row-reverse;
|
||||
justify-content: flex-start;
|
||||
padding: 30rpx 0 0;
|
||||
|
||||
.button {
|
||||
width: 200rpx;
|
||||
height: 60rpx;
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
line-height: 60rpx;
|
||||
margin-left: 20rpx;
|
||||
border-radius: 60rpx;
|
||||
border: 1rpx solid #ccc;
|
||||
font-size: 26rpx;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.primary {
|
||||
color: #27ba9b;
|
||||
border-color: #27ba9b;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.total {
|
||||
line-height: 1;
|
||||
font-size: 26rpx;
|
||||
padding: 20rpx 0;
|
||||
color: #666;
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 10rpx 0;
|
||||
}
|
||||
|
||||
.symbol::before {
|
||||
content: '¥';
|
||||
font-size: 80%;
|
||||
margin-right: 3rpx;
|
||||
}
|
||||
|
||||
.primary {
|
||||
color: #cf4444;
|
||||
font-size: 36rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.detail {
|
||||
line-height: 1;
|
||||
padding: 30rpx 20rpx 0;
|
||||
margin: 20rpx 20rpx 0;
|
||||
font-size: 26rpx;
|
||||
color: #666;
|
||||
border-radius: 10rpx;
|
||||
background-color: #fff;
|
||||
|
||||
.title {
|
||||
font-size: 30rpx;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.row {
|
||||
padding: 20rpx 0;
|
||||
|
||||
.item {
|
||||
padding: 10rpx 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.copy {
|
||||
border-radius: 20rpx;
|
||||
font-size: 20rpx;
|
||||
border: 1px solid #ccc;
|
||||
padding: 5rpx 10rpx;
|
||||
margin-left: 10rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.toolbar-height {
|
||||
height: 100rpx;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
.toolbar {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: calc(var(--window-bottom));
|
||||
z-index: 1;
|
||||
|
||||
height: 100rpx;
|
||||
padding: 0 20rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-direction: row-reverse;
|
||||
border-top: 1rpx solid #ededed;
|
||||
border-bottom: 1rpx solid #ededed;
|
||||
background-color: #fff;
|
||||
box-sizing: content-box;
|
||||
|
||||
.button {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
width: 200rpx;
|
||||
height: 72rpx;
|
||||
margin-left: 15rpx;
|
||||
font-size: 26rpx;
|
||||
border-radius: 72rpx;
|
||||
border: 1rpx solid #ccc;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.delete {
|
||||
order: 4;
|
||||
}
|
||||
|
||||
.button {
|
||||
order: 3;
|
||||
}
|
||||
|
||||
.secondary {
|
||||
order: 2;
|
||||
color: #27ba9b;
|
||||
border-color: #27ba9b;
|
||||
}
|
||||
|
||||
.primary {
|
||||
order: 1;
|
||||
color: #fff;
|
||||
background-color: #27ba9b;
|
||||
}
|
||||
}
|
||||
|
||||
.popup-root {
|
||||
padding: 30rpx 30rpx 0;
|
||||
border-radius: 10rpx 10rpx 0 0;
|
||||
overflow: hidden;
|
||||
|
||||
.title {
|
||||
font-size: 30rpx;
|
||||
text-align: center;
|
||||
margin-bottom: 30rpx;
|
||||
}
|
||||
|
||||
.description {
|
||||
font-size: 28rpx;
|
||||
padding: 0 20rpx;
|
||||
|
||||
.tips {
|
||||
color: #444;
|
||||
margin-bottom: 12rpx;
|
||||
}
|
||||
|
||||
.cell {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 15rpx 0;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.icon::before {
|
||||
content: '\e6cd';
|
||||
font-family: 'erabbit' !important;
|
||||
font-size: 38rpx;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.icon.checked::before {
|
||||
content: '\e6cc';
|
||||
font-size: 38rpx;
|
||||
color: #27ba9b;
|
||||
}
|
||||
}
|
||||
|
||||
.footer {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 30rpx 0 40rpx;
|
||||
font-size: 28rpx;
|
||||
color: #444;
|
||||
|
||||
.button {
|
||||
flex: 1;
|
||||
height: 72rpx;
|
||||
text-align: center;
|
||||
line-height: 72rpx;
|
||||
margin: 0 20rpx;
|
||||
color: #444;
|
||||
border-radius: 72rpx;
|
||||
border: 1rpx solid #ccc;
|
||||
}
|
||||
|
||||
.primary {
|
||||
color: #fff;
|
||||
background-color: #27ba9b;
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
104
src/types/animation.d.ts
vendored
Normal file
104
src/types/animation.d.ts
vendored
Normal file
@ -0,0 +1,104 @@
|
||||
// 关键帧对象类型
|
||||
export interface Keyframe {
|
||||
offset?: number // 关键帧的偏移,范围[0-1]
|
||||
ease?: string // 动画缓动函数
|
||||
transformOrigin?: string // 基点位置
|
||||
backgroundColor?: string // 背景颜色
|
||||
opacity?: number // 不透明度
|
||||
width?: string // 宽度
|
||||
height?: string // 高度
|
||||
left?: string // 左边位置
|
||||
top?: string // 顶边位置
|
||||
right?: string // 右边位置
|
||||
bottom?: string // 底边位置
|
||||
matrix?: number[] // 变换矩阵
|
||||
matrix3d?: number[] // 三维变换矩阵
|
||||
rotate?: number // 旋转
|
||||
rotate3d?: number[] // 三维旋转
|
||||
rotateX?: number // X 方向旋转
|
||||
rotateY?: number // Y 方向旋转
|
||||
rotateZ?: number // Z 方向旋转
|
||||
scale?: number[] // 缩放
|
||||
scale3d?: number[] // 三维缩放
|
||||
scaleX?: number // X 方向缩放
|
||||
scaleY?: number // Y 方向缩放
|
||||
scaleZ?: number // Z 方向缩放
|
||||
skew?: number[] // 倾斜
|
||||
skewX?: number // X 方向倾斜
|
||||
skewY?: number // Y 方向倾斜
|
||||
translate?: number[] // 位移
|
||||
translate3d?: number[] // 三维位移
|
||||
translateX?: number // X 方向位移
|
||||
translateY?: number // Y 方向位移
|
||||
translateZ?: number // Z 方向位移
|
||||
color?: string // 文字颜色
|
||||
[key: string]: any // 其他可能的CSS属性
|
||||
}
|
||||
|
||||
// 滚动时间线参数
|
||||
export interface ScrollTimeline {
|
||||
scrollSource: string // 滚动元素的选择器
|
||||
orientation?: 'horizontal' | 'vertical' // 滚动方向
|
||||
startScrollOffset: number // 开始驱动动画的滚动偏移量
|
||||
endScrollOffset: number // 停止驱动动画的滚动偏移量
|
||||
timeRange: number // 滚动范围映射的时间长度
|
||||
}
|
||||
|
||||
// 清除动画选项
|
||||
export interface ClearAnimationOptions {
|
||||
opacity?: boolean
|
||||
backgroundColor?: boolean
|
||||
width?: boolean
|
||||
height?: boolean
|
||||
left?: boolean
|
||||
right?: boolean
|
||||
top?: boolean
|
||||
bottom?: boolean
|
||||
rotate?: boolean
|
||||
rotateX?: boolean
|
||||
rotateY?: boolean
|
||||
rotateZ?: boolean
|
||||
scale?: boolean
|
||||
scaleX?: boolean
|
||||
scaleY?: boolean
|
||||
scaleZ?: boolean
|
||||
translate?: boolean
|
||||
translateX?: boolean
|
||||
translateY?: boolean
|
||||
translateZ?: boolean
|
||||
[key: string]: boolean | undefined
|
||||
}
|
||||
|
||||
// 动画方法类型
|
||||
export interface AnimationMethods {
|
||||
/**
|
||||
* 关键帧动画
|
||||
* @param selector 选择器
|
||||
* @param keyframes 关键帧信息
|
||||
* @param duration 动画持续时长(毫秒)
|
||||
* @param callback 动画完成后的回调函数
|
||||
*/
|
||||
animate(selector: string, keyframes: Keyframe[], duration: number, callback?: () => void): void
|
||||
|
||||
/**
|
||||
* 滚动驱动的动画
|
||||
* @param selector 选择器
|
||||
* @param keyframes 关键帧信息
|
||||
* @param duration 动画持续时长(毫秒)
|
||||
* @param scrollTimeline 滚动时间线参数
|
||||
*/
|
||||
animate(
|
||||
selector: string,
|
||||
keyframes: Keyframe[],
|
||||
duration: number,
|
||||
scrollTimeline: ScrollTimeline,
|
||||
): void
|
||||
|
||||
/**
|
||||
* 清除动画
|
||||
* @param selector 选择器
|
||||
* @param options 需要清除的属性,不填写则全部清除
|
||||
* @param callback 清除完成后的回调函数
|
||||
*/
|
||||
clearAnimation(selector: string, options?: ClearAnimationOptions, callback?: () => void): void
|
||||
}
|
2
src/types/order.d.ts
vendored
2
src/types/order.d.ts
vendored
@ -48,7 +48,7 @@ export type OrderCreateParams = {
|
||||
/** 所选地址Id */
|
||||
addressId: string
|
||||
/** 配送时间类型,1为不限,2为工作日,3为双休或假日 */
|
||||
deliveryTimeType: number
|
||||
deliveryTimeType: 1 | 2 | 3
|
||||
/** 订单备注 */
|
||||
buyerMessage: string
|
||||
/** 商品集合[ 商品信息 ] */
|
||||
|
Loading…
x
Reference in New Issue
Block a user