1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <template>
- <div id="native">
- <el-col class="swfl" :span="24">
- <el-image style="width:22px;height:22px;margin:0 5px -5px 0;" :src="src"></el-image>
- <span>个人中心</span>
- </el-col>
- <el-col :span="24">
- <el-menu default-active="1" class="el-menu-vertical-demo" @open="handleOpen" @close="handleClose" text-color="#215299" active-text-color="#215299">
- <el-menu-item index="1" v-for="(item, index) in nativeList" :key="index"
- ><span slot="title" @click="clickUrl(item.name)">{{ item.name }}</span></el-menu-item
- >
- </el-menu>
- </el-col>
- </div>
- </template>
- <script>
- export default {
- name: 'native',
- props: {
- nativeList: null,
- },
- components: {},
- data: () => ({
- src: require('@/assets/swfl.png'),
- }),
- created() {},
- computed: {},
- methods: {
- clickUrl(name) {
- this.$emit('onsave', { name });
- },
- handleOpen(key, keyPath) {
- console.log(key, keyPath);
- },
- handleClose(key, keyPath) {
- console.log(key, keyPath);
- },
- },
- };
- </script>
- <style lang="less" scoped>
- .swfl {
- height: 60px;
- line-height: 60px;
- background-color: #22529a;
- text-align: center;
- }
- .swfl span {
- font-size: 22px;
- color: #ffffff;
- }
- /deep/.el-menu-item {
- height: 60px;
- text-align: center;
- line-height: 60px;
- border-bottom: 1px dashed;
- font-size: 22px;
- }
- /deep/.el-menu-item:last-child {
- border-bottom: none;
- }
- </style>
|