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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< template >
< div class = "rightContainer" >
< a -breadcrumb class = "newBreadcrumb mt0 mb16" >
< a -breadcrumb -item href >
< router -link :to ="{name:'merchantBack'}" >
< a -icon type = "home" / >
< / r o u t e r - l i n k >
< / a - b r e a d c r u m b - i t e m >
< a -breadcrumb -item > 佣金配置 < / a - b r e a d c r u m b - i t e m >
< / a - b r e a d c r u m b >
< 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" >
. rightContainer {
padding : 16 px ;
}
< / style >