70 lines
2.1 KiB
Plaintext
70 lines
2.1 KiB
Plaintext
<!-- 外部情报 > 情报详情 -->
|
||
<script setup lang="ts">
|
||
import AppNewsBox from '@/components/AppNewsBox.vue'
|
||
|
||
const props = defineProps({
|
||
dataList: Array,
|
||
})
|
||
</script>
|
||
|
||
<template>
|
||
<div class="news-wrapper" v-if="dataList">
|
||
<h1 class="title">
|
||
<AppNewsBox labelText="采购信息留言" text="供应商留言" class="text-35px"/>
|
||
</h1>
|
||
<h2 class="sub-title" >
|
||
<span>{{dataList.number}}</span>
|
||
</h2>
|
||
<h2 class="sub-title ">1.贵司短期或中长期是否有国内外建厂(事务所)计划?</h2>
|
||
<h2 class="sub-title !text-#247bd7" v-if="dataList.faqList&&dataList.faqList.length>0" >
|
||
<span>A:{{dataList.faqList[0].replyTxt}}</span>
|
||
</h2>
|
||
<h2 class="sub-title ">2.贵司近期是否有开发新产品/新领域的项目?(若有,请进行简单的介绍。)</h2>
|
||
<h2 class="sub-title !text-#247bd7" v-if="dataList.faqList&&dataList.faqList.length>1" >
|
||
<span>A:{{dataList.faqList[1].replyTxt}}</span>
|
||
</h2>
|
||
<h2 class="sub-title ">3.目前在使用大金的线上化系统中,是否有不便、希望改善之处?(含HOMEPAGE、明道云线上调查表等)</h2>
|
||
<h2 class="sub-title !text-#247bd7" v-if="dataList.faqList&&dataList.faqList.length>2" >
|
||
<span>A:{{dataList.faqList[2].replyTxt}}</span>
|
||
</h2>
|
||
<h2 class="sub-title ">4.在与我们的合作中,是否有其他愿景或建议?</h2>
|
||
<h2 class="sub-title !text-#247bd7" v-if="dataList.faqList&&dataList.faqList.length>3" >
|
||
<span>A:{{dataList.faqList[3].replyTxt}}</span>
|
||
</h2>
|
||
|
||
</div>
|
||
</template>
|
||
|
||
<style scoped lang="less">
|
||
.news-wrapper {
|
||
.title {
|
||
font-size: 22px;
|
||
text-align: center;
|
||
margin-bottom: 50px;
|
||
}
|
||
.sub-title {
|
||
text-align: left;
|
||
font-size: 20px;
|
||
color: #152242;
|
||
margin-top: 18px;
|
||
}
|
||
}
|
||
.container {
|
||
// column-count: 2;
|
||
column-gap: 34px;
|
||
line-height: 2;
|
||
margin-top: 32px;
|
||
// max-width: 1062px;
|
||
color: black;
|
||
:deep(img) {
|
||
// width: 100%;
|
||
// max-width: 500px;
|
||
border-radius: 6px;
|
||
margin-bottom: 24px;
|
||
}
|
||
:deep(p) {
|
||
text-indent: 2em;
|
||
}
|
||
}
|
||
</style>
|