You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
741 B
36 lines
741 B
<!--
|
|
* @Author: ch
|
|
* @Date: 2022-04-15 16:36:02
|
|
* @LastEditors: ch
|
|
* @LastEditTime: 2022-04-15 17:00:16
|
|
* @Description: file content
|
|
-->
|
|
<template>
|
|
<UiWhiteBox>
|
|
<u-cell class="address" title="是的发生的" label="陈先生 190****2342"
|
|
:border="false" isLink @click="$Router.push('/addressList')">
|
|
<image class="address--icon" slot="icon" src="@/static/order/dw.png" />
|
|
</u-cell>
|
|
</UiWhiteBox>
|
|
</template>
|
|
<script>
|
|
import UiWhiteBox from '@/components/UiWhiteBox.vue';
|
|
export default {
|
|
components : {UiWhiteBox},
|
|
props: {
|
|
logisitcsInfo : {
|
|
type : Object,
|
|
defalut : () => ({})
|
|
}
|
|
}
|
|
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
|
|
.address--icon{
|
|
width: 28rpx;
|
|
height: 34rpx;
|
|
margin-right: 30rpx;
|
|
}
|
|
</style> |