|
@@ -10,25 +10,25 @@
|
|
|
col.prop === 'comparisonOperator' ||
|
|
|
col.inputType[rowIndex] === 'select'
|
|
|
">
|
|
|
- <el-select filterable clearable size="small" v-model="row[col.prop]" placeholder="请选择" @change="
|
|
|
+ <el-select filterable clearable size="small" v-model="row[col.prop]" placeholder="请选择">
|
|
|
+ <el-option v-for="(option, i) in comparisons" :key="i" :value="option.value" :label="option.label" />
|
|
|
+ </el-select>
|
|
|
+ </template>
|
|
|
+ <template v-else-if="col.inputType === 'select'">
|
|
|
+ <el-select size="small" v-model="row[col.prop]" @change="
|
|
|
value => {
|
|
|
selectChangeHandler(value, rowIndex, colIndex)
|
|
|
}
|
|
|
- ">
|
|
|
- <el-option v-for="(option, i) in col.options[rowIndex]" :key="i" :value="option.value" :label="option.label" />
|
|
|
+ " :disabled="columnFlag" placeholder="请选择">
|
|
|
+ <el-option v-for="(option, i) in col.options" :key="i" :value="option.value" :label="option.label" />
|
|
|
</el-select>
|
|
|
</template>
|
|
|
- <template v-else-if="col.inputType === 'select'">
|
|
|
- <el-input v-model="row[col.prop]" size="small" placeholder="请输入" />
|
|
|
- </template>
|
|
|
<template v-else-if="
|
|
|
['varchar', 'text', 'longtext'].includes(
|
|
|
col.inputType[rowIndex]
|
|
|
)
|
|
|
">
|
|
|
- <el-input v-model="row[col.prop]" size="small" placeholder="请输入" :disabled="
|
|
|
- col.prop === 'paramValue' && paramsForm.disabled[rowIndex]
|
|
|
- " />
|
|
|
+ <el-input v-model="row[col.prop]" size="small" placeholder="请输入" />
|
|
|
</template>
|
|
|
<template v-else-if="col.inputType === 'connector'">
|
|
|
<div v-if="row.connector" class="clickable-toggle" @click="toggle(rowIndex)">
|
|
@@ -62,8 +62,6 @@
|
|
|
|
|
|
<script>
|
|
|
import { parseTime } from '@/utils/index'
|
|
|
-import { mapGetters } from 'vuex'
|
|
|
-import { Query } from "@/api/webApi"
|
|
|
const comparisonOperatorOptions = [
|
|
|
{
|
|
|
label: '小于',
|
|
@@ -90,6 +88,9 @@ const comparisonOperatorOptions = [
|
|
|
value: 'like',
|
|
|
},
|
|
|
]
|
|
|
+const comparisonListOptions = window.JS_DOWNLIST || []
|
|
|
+const comparisonLists = []
|
|
|
+if (comparisonListOptions.length) comparisonListOptions.map(item => comparisonLists.push({ label: item, value: item }))
|
|
|
export default {
|
|
|
name: 'AdvancedQueryForm',
|
|
|
props: {
|
|
@@ -138,7 +139,7 @@ export default {
|
|
|
prop: 'paramKey',
|
|
|
// label: '项',
|
|
|
inputType: 'select',
|
|
|
- options: [],
|
|
|
+ options: comparisonLists,
|
|
|
},
|
|
|
{
|
|
|
prop: 'comparisonOperator',
|
|
@@ -165,11 +166,10 @@ export default {
|
|
|
},
|
|
|
],
|
|
|
columnSet: {},
|
|
|
+ columnFlag: false,
|
|
|
+ comparisons: comparisonOperatorOptions
|
|
|
}
|
|
|
},
|
|
|
- computed: {
|
|
|
- ...mapGetters(['authMsg']),
|
|
|
- },
|
|
|
watch: {
|
|
|
'paramsForm.params': {
|
|
|
handler (params) {
|
|
@@ -235,14 +235,7 @@ export default {
|
|
|
methods: {
|
|
|
queryHandler () {
|
|
|
this.columnSet = {}
|
|
|
- this.paramsTableCols[0].options = []
|
|
|
- const colDatas = this.authMsg
|
|
|
- if (colDatas?.length) {
|
|
|
- // const columns = colDatas.filter(item => item.isfiltercolumn)
|
|
|
- const columns = colDatas.filter(item => item.isfiltercolumn)
|
|
|
- const datas = _.orderBy(columns, ['displaynumber'], ['asc', 'desc'])
|
|
|
- this.getColumnSet(datas)
|
|
|
- }
|
|
|
+ this.paramsTableCols[0].options = comparisonLists
|
|
|
if (!this.paramsForm.params.length) {
|
|
|
this.addParamsHandler()
|
|
|
}
|
|
@@ -304,65 +297,18 @@ export default {
|
|
|
this.$emit('getAdvancedQueryData', this.queryContent)
|
|
|
},
|
|
|
addParamsHandler () {
|
|
|
+ const len = this.paramsForm.params.length
|
|
|
this.paramsTableCols[2].inputType.push('text')
|
|
|
this.paramsForm.params.push({
|
|
|
- paramKey: '',
|
|
|
+ paramKey: len == 0 ? '' : this.paramsForm.params[0].paramKey,
|
|
|
comparisonOperator: '',
|
|
|
paramValue: '',
|
|
|
connector: '',
|
|
|
})
|
|
|
},
|
|
|
- async selectChangeHandler (value, rowIndex, colIndex) {
|
|
|
+ selectChangeHandler (value, rowIndex, colIndex) {
|
|
|
if (colIndex === 0) {
|
|
|
- // const datas = this.tableColMunt.filter(item => item.columnName == value)
|
|
|
- const { datatype, dropdownlistid, dropdownlistlabel, dropdownlist, defaultparameters } = this.columnSet[value]
|
|
|
- // const { dataType, options } = datas[0]
|
|
|
- // 下拉框发生改变清空之前的数据
|
|
|
- this.paramsForm.params[rowIndex].paramValue = ''
|
|
|
- if (datatype === 'date') {
|
|
|
- this.paramsTableCols[1].options[rowIndex] = comparisonOperatorOptions
|
|
|
- .slice(0, 5)
|
|
|
- .reverse()
|
|
|
- this.paramsTableCols[2].inputType[rowIndex] = 'date'
|
|
|
- } else if (datatype === 'datetime') {
|
|
|
- this.paramsTableCols[1].options[rowIndex] = comparisonOperatorOptions
|
|
|
- .slice(0, 5)
|
|
|
- .reverse()
|
|
|
- this.paramsTableCols[2].inputType[rowIndex] = 'datetime'
|
|
|
- } else if (dropdownlist || dropdownlist == 0) {
|
|
|
- const datacontent = defaultparameters ? { filter: this.formatDefault(defaultparameters) } : { filter: { 1: 1 } }
|
|
|
- const { code, returnData } = await Query({ serviceid: dropdownlist, datacontent, event: '0', page: 1, size: 9999 })
|
|
|
- if (code == 0 && returnData?.length) {
|
|
|
- returnData.map(item => {
|
|
|
- item.label = item[dropdownlistlabel],
|
|
|
- item.value = item[dropdownlistid]
|
|
|
- })
|
|
|
- }
|
|
|
- this.paramsTableCols[1].options[rowIndex] =
|
|
|
- comparisonOperatorOptions.slice(4, 5)
|
|
|
- this.paramsTableCols[2].inputType[rowIndex] = 'select'
|
|
|
- this.paramsTableCols[2].options[rowIndex] = returnData || []
|
|
|
- this.paramsForm.params[rowIndex].paramValue = ''
|
|
|
- } else if (datatype === 'number') {
|
|
|
- this.paramsTableCols[1].options[rowIndex] = comparisonOperatorOptions
|
|
|
- .slice(0, 5)
|
|
|
- .reverse()
|
|
|
- this.paramsTableCols[2].inputType[rowIndex] = 'number'
|
|
|
- this.paramsForm.params[rowIndex].paramValue = ''
|
|
|
- } else {
|
|
|
- this.paramsTableCols[1].options[rowIndex] =
|
|
|
- comparisonOperatorOptions.slice(4)
|
|
|
- this.paramsTableCols[2].inputType[rowIndex] = 'text'
|
|
|
- }
|
|
|
- this.paramsForm.params[rowIndex].comparisonOperator =
|
|
|
- this.paramsTableCols[1].options[rowIndex][0].value
|
|
|
- } else if (colIndex === 1) {
|
|
|
- if (['is Null', 'is not Null'].includes(value)) {
|
|
|
- this.paramsForm.params[rowIndex].paramValue = ' '
|
|
|
- this.paramsForm.disabled[rowIndex] = true
|
|
|
- } else {
|
|
|
- this.paramsForm.disabled[rowIndex] = false
|
|
|
- }
|
|
|
+ this.columnFlag = true
|
|
|
}
|
|
|
},
|
|
|
//格式化传递参数数据
|