Files
taimed/pages/wumen/index.vue
liuyuan a26581fd81 提交
2025-06-10 17:52:06 +08:00

48 lines
774 B
Vue

<template>
<view class="content">
<z-nav-bar title="吴门医述" bgColor="#5188e5" fontColor="#fff"></z-nav-bar>
<z-navigation></z-navigation>
</view>
</template>
<script>
import $http from "@/config/requestConfig.js";
export default {
data() {
return {
list: [],
}
},
onLoad() {
uni.hideTabBar();
},
methods: {
//获取数据
getData() {
this.$http.request({
url: 'common/ragFlowApi/getChatAssistants',
method: "POST",
data: {},
header: {
"Content-Type": "application/json",
},
})
.then(res=> {
if (res.list&&res.list.length>0) {
}
});
}
},
}
</script>
<style lang="scss" scoped>
@import '@/static/mixin.scss';
.content{
height: 100%;
overflow: auto;
background-color: #fff;
}
</style>