<template>
<div class="customer">
<!-- 客户信息 -->
<router-view></router-view>
</div>
</template>
<script>
export default {
data() {
return {};
},
computed: {},
watch: {},
methods: {
openNotificationWithIcon(type) {
this.$msg[type]({
message: "Notification Title",
description:
"This is the content of the notification. This is the content of the notification. This is the content of the notification.",
});
},
},
mounted() {
// console.log("this.apis", this.$apis.getUserInfo(), this.$lodash);
},
};
</script>
<style lang="less" scoped>
.customer {
.pa(30, 36, 50, 39);
background-color: #fff;
}
</style>
-
WindyWTH authored8dda0ede