36 lines
925 B
Vue
36 lines
925 B
Vue
<template>
|
|
<uni-nav-bar :title="title" statusBar="true" fixed="true" v-if="isLeftText"></uni-nav-bar>
|
|
<uni-nav-bar v-else @clickLeft="goBack" left-icon="back" leftIcon="arrowleft" :title="title" statusBar="true" fixed="true" :right-text="rithtText" @clickRight="handleAll"></uni-nav-bar>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue';
|
|
import { useStore } from "vuex";
|
|
// 获取父组件数据
|
|
const props = defineProps({
|
|
title: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
rithtText:{
|
|
type:String,
|
|
default:''
|
|
},
|
|
isLeftText:{
|
|
type:Boolean
|
|
}
|
|
});
|
|
// ------定义变量------
|
|
const emit = defineEmits(); //子组件向父组件事件传递
|
|
const store = useStore(); //vuex获取、储存数据
|
|
const users = store.state.user; //vuex获取、储存数据
|
|
const taskStatus = users.taskStatus;
|
|
// ------定义方法------
|
|
const goBack = () => {
|
|
emit('goBack');
|
|
};
|
|
const handleAll = ()=>{
|
|
emit('handleAll')
|
|
}
|
|
</script>
|