deming/pageD/notice/notice.vue
2020-08-18 11:06:28 +08:00

67 lines
1.7 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view>
<!-- 公告咨询 -->
<notice :list="list"></notice>
</view>
</template>
<script>
import notice from "@/components/informations/notice/notice"
export default {
data() {
return {
list: [{
addtime: 1597413655,
id: 22,
is_read: "0",
kd_time: "2020-08-14 18:32",
member_id: 46,
order_sn: "3000000000049901",
picture: "https://dmmall.sdbairui.com/uploads/home/store/goods/1/1_2020071816513255433_240.png",
status: 1,
summary: "您的快递已签收, 签收人在【菜鸟的济南长清创新谷Z1-1店】领取。如有疑问请电联:13325111116, 投诉电话:9519666, 您的快递已经妥投。风里来雨里去, 只为客官您满意。上有老下有小, 赏个好评好不好?【请在评价快递员处帮忙点亮五颗星星哦~】",
title: "您的订单已签收",
}, {
addtime: 1597480222,
id: 24,
is_read: "0",
kd_time: "2020-08-15 15:11",
member_id: 46,
order_sn: "3000000000051701",
picture: "https://dmmall.sdbairui.com/uploads/home/store/goods/1/1_2017092121492327671.jpg",
status: 1,
summary: "[十里河营业部]在 北京市 已签收,他人代收:桌上,投递员:王树伟,电话:18519362206",
title: "您的订单已签收",
}],
};
},
onLoad() {
this.informationList();
},
methods: {
titletext() {},
informationList() {
this.$u.api.informationList({}).then((res) => {
if (res.errCode == 0) {
// this.list = res.data;
}
})
}
},
components: {
notice,
}
};
</script>
<style lang="scss" scoped>
page {
background-color: #ECECEC;
}
.sousuo {
height: 113rpx;
border: 1px #f00 solid;
}
</style>