标准清单 高级检索

This commit is contained in:
宋伟佳
2021-06-25 17:57:33 +08:00
parent a2acbe7ae6
commit b843b0d975
60 changed files with 572 additions and 698 deletions
@@ -117,7 +117,6 @@ export default {
},
mounted () {
this.resolveFormFieldListRules()
console.log(this.$dateFormat(1602518400000, 'yyyy-MM-dd hh:mm:ss'))
},
methods: {
/**
@@ -155,7 +154,6 @@ export default {
},
jiaoyan () {
this.$refs['sarStandardsInfoForm'].validate((valid) => {
console.log(valid)
})
}
}
@@ -57,7 +57,6 @@ export default {
handleChange (event) {
// const value = event.target.value
const value = event
console.log(value)
this.$emit('input', value)
}
}
@@ -204,7 +204,6 @@ export default {
handleChange (event) {
// const value = event.target.value
const value = event
console.log(value)
this.$emit('input', value)
},
selectLaws () {
@@ -303,7 +302,6 @@ export default {
},
// 点击查看
handlePreview (item) {
console.log('看看看看看看看看item', item)
let routeUrl = this.$router.resolve({
name: 'OtherBussStandardDetails',
params: {
@@ -207,7 +207,6 @@ export default {
handleChange (event) {
// const value = event.target.value
const value = event
console.log(value)
this.$emit('input', value)
if (value.length==1000){
return this.$message({
@@ -211,7 +211,6 @@ export default {
},
methods: {
dataSourceChange (val) {
console.log(val)
},
handleChange (event) {
// const value = event.target.value
@@ -93,7 +93,6 @@ export default {
// 匹配项来源
if (this.searchKey === '') {
this.filterOptions = this.options
console.log(this.options)
} else {
let result = []
// 用原始数据进行匹配
@@ -89,7 +89,6 @@ export default {
this.treeCheckNode = treeCheckNode
},
handleTreeDblClick (event, treeId, treeNode) {
console.log('event, treeId, treeNode', event, treeId, treeNode)
this.$emit('input', treeNode.id)
}
}
@@ -91,7 +91,6 @@ export default {
this.treeCheckNode = treeCheckNode
},
handleTreeDblClick (treeId, treeNode) {
console.log('event, treeId, treeNode', event, treeId, treeNode)
this.$emit('input', treeNode.id)
}
}
@@ -112,7 +112,6 @@ export default {
},
methods: {
handleTreeDblClick (treeId, treeNode) {
console.log(treeNode.id)
this.checkedName = treeNode.name
this.$emit('input', treeNode.id)
this.visible = false
@@ -130,8 +129,6 @@ export default {
return name
},
handleTreeDrawerConfirm () {
console.log(this.config.selVal)
console.log(this.treeCheckNode)
if (this.config.selVal === 'USERLIST') {
const checkedList = []
const checkedNameList = []
@@ -141,9 +138,7 @@ export default {
checkedNameList.push(item.name)
}
})
console.log(checkedNameList)
this.checkedName = checkedNameList.join(',')
console.log(this.checkedName)
this.$emit('input', checkedList.join(','))
} else {
const checkedList = []
@@ -157,7 +152,6 @@ export default {
}
})
this.checkedName = checkedNameList.join(',')
console.log(this.checkedName)
this.$emit('input', checkedList.join(','))
}
this.visible = false
@@ -179,11 +173,9 @@ export default {
},
watch: {
value (newVal) {
console.log(newVal)
this.checkedName = newVal || ''
},
checkedName (val) {
console.log(val)
this.$emit('update:value', val)
}
},