添加未搜索到任何政策时页面提示和申报页面部分提示

This commit is contained in:
熊丽君
2021-11-10 17:14:54 +08:00
parent 2bc6429156
commit 6ce701646f
2 changed files with 23 additions and 5 deletions

View File

@ -51,6 +51,21 @@
</div>
</div>
</div>
<div v-show="JSON.stringify(list) == '{}'">
<p style="color: #333;">
抱歉没有找到您查询的<span style="color:red">{{
$route.query.val
}}</span
>信息
</p>
<ol style="padding:0;color:#666;line-height: 2;">
<td>建议</td>
<dd>请在输入框填写关键词搜索</dd>
<dd>请检查输入字词有无错误</dd>
<dd>请尝试其他的查询词</dd>
<dd>请改用较常见的字词</dd>
</ol>
</div>
</div>
<footerPage />
<!-- <popup

View File

@ -415,9 +415,12 @@
color: formA.score >= 71 ? 'green' : 'red'
}"
>{{ formA.score }}</span
>{{
formA.score >= 71 ? '' : '不'
}}符合高企认定条件此评分为平台智能估算分仅供参考实际评分以政府实际打分为准
>{{ formA.badSeason.length ? '您还有以上门槛要求未通过,' : ''
}}{{
formA.score >= 71 && !formA.badSeason.length ? '' : '不'
}}符合高企认定条件此评分为平台智能估算分<span style="color:red"
>仅供参考</span
>实际评分以政府实际打分为准
</p>
<ul style="font-size: 16px;line-height: 1.5">
<li>
@ -587,7 +590,7 @@ export default {
{
type: 'array',
required: true,
message: '请至少选择一项组织管理水平',
message: '请至少选择一项',
trigger: 'change'
}
]
@ -638,7 +641,7 @@ export default {
const twoYear = 1000 * 60 * 60 * 24 * 365 * 2; // 两年时间戳
const threeYear = 1000 * 60 * 60 * 24 * 365 * 3; // 三年时间戳
if (difference < oneYear) {
this.str = '成立时间未满一年';
this.str = '成立时间未满一年,不符合高企申报条件';
this.strShow = 1;
this.tableData = [];
} else if (difference >= oneYear && difference < twoYear) {