最近业务调整
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="view-page" :style="{backgroundImage : `url('${ThemeData?.app_bg || baseBgUrl}')`}">
|
||||
<view class="view-page" :style="{backgroundImage: `url('${ThemeData ? ThemeData.app_bg : baseBgUrl }')`}">
|
||||
<!-- <headerHeight /> -->
|
||||
<navBar :style="{marginTop: `${statusBarHeight}${uni.getSystemInfoSync().platform === 'ios' ? 'px': 'dp'}`}" :navTitle="'帮助与反馈'" :emitBack="true" @backEvent="back">
|
||||
</navBar>
|
||||
@@ -20,7 +20,7 @@
|
||||
<view class="problem-view">
|
||||
<view class="problem-box" v-for="(item,index) in problemList" :key="index">
|
||||
<view class="box-title color-0 font-w500 font-32">
|
||||
{{!item.id ? item.title : `${typeData?.type_name}相关问题`}}
|
||||
{{!item.id ? item.title : `${typeData? typeData.type_name : ''}相关问题`}}
|
||||
</view>
|
||||
<view class="box-content" v-if="item.list && item.list.length !== 0">
|
||||
<template v-if="item.id">
|
||||
|
||||
Reference in New Issue
Block a user