|
@@ -436,15 +436,28 @@
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
<el-table-column
|
|
|
|
|
+ prop="whereName"
|
|
|
|
|
+ label="条件名"
|
|
|
|
|
+ align="center"
|
|
|
|
|
+ >
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="scope.row.whereName"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ placeholder="请输入条件名"
|
|
|
|
|
+ ></el-input>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column
|
|
|
prop="whereValue"
|
|
prop="whereValue"
|
|
|
- label="条件"
|
|
|
|
|
|
|
+ label="条件值"
|
|
|
align="center"
|
|
align="center"
|
|
|
>
|
|
>
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<el-input
|
|
<el-input
|
|
|
v-model="scope.row.whereValue"
|
|
v-model="scope.row.whereValue"
|
|
|
clearable
|
|
clearable
|
|
|
- placeholder="请输入条件"
|
|
|
|
|
|
|
+ placeholder="请输入条件值"
|
|
|
></el-input>
|
|
></el-input>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|