deming/pageD/notice/notice.vue

67 lines
1.7 KiB
Vue
Raw Normal View History

2020-06-11 00:43:51 +00:00
<template>
<view>
<!-- 公告咨询 -->
2020-08-06 12:42:03 +00:00
<notice :list="list"></notice>
2020-06-11 00:43:51 +00:00
</view>
</template>
<script>
2020-08-18 03:06:28 +00:00
import notice from "@/components/informations/notice/notice"
2020-06-11 00:43:51 +00:00
export default {
data() {
return {
2020-08-18 03:06:28 +00:00
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: "您的订单已签收",
}],
2020-06-11 00:43:51 +00:00
};
},
2020-08-18 03:06:28 +00:00
onLoad() {
2020-08-06 12:42:03 +00:00
this.informationList();
2020-07-09 08:35:23 +00:00
},
2020-06-11 00:43:51 +00:00
methods: {
2020-08-18 03:06:28 +00:00
titletext() {},
informationList() {
this.$u.api.informationList({}).then((res) => {
if (res.errCode == 0) {
// this.list = res.data;
}
2020-07-09 08:35:23 +00:00
})
2020-06-11 00:43:51 +00:00
}
},
2020-08-18 03:06:28 +00:00
components: {
2020-06-11 00:43:51 +00:00
notice,
}
};
</script>
<style lang="scss" scoped>
2020-08-18 03:06:28 +00:00
page {
background-color: #ECECEC;
}
2020-06-11 00:43:51 +00:00
.sousuo {
height: 113rpx;
border: 1px #f00 solid;
}
</style>