sylte:flx

This commit is contained in:
2025-01-03 18:48:11 +08:00
parent bec8d97242
commit 10e2126f71
4 changed files with 51 additions and 23 deletions
+10 -10
View File
@@ -20,15 +20,15 @@
<!-- 联系客服 -->
<view class="contact-card">
<view class="contact-title">联系客服</view>
<view class="contact-title">{{ HELP_CONTENT.CONTACT.TITLE }}</view>
<view class="contact-content">
<view class="contact-item">
<text class="label">客服电话</text>
<text class="value" @click="makePhoneCall">{{ contactInfo.phone }}</text>
<text class="label">{{ HELP_CONTENT.CONTACT.PHONE.LABEL }}</text>
<text class="value" @click="makePhoneCall">{{ HELP_CONTENT.CONTACT.PHONE.VALUE }}</text>
</view>
<view class="contact-item">
<text class="label">服务时间</text>
<text class="value">{{ contactInfo.serviceTime }}</text>
<text class="label">{{ HELP_CONTENT.CONTACT.SERVICE_TIME.LABEL }}</text>
<text class="value">{{ HELP_CONTENT.CONTACT.SERVICE_TIME.VALUE }}</text>
</view>
</view>
</view>
@@ -36,16 +36,16 @@
</template>
<script>
import { helpConfig } from '@/config/help'
import { HELP_CONTENT } from '@/config/constants/help'
export default {
data() {
return {
faqList: helpConfig.faqList.map(item => ({
HELP_CONTENT,
faqList: HELP_CONTENT.FAQ_LIST.map(item => ({
...item,
isOpen: false
})),
contactInfo: helpConfig.contactInfo
}))
}
},
methods: {
@@ -54,7 +54,7 @@ export default {
},
makePhoneCall() {
uni.makePhoneCall({
phoneNumber: this.contactInfo.phone
phoneNumber: HELP_CONTENT.CONTACT.PHONE.VALUE
})
}
}
+1 -1
View File
@@ -65,7 +65,7 @@
<style lang="scss" scoped>
.container {
min-height: 100vh;
height: 87.5vh;
background: #f8f8f8;
padding-bottom: 40rpx;
+1 -12
View File
@@ -36,17 +36,6 @@
<view class="arrow"></view>
</view>
<!-- 押金 -->
<view class="function-item" @click="navigateTo('/pages/deposit/index')">
<view class="item-left">
<view class="icon-wrap deposit">
<view class="icon-placeholder"></view>
</view>
<text class="title">押金管理</text>
</view>
<view class="arrow"></view>
</view>
<!-- 投诉建议 -->
<view class="function-item" @click="navigateTo('/pages/feedback/index')">
<view class="item-left">
@@ -99,7 +88,7 @@ export default {
<style lang="scss" scoped>
.my-container {
min-height: 100vh;
min-height: 87.5vh;
background: #f8f8f8;
padding-bottom: 40rpx;