更新记录
1.0.0(2023-08-21)
下载此版本
物流模版信息 logistics-progress
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
× |
× |
× |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
× |
× |
× |
× |
× |
× |
× |
× |
物流模版信息 logistics-progress
这是 logistics-progress
插件的基础版本,支持 H5
小程序
,如果是在之前的插件上升级的话,请注意参数的变更,触发的事件没有变更。
属性说明
属性名 |
类型 |
默认值 |
说明 |
data |
Array |
[] |
物流数据 |
使用说明
<logistics-progress :data="list"></logistics-progress>
import logisticsProgress from '@/components/logistics-progress/logistics-progress.vue'
export default {
components: {
logisticsProgress
},
data() {
return {
list:[
{
id:3,
context:'【东莞市】快件已到达虎门中心的业务员,已揽收的业务员,已揽收的业务员,已揽收',
time:'2023-08-23 13:24:45'
},
{
id:2,
context:'【东莞市】快件已发往京南转运中心',
time:'2023-08-22 13:24:45'
},
{
id:1,
context:'【东莞市】(0769-33558123)的业务员,已揽收',
time:'2023-08-21 13:24:45',
tel:'0769-33558123'
},
{
id:0,
context:'订单确认,已通知商家配货',
time:'2023-08-21 13:24:45'
}
]
}
}
}