|
@@ -27,15 +27,21 @@
|
|
|
<button
|
|
|
class="btnAn"
|
|
|
@click="dialogShow"
|
|
|
- >高级搜索</button>
|
|
|
+ >
|
|
|
+ 高级搜索
|
|
|
+ </button>
|
|
|
<button
|
|
|
class="btnAn"
|
|
|
@click="exportHandler('table', '高级查询结果')"
|
|
|
- >导出</button>
|
|
|
+ >
|
|
|
+ 导出
|
|
|
+ </button>
|
|
|
<button
|
|
|
class="btnAn"
|
|
|
@click="toOldAdvance"
|
|
|
- >切换</button>
|
|
|
+ >
|
|
|
+ 切换
|
|
|
+ </button>
|
|
|
<!-- <div
|
|
|
class="setting"
|
|
|
@click="show"
|
|
@@ -85,12 +91,14 @@
|
|
|
size="small"
|
|
|
plain
|
|
|
@click="addParamsHandler"
|
|
|
- >新增</el-button>
|
|
|
+ >新增</el-button
|
|
|
+ >
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
size="small"
|
|
|
@click="advancedQueryHandler(false)"
|
|
|
- >查询</el-button>
|
|
|
+ >查询</el-button
|
|
|
+ >
|
|
|
</div>
|
|
|
<el-form
|
|
|
ref="paramsForm"
|
|
@@ -127,8 +135,15 @@
|
|
|
<el-select
|
|
|
v-model="scope.row[col.prop]"
|
|
|
placeholder="请选择"
|
|
|
- :disabled="scope.$index < 2 && col.prop === 'comparisonOperator' || col.prop === 'paramValue' && paramsForm.disabled[scope.$index]"
|
|
|
- @change="value => { selectChangeHandler(value, scope.$index, index) }"
|
|
|
+ :disabled="
|
|
|
+ (scope.$index < 2 && col.prop === 'comparisonOperator') ||
|
|
|
+ (col.prop === 'paramValue' && paramsForm.disabled[scope.$index])
|
|
|
+ "
|
|
|
+ @change="
|
|
|
+ value => {
|
|
|
+ selectChangeHandler(value, scope.$index, index)
|
|
|
+ }
|
|
|
+ "
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="(option, index) in col.options[scope.$index]"
|
|
@@ -142,8 +157,15 @@
|
|
|
<el-select
|
|
|
v-model="scope.row[col.prop]"
|
|
|
placeholder="请选择"
|
|
|
- :disabled="scope.$index < 2 && ['leftBrackets', 'paramKey', 'rightBrackets', 'connector'].includes(col.prop)"
|
|
|
- @change="value => { selectChangeHandler(value, scope.$index, index) }"
|
|
|
+ :disabled="
|
|
|
+ scope.$index < 2 &&
|
|
|
+ ['leftBrackets', 'paramKey', 'rightBrackets', 'connector'].includes(col.prop)
|
|
|
+ "
|
|
|
+ @change="
|
|
|
+ value => {
|
|
|
+ selectChangeHandler(value, scope.$index, index)
|
|
|
+ }
|
|
|
+ "
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="(option, index) in col.options"
|
|
@@ -180,7 +202,11 @@
|
|
|
placeholder="请选择"
|
|
|
:clearable="false"
|
|
|
:picker-options="datePickerOptions(scope.$index, index)"
|
|
|
- @change="value => { dateChangeHandler(value, scope.$index, index) }"
|
|
|
+ @change="
|
|
|
+ value => {
|
|
|
+ dateChangeHandler(value, scope.$index, index)
|
|
|
+ }
|
|
|
+ "
|
|
|
/>
|
|
|
</template>
|
|
|
<template v-else-if="col.inputType[scope.$index] === 'datetime'">
|
|
@@ -210,7 +236,8 @@
|
|
|
<span
|
|
|
slot="reference"
|
|
|
class="clickable-delete"
|
|
|
- >删除</span>
|
|
|
+ >删除</span
|
|
|
+ >
|
|
|
</el-popconfirm>
|
|
|
<span v-else>固定</span>
|
|
|
</template>
|
|
@@ -693,7 +720,9 @@ export default {
|
|
|
return function ({ row, column, rowIndex, columnIndex }) {
|
|
|
const classes = []
|
|
|
if (
|
|
|
- ['flightNO', 'passengerName', 'bagSN', 'U_Device_ID', 'preFlightNO', 'transferFlightNO'].includes(column.property) &&
|
|
|
+ ['flightNO', 'passengerName', 'bagSN', 'U_Device_ID', 'preFlightNO', 'transferFlightNO'].includes(
|
|
|
+ column.property
|
|
|
+ ) &&
|
|
|
row[column.property] &&
|
|
|
row[column.property] !== 'FBULK'
|
|
|
) {
|
|
@@ -714,7 +743,9 @@ export default {
|
|
|
},
|
|
|
cellClickHandler(row, column, cell, event) {
|
|
|
if (
|
|
|
- ['flightNO', 'passengerName', 'bagSN', 'U_Device_ID', 'preFlightNO', 'transferFlightNO'].includes(column.property) &&
|
|
|
+ ['flightNO', 'passengerName', 'bagSN', 'U_Device_ID', 'preFlightNO', 'transferFlightNO'].includes(
|
|
|
+ column.property
|
|
|
+ ) &&
|
|
|
row[column.property] &&
|
|
|
row[column.property] !== 'FBULK'
|
|
|
) {
|