123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- <template>
- <div class="content">
- <view class="listBox">
- <view v-for="(problemItem, problemIndex) in problemsList" :key="problemIndex" class="itemBox">
- <view class="itemAsk">
- <i>问</i><span>{{ problemItem.problem }}</span>
- </view>
- <view v-if="problemItem.answers.length > 0">
- <view v-for="(answerItem, answerIndex) in (problemItem.answers.slice(0, 1))" :key="answerIndex" class="answer">
- <view class="answerBox">
- <i>答</i><span>{{ answerItem.answer }}</span>
- </view>
- <view
- v-if="problemItem.ifAnswer === 1" class="answerBtn"
- @click="go(`/another-tf/another-serve/qADetail/index?productId=${productInfo.productId}&problemId=${problemItem.problemId}`)"
- >
- 立即回答
- </view>
- </view>
- </view>
- <view v-else>
- <view class="answer">
- <view class="answerBox">
- <i>答</i><span>暂无答复</span>
- </view>
- <view
- v-if="problemItem.ifAnswer === 1" class="answerBtn"
- @click="go(`/another-tf/another-serve/qADetail/index?productId=${productInfo.productId}&problemId=${problemItem.problemId}`)"
- >
- 立即回答
- </view>
- </view>
- </view>
- <view
- v-if="problemItem.answers.length > 1" class="seeAll"
- @click="go(`/another-tf/another-serve/qADetail/index?productId=${productInfo.productId}&problemId=${problemItem.problemId}`)"
- >
- 查看全部答复
- </view>
- </view>
- </view>
- </div>
- </template>
- <script>
- export default {
- name: 'QuestionsAndAnswersList',
- props: {
- problemsList: {
- type: Array,
- default: () => []
- },
- productInfo: {
- type: Object,
- default: () => ({})
- }
- },
- data() {
- return {}
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .listBox {
- padding: 0 30upx;
- .itemBox {
- padding-bottom: 30upx;
- border-bottom: 1upx solid #EEEEEE;
- margin-bottom: 30upx;
- &:last-child {
- border-bottom: none;
- }
- .itemAsk {
- display: flex;
- align-items: center;
- margin-bottom: 42upx;
- i {
- font-style: normal;
- width: 38upx;
- height: 38upx;
- line-height: 38upx;
- background: #C5AA7B;
- display: block;
- margin-right: 30upx;
- font-size: 24upx;
- color: #FFFFFF;
- text-align: center;
- }
- span {
- font-size: 28upx;
- color: #333333;
- }
- }
- .answer {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 30upx;
- .answerBox {
- display: flex;
- align-items: center;
- i {
- font-style: normal;
- width: 38upx;
- height: 38upx;
- line-height: 38upx;
- background: #C5AA7B;
- display: block;
- text-align: center;
- margin-right: 30upx;
- font-size: 24rpx;
- color: #FFFFFF;
- }
- span {
- font-size: 26upx;
- color: #666666;
- }
- }
- .answerBtn {
- width: 130upx;
- height: 50upx;
- line-height: 50upx;
- border: #333333 2rpx solid;
- text-align: center;
- color: #333;
- font-size: 24upx;
- }
- }
- .seeAll {
- margin-left: 68upx;
- font-size: 28upx;
- color: #C5AA7B;
- }
- }
- }
- </style>
|