Merge branch 'develop' into FOTON

This commit is contained in:
Superman_Main
2021-11-28 17:11:24 +08:00
14 changed files with 798 additions and 161 deletions
@@ -14,7 +14,7 @@
:value-format="valueFormat"
format="yyyy-MM-dd"
:value="value"
type="dates"
type="date"
:editable="true"
:disabled="disabled"
:placeholder="placeholder"
@@ -74,7 +74,4 @@ export default {
</script>
<style scoped>
/deep/ .el-input__inner {
padding-left: 30px;
}
</style>
@@ -145,6 +145,9 @@ export default {
watch: {
value (val) {
this.tagList = val !== '' && val !== null ? val.split(',') : []
this.tagList=this.tagList.map((item)=>item.substring(0,10))
console.log("this.tagList",this.tagList);
},
tagList: {
handler (val) {