|
@@ -18,10 +18,7 @@
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-form-item :prop="'params.' + scope.$index + '.' + col.prop" :rules="paramsForm.validateRules[col.prop]">
|
|
<el-form-item :prop="'params.' + scope.$index + '.' + col.prop" :rules="paramsForm.validateRules[col.prop]">
|
|
<template v-if="col.prop === 'comparisonOperator' || col.inputType[scope.$index] === 'select'">
|
|
<template v-if="col.prop === 'comparisonOperator' || col.inputType[scope.$index] === 'select'">
|
|
- <el-select v-model="scope.row[col.prop]" placeholder="请选择" :disabled="
|
|
|
|
- (scope.$index < 2 && col.prop === 'comparisonOperator') ||
|
|
|
|
- (col.prop === 'paramValue' && paramsForm.disabled[scope.$index])
|
|
|
|
- " @change="
|
|
|
|
|
|
+ <el-select v-model="scope.row[col.prop]" placeholder="请选择" @change="
|
|
value => {
|
|
value => {
|
|
selectChangeHandler(value, scope.$index, index)
|
|
selectChangeHandler(value, scope.$index, index)
|
|
}
|
|
}
|
|
@@ -30,10 +27,7 @@
|
|
</el-select>
|
|
</el-select>
|
|
</template>
|
|
</template>
|
|
<template v-else-if="col.inputType === 'select'">
|
|
<template v-else-if="col.inputType === 'select'">
|
|
- <el-select v-model="scope.row[col.prop]" placeholder="请选择" :disabled="
|
|
|
|
- scope.$index < 2 &&
|
|
|
|
- ['leftBrackets', 'paramKey', 'rightBrackets', 'connector'].includes(col.prop)
|
|
|
|
- " @change="
|
|
|
|
|
|
+ <el-select v-model="scope.row[col.prop]" placeholder="请选择" @change="
|
|
value => {
|
|
value => {
|
|
selectChangeHandler(value, scope.$index, index)
|
|
selectChangeHandler(value, scope.$index, index)
|
|
}
|
|
}
|
|
@@ -62,10 +56,9 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="操作" width="80" align="center">
|
|
<el-table-column label="操作" width="80" align="center">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <el-popconfirm v-if="scope.$index > 1" title="是否要删除这一行?" @confirm="deleteParam(scope.$index)">
|
|
|
|
|
|
+ <el-popconfirm title="是否要删除这一行?" @confirm="deleteParam(scope.$index)">
|
|
<span slot="reference" class="clickable-delete">删除</span>
|
|
<span slot="reference" class="clickable-delete">删除</span>
|
|
</el-popconfirm>
|
|
</el-popconfirm>
|
|
- <span v-else>固定</span>
|
|
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
@@ -125,6 +118,12 @@ const comparisonOperatorOptions = [
|
|
export default {
|
|
export default {
|
|
name: 'AdvancedNew',
|
|
name: 'AdvancedNew',
|
|
components: { Search, SimpleTable, Dialog },
|
|
components: { Search, SimpleTable, Dialog },
|
|
|
|
+ props: {
|
|
|
|
+ tableColMunt: {
|
|
|
|
+ type: Array,
|
|
|
|
+ default: () => []
|
|
|
|
+ }
|
|
|
|
+ },
|
|
data () {
|
|
data () {
|
|
return {
|
|
return {
|
|
queryString: '',
|
|
queryString: '',
|
|
@@ -140,24 +139,7 @@ export default {
|
|
tableData: [],
|
|
tableData: [],
|
|
dialogFlag: false,
|
|
dialogFlag: false,
|
|
paramsForm: {
|
|
paramsForm: {
|
|
- params: [
|
|
|
|
- {
|
|
|
|
- leftBrackets: '',
|
|
|
|
- paramKey: 'flightDate',
|
|
|
|
- comparisonOperator: '>=',
|
|
|
|
- paramValue: parseTime(new Date(), '{y}-{m}-{d}'),
|
|
|
|
- rightBrackets: '',
|
|
|
|
- connector: 'and'
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- leftBrackets: '',
|
|
|
|
- paramKey: 'flightDate',
|
|
|
|
- comparisonOperator: '<=',
|
|
|
|
- paramValue: parseTime(new Date(), '{y}-{m}-{d}'),
|
|
|
|
- rightBrackets: '',
|
|
|
|
- connector: 'and'
|
|
|
|
- }
|
|
|
|
- ],
|
|
|
|
|
|
+ params: [],
|
|
validateRules: {
|
|
validateRules: {
|
|
paramKey: [{ required: true, message: '请选择项', trigger: ['change', ['change', 'blur']] }],
|
|
paramKey: [{ required: true, message: '请选择项', trigger: ['change', ['change', 'blur']] }],
|
|
paramValue: [{ required: true, message: '请选择或输入值', trigger: ['change', 'blur'] }]
|
|
paramValue: [{ required: true, message: '请选择或输入值', trigger: ['change', 'blur'] }]
|
|
@@ -252,13 +234,20 @@ export default {
|
|
// },
|
|
// },
|
|
tableCols: {
|
|
tableCols: {
|
|
handler (arr) {
|
|
handler (arr) {
|
|
- this.getColumnSet(arr)
|
|
|
|
|
|
+ console.log(arr)
|
|
|
|
+ // this.getColumnSet(arr)
|
|
},
|
|
},
|
|
deep: true
|
|
deep: true
|
|
- }
|
|
|
|
|
|
+ },
|
|
},
|
|
},
|
|
mounted () {
|
|
mounted () {
|
|
- this.queryTableData()
|
|
|
|
|
|
+ this.getColumnSet(this.tableColMunt)
|
|
|
|
+ // const datas = this.tableColMunt
|
|
|
|
+ // datas.forEach(item => {
|
|
|
|
+ // item.label = item.columnLabel
|
|
|
|
+ // item.value = item.columnName
|
|
|
|
+ // })
|
|
|
|
+ // this.paramsTableCols[1].options = datas
|
|
},
|
|
},
|
|
deactivated () {
|
|
deactivated () {
|
|
this.loading = false
|
|
this.loading = false
|
|
@@ -336,6 +325,9 @@ export default {
|
|
dialogHide () {
|
|
dialogHide () {
|
|
this.$emit('dialogHide')
|
|
this.$emit('dialogHide')
|
|
},
|
|
},
|
|
|
|
+ sendColData () {
|
|
|
|
+ this.$emit('getColData', this.queryString)
|
|
|
|
+ },
|
|
addParamsHandler () {
|
|
addParamsHandler () {
|
|
this.paramsTableCols[3].inputType.push('text')
|
|
this.paramsTableCols[3].inputType.push('text')
|
|
this.paramsForm.params.push({
|
|
this.paramsForm.params.push({
|
|
@@ -349,7 +341,9 @@ export default {
|
|
},
|
|
},
|
|
selectChangeHandler (value, rowIndex, colIndex) {
|
|
selectChangeHandler (value, rowIndex, colIndex) {
|
|
if (colIndex === 1) {
|
|
if (colIndex === 1) {
|
|
|
|
+ const datas = this.tableColMunt.filter(item => item.columnName == value)
|
|
const { dataType, options } = this.columnSet[value]
|
|
const { dataType, options } = this.columnSet[value]
|
|
|
|
+ // const { dataType, options } = datas[0]
|
|
if (dataType === 'date') {
|
|
if (dataType === 'date') {
|
|
this.paramsTableCols[2].options[rowIndex] = comparisonOperatorOptions.slice(0, 5).reverse()
|
|
this.paramsTableCols[2].options[rowIndex] = comparisonOperatorOptions.slice(0, 5).reverse()
|
|
this.paramsTableCols[3].inputType[rowIndex] = 'date'
|
|
this.paramsTableCols[3].inputType[rowIndex] = 'date'
|
|
@@ -427,42 +421,25 @@ export default {
|
|
},
|
|
},
|
|
advancedQueryHandler (singleJump) {
|
|
advancedQueryHandler (singleJump) {
|
|
try {
|
|
try {
|
|
- if (this.dialogFlag) {
|
|
|
|
- this.$refs['paramsForm'].validate(valid => {
|
|
|
|
- if (!valid) {
|
|
|
|
- throw new Error()
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- }
|
|
|
|
- let bracketsDifference = 0
|
|
|
|
- const paramsRowNum = this.paramsForm.params.length
|
|
|
|
- const queryString = this.paramsForm.params.reduce(
|
|
|
|
- (preString, { leftBrackets, paramKey, comparisonOperator, paramValue, rightBrackets, connector }, index) => {
|
|
|
|
- bracketsDifference += leftBrackets.length - rightBrackets.length
|
|
|
|
- if (bracketsDifference < 0) {
|
|
|
|
- throw new Error('左右括号不匹配!')
|
|
|
|
- }
|
|
|
|
- preString += leftBrackets + paramKey + ` ${comparisonOperator} `
|
|
|
|
- if (!['is Null', 'is not Null'].includes(comparisonOperator)) {
|
|
|
|
- if (comparisonOperator === 'like') {
|
|
|
|
- preString += `\'%${paramValue}%\'`
|
|
|
|
- } else if (this.columnSet[paramKey].dataType === 'number') {
|
|
|
|
- preString += paramValue
|
|
|
|
- } else {
|
|
|
|
- preString += `\'${paramValue}\'`
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- preString += rightBrackets + (index < paramsRowNum - 1 ? ` ${connector} ` : '')
|
|
|
|
- return preString
|
|
|
|
- },
|
|
|
|
- ''
|
|
|
|
- )
|
|
|
|
- if (bracketsDifference !== 0) {
|
|
|
|
- throw new Error('左右括号不匹配!')
|
|
|
|
- }
|
|
|
|
|
|
+ this.$refs['paramsForm'].validate(valid => {
|
|
|
|
+ if (!valid) {
|
|
|
|
+ throw new Error()
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ const queryString = []
|
|
|
|
+ this.paramsForm.params.forEach(item => {
|
|
|
|
+ const obj = {
|
|
|
|
+ left: item['leftBrackets'],
|
|
|
|
+ column: item['paramKey'],
|
|
|
|
+ comparator: item['comparisonOperator'],
|
|
|
|
+ value: item['paramValue'],
|
|
|
|
+ right: item['rightBrackets'],
|
|
|
|
+ connector: item['connector']
|
|
|
|
+ }
|
|
|
|
+ queryString.push(obj)
|
|
|
|
+ })
|
|
this.queryString = queryString
|
|
this.queryString = queryString
|
|
- this.resetTable()
|
|
|
|
- this.queryTableData(singleJump)
|
|
|
|
|
|
+ this.sendColData()
|
|
this.dialogHide()
|
|
this.dialogHide()
|
|
} catch (error) {
|
|
} catch (error) {
|
|
error.message && this.$message.error(error.message)
|
|
error.message && this.$message.error(error.message)
|
|
@@ -483,7 +460,7 @@ export default {
|
|
async getColumnSet (columnSet) {
|
|
async getColumnSet (columnSet) {
|
|
const reflect = {}
|
|
const reflect = {}
|
|
columnSet.forEach(async column => {
|
|
columnSet.forEach(async column => {
|
|
- if (column.needSearch && !this.columnSet[column.columnName]) {
|
|
|
|
|
|
+ if (!this.columnSet[column.columnName]) {
|
|
this.columnSet[column.columnName] = column
|
|
this.columnSet[column.columnName] = column
|
|
if ((column.listqueryTemplateID ?? '') !== '' && !this.columnSet[column.columnName].options) {
|
|
if ((column.listqueryTemplateID ?? '') !== '' && !this.columnSet[column.columnName].options) {
|
|
if (reflect[column.listqueryTemplateID]) {
|
|
if (reflect[column.listqueryTemplateID]) {
|