Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
@@ -144,7 +144,7 @@ export default {
|
|||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
value (val) {
|
value (val) {
|
||||||
this.tagList = val !== '' && val !== null ? val.split(',') : []
|
this.tagList = val !== '' && val !== null && val !== undefined? val.split(',') : []
|
||||||
// 把日期的时分秒去掉
|
// 把日期的时分秒去掉
|
||||||
this.tagList=this.tagList.map((item)=>item.substring(0,10))
|
this.tagList=this.tagList.map((item)=>item.substring(0,10))
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -266,10 +266,9 @@
|
|||||||
<p class="half"><label style=" margin-right: 150px;">发布日期</label><span>{{
|
<p class="half"><label style=" margin-right: 150px;">发布日期</label><span>{{
|
||||||
sarStandardsInfoEO.issueTime || '-'
|
sarStandardsInfoEO.issueTime || '-'
|
||||||
}}</span></p>
|
}}</span></p>
|
||||||
<!-- <p class="half"><label style=" margin-right: 150px;">标准性质</label><span>{{-->
|
<p class="half"><label style=" margin-right: 150px;">标准性质</label><span>{{
|
||||||
<!-- standMap[sarStandardsInfoEO.standNature] || '-'-->
|
standMap[sarStandardsInfoEO.standNature] || '-'
|
||||||
<!-- }}</span></p>-->
|
}}</span></p>
|
||||||
|
|
||||||
<p class="half" v-if="saveStandType === 'INLAND_STAND'"><label
|
<p class="half" v-if="saveStandType === 'INLAND_STAND'"><label
|
||||||
style=" margin-right: 150px;">标准体系</label><span>{{
|
style=" margin-right: 150px;">标准体系</label><span>{{
|
||||||
sarStandardsInfoEO.standSystem || '-'
|
sarStandardsInfoEO.standSystem || '-'
|
||||||
|
|||||||
@@ -184,15 +184,15 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="applyType" label="适用车型" align="center">
|
<el-table-column prop="applyType" label="适用车型" align="center">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="操作" width="100" align="center" v-if="isShowBtn" fixed="right">
|
<!-- <el-table-column label="操作" width="100" align="center" v-if="isShowBtn" fixed="right">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button
|
<el-button
|
||||||
size="mini"
|
size="mini"
|
||||||
type="danger"
|
type="danger"
|
||||||
@click="cancelWarning(scope.$index, scope.row)">取消预警
|
@click="cancelWarning(scope.$index, scope.row)">取消预警
|
||||||
</el-button>
|
</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>-->
|
||||||
</el-table>
|
</el-table>
|
||||||
<pagination
|
<pagination
|
||||||
style="position: static;"
|
style="position: static;"
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
+4
-4
@@ -4,7 +4,7 @@
|
|||||||
<el-form-item
|
<el-form-item
|
||||||
:label="config.attrName"
|
:label="config.attrName"
|
||||||
:prop="config.attrField"
|
:prop="config.attrField"
|
||||||
label-width="150px"
|
label-width="180px"
|
||||||
class="add-form-item"
|
class="add-form-item"
|
||||||
:class="{'form-item-disabled': disabled}"
|
:class="{'form-item-disabled': disabled}"
|
||||||
>
|
>
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
v-show="false"
|
v-show="false"
|
||||||
:value="value"
|
:value="value"
|
||||||
:placeholder="placeholder"
|
:placeholder="placeholder"
|
||||||
clearable
|
:disabled="disabled"
|
||||||
></el-input>
|
></el-input>
|
||||||
<div class="date-picker-group">
|
<div class="date-picker-group">
|
||||||
<template v-for="(tag, index) in tagList">
|
<template v-for="(tag, index) in tagList">
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
<div class="tag-wrap" v-if="tagAnimateList.includes(tag)" :key="index">
|
<div class="tag-wrap" v-if="tagAnimateList.includes(tag)" :key="index">
|
||||||
<el-tag
|
<el-tag
|
||||||
size="small"
|
size="small"
|
||||||
closable
|
:closable="!disabled"
|
||||||
@close="handleRemoveTag(index)">{{ tag }}</el-tag>
|
@close="handleRemoveTag(index)">{{ tag }}</el-tag>
|
||||||
</div>
|
</div>
|
||||||
</transition>
|
</transition>
|
||||||
@@ -122,7 +122,7 @@ export default {
|
|||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
value (val) {
|
value (val) {
|
||||||
this.tagList = val !== '' && val !== null ? val.split(',') : []
|
this.tagList = val !== '' && val !== null && val !== undefined ? val.split(',') : []
|
||||||
},
|
},
|
||||||
tagList: {
|
tagList: {
|
||||||
handler (val) {
|
handler (val) {
|
||||||
|
|||||||
Reference in New Issue
Block a user