v1.1.3: 修复了部分bug
This commit is contained in:
@@ -8,7 +8,6 @@ Page({
|
||||
isTyping: false,
|
||||
scrollToMessage: '',
|
||||
quickQuestions: [
|
||||
'怎么加入暖橙团队?',
|
||||
'陪诊服务的流程是什么?',
|
||||
'如何预约陪诊服务?',
|
||||
'陪诊服务收费标准?'
|
||||
@@ -27,9 +26,22 @@ Page({
|
||||
},
|
||||
|
||||
onShow() {
|
||||
this.getAiQuickQuestions()
|
||||
this.setData({ inputFocus: true })
|
||||
},
|
||||
|
||||
// 获取陪诊服务问题
|
||||
async getAiQuickQuestions() {
|
||||
try {
|
||||
const res = await API.resource.getAiQuickQuestions()
|
||||
if (res.code === 0) {
|
||||
this.setData({ quickQuestions: res.data.aiquick_questions })
|
||||
}
|
||||
} catch (err) {
|
||||
console.error('获取陪诊服务问题失败', err)
|
||||
}
|
||||
},
|
||||
|
||||
initSocketListeners() {
|
||||
const app = getApp()
|
||||
const socket = app.globalData.chatSocket
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"navigationBarTitleText": "陪诊记录详情",
|
||||
"navigationBarTitleText": "预约记录详情",
|
||||
"usingComponents": {},
|
||||
"enablePullDownRefresh": true,
|
||||
"backgroundTextStyle": "dark"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"navigationBarTitleText": "陪诊记录",
|
||||
"navigationBarTitleText": "预约记录",
|
||||
"usingComponents": {},
|
||||
"enablePullDownRefresh": true,
|
||||
"backgroundTextStyle": "dark"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTitleText": "优医优诊",
|
||||
"navigationBarTitleText": "暖橙陪诊",
|
||||
"usingComponents": {
|
||||
"t-icon": "tdesign-miniprogram/icon/icon"
|
||||
}
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
</view>
|
||||
<text class="app-name">暖橙陪诊</text>
|
||||
<text class="app-slogan">温暖陪伴,专业守护</text>
|
||||
<text class="version">版本号:V 0.1.0</text>
|
||||
</view>
|
||||
|
||||
<!-- 功能列表 -->
|
||||
|
||||
@@ -32,7 +32,7 @@ Page({
|
||||
}, {
|
||||
groupName: '陪诊',
|
||||
items: [{
|
||||
name: '陪诊记录',
|
||||
name: '预约记录',
|
||||
icon: 'assignment',
|
||||
bindtap: 'onTapEscortRecord'
|
||||
}]
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
</view>
|
||||
|
||||
<view class="footer-section">
|
||||
<text class="version">版本号:V 0.1.0</text>
|
||||
<text class="version">版本号:V 1.1.3</text>
|
||||
<text class="copyright">© 2026 北京奕华盛科技 版权所有</text>
|
||||
</view>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user