You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bocai_supplyChain_pc/src/components/merchantManagement/brokerageConfig.vue

60 lines
1.4 KiB
Vue

2 years ago
<template>
<div class>
<a-breadcrumb class="newBreadcrumb mt0 mb16">
<a-breadcrumb-item href>
<router-link :to="{name:'merchantBack'}">
<a-icon type="home" />
</router-link>
</a-breadcrumb-item>
<a-breadcrumb-item>佣金配置</a-breadcrumb-item>
</a-breadcrumb>
<div class="bodyContainer">
<div class="setMiddle tac setH">
<svg class="svg_icon f320" aria-hidden="true">
<use xlink:href="#icon-yemianjianshezhong" />
</svg>
<div class="f14 c9" style="transform:translateY(-30px)">页面正在建设中</div>
</div>
</div>
</div>
</template>
<script>
export default {
// 组件名称
name: '',
// 局部注册的组件
components: {},
// 组件参数 接收来自父组件的数据
props: {},
// 组件状态值
data () {
return {
}
},
// 计算属性
computed: {},
// 侦听器
watch: {},
// 生命周期钩子 注:没用到的钩子请自行删除
/**
* 组件实例创建完成属性已绑定但DOM还未生成$ el属性还不存在
*/
created () {
this.$emit('setTitle', '佣金配置')
},
/**
* el 被新创建的 vm.el 替换并挂载到实例上去之后调用该钩子
* 如果 root 实例挂载了一个文档内元素 mounted 被调用时 vm.el 也在文档内
*/
mounted () {},
// 组件方法
methods: {}
}
</script>
<style scoped lang="less">
</style>