|
@@ -23,7 +23,7 @@
|
|
|
|
|
|
<div class="wrap">
|
|
|
<a-spin :spinning="spinning" tip="正在修改询盘分类">
|
|
|
- <p><span>咨询时间:</span>{{ record.recordCtime | filter_Null_format}}</p>
|
|
|
+ <p><span>咨询时间:</span>{{ record.recordCtime | filter_Null_format }}</p>
|
|
|
<p><span>公司:</span>{{ record.formCompany | filter_Null_format }}</p>
|
|
|
<p><span>姓名:</span>{{ record.contact | filter_Null_format}}</p>
|
|
|
<p><span>邮箱:</span><a :href="'mailto:'+record.fromEmail">{{ record.fromEmail | filter_Null_format}}</a></p>
|
|
@@ -184,13 +184,7 @@ export default {
|
|
|
},
|
|
|
|
|
|
filters: {
|
|
|
- filter_Null_format(value) {
|
|
|
- if(value === '' || value === null || value === undefined){
|
|
|
- return '--'
|
|
|
- }else{
|
|
|
- return value
|
|
|
- }
|
|
|
- }
|
|
|
+
|
|
|
},
|
|
|
|
|
|
mounted() {
|