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.
47 lines
840 B
Vue
47 lines
840 B
Vue
<template>
|
|
<uni-nav-bar left-icon="left" title="AI对话" @clickLeft="clickLeft" @clickRight="addNewChat">
|
|
<template v-slot:left>
|
|
<view class="hamburger">
|
|
<view class="line" />
|
|
<view class="line" />
|
|
<view class="line" />
|
|
</view>
|
|
</template>
|
|
<template v-slot:right>
|
|
<view class="nav-right">
|
|
<image
|
|
src="@/static/MapsUgcSharp.png"
|
|
mode="widthFix"
|
|
style="width: 18px"
|
|
></image>
|
|
</view>
|
|
</template>
|
|
</uni-nav-bar>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
methods : {
|
|
clickLeft(){
|
|
this.$emit('clickLeft')
|
|
},
|
|
addNewChat(){
|
|
this.$emit('resetMessage')
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.hamburger {
|
|
width: 18px;
|
|
}
|
|
|
|
.hamburger .line {
|
|
height: 2px;
|
|
background: #333;
|
|
margin: 3px 0;
|
|
border-radius: 2px;
|
|
}
|
|
</style>
|