Commit 2c188469 authored by zhengke's avatar zhengke

修改

parent 68e2827a
...@@ -593,6 +593,8 @@ ...@@ -593,6 +593,8 @@
"path":"activityList" //我的活动 "path":"activityList" //我的活动
},{ },{
"path":"zixunDetail" //咨询详情 "path":"zixunDetail" //咨询详情
},{
"path":"typeList" //类型
}] } }] }
], ],
"globalStyle": { "globalStyle": {
......
...@@ -92,7 +92,8 @@ ...@@ -92,7 +92,8 @@
msg:{ msg:{
pageIndex: 1, pageIndex: 1,
pageSize: 10, pageSize: 10,
Title:'' Title:'',
Type:1
}, },
pageCount: 1, pageCount: 1,
dataList:[], dataList:[],
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
.zixunDetail .zixunQuestion{ .zixunDetail .zixunQuestion{
min-height: 150px; min-height: 150px;
background-color: #F7F7F7; background-color: #F7F7F7;
padding:15px; padding:10px;
color:#111111; color:#111111;
line-height: 22px; line-height: 22px;
border-radius: 3px; border-radius: 3px;
...@@ -61,6 +61,18 @@ ...@@ -61,6 +61,18 @@
<view class="zixunQuestion"> <view class="zixunQuestion">
{{dataList.FatQuestion}} {{dataList.FatQuestion}}
</view> </view>
<template v-if="dataList.AskStatus==1">
<view class="ziDetailList">
<view class="ziproDeleft">回复状态</view>
<view class="ziproDeRight">{{dataList.AskStatusStr}}</view>
</view>
<view class="ziDetailList" style="border-bottom:0;">
<view class="ziproDeleft">回复内容</view>
</view>
<view class="zixunQuestion">
{{dataList.FatContent}}
</view>
</template>
</view> </view>
</template> </template>
......
...@@ -48,6 +48,10 @@ ...@@ -48,6 +48,10 @@
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
} }
.zixunStatus{
font-size: 13px;
color:#111111;
}
</style> </style>
<template> <template>
<view class="activityList" style="height:100vh;"> <view class="activityList" style="height:100vh;">
...@@ -57,7 +61,8 @@ ...@@ -57,7 +61,8 @@
<view class="activeList" v-for="(item,index) in dataList" :key="index" @click="goZixunDetail(item)"> <view class="activeList" v-for="(item,index) in dataList" :key="index" @click="goZixunDetail(item)">
<view class="activeTop"> <view class="activeTop">
<view class="zixunLeftTitle">{{item.FatQuestion}}</view> <view class="zixunLeftTitle">{{item.FatQuestion}}</view>
<view> <view style="display: flex;align-items: center;">
<text class="zixunStatus">{{item.AskStatusStr}}</text>
<image style="width:20px;height:20px;" src="https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/arrow_right.png" <image style="width:20px;height:20px;" src="https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/arrow_right.png"
mode=""></image> mode=""></image>
</view> </view>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment