You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
411 B
29 lines
411 B
3 years ago
|
<template>
|
||
|
<view>
|
||
|
<uni-section title="邀请员工" type="line">
|
||
|
<uni-list-item :show-extra-icon="true" showArrow :extra-icon="extraIcon" title="二维码邀请" />
|
||
|
</uni-section>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
extraIcon: {
|
||
|
color: '#007eff',
|
||
|
size: '22',
|
||
|
type: 'icon-qrcode'
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
|
||
|
</style>
|