企微员工积分完成

This commit is contained in:
aixianling
2022-05-19 17:28:53 +08:00
parent 2a1ffea9c3
commit 27d46df2a7
6 changed files with 336 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
<template>
<section class="AiTabPanes">
<section class="AiTabPanes" :style="{background}">
<div class="item" :class="{active:value==i}" v-for="(item, i) in tabs" :key="i"
@click="handleClick(item,i)">{{ item }}
</div>
@@ -18,7 +18,8 @@ export default {
},
props: {
value: {default: ""},
tabs: {default: () => []}
tabs: {default: () => []},
background: {default: ""}
},
methods: {
handleClick(item, index) {