48 lines
774 B
Vue
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> |