doway-coms 2.10.50 → 2.10.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -173,7 +173,7 @@
|
|
|
173
173
|
<div class="interceptor-class">
|
|
174
174
|
<a-input
|
|
175
175
|
:style="{color:scope.column.params.fontColor?scope.column.params.fontColor:null}"
|
|
176
|
-
|
|
176
|
+
v-if="getCellEditExp(scope)"
|
|
177
177
|
class="inner-cell-control"
|
|
178
178
|
size="small"
|
|
179
179
|
v-model="scope.row[scope.column.property]"
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
<template #number_edit="scope">
|
|
201
201
|
<div class="interceptor-class">
|
|
202
202
|
<a-input-number
|
|
203
|
-
v-if="scope
|
|
203
|
+
v-if="getCellEditExp(scope)"
|
|
204
204
|
class="inner-cell-control"
|
|
205
205
|
:style="{color:scope.column.params.fontColor?scope.column.params.fontColor:null}"
|
|
206
206
|
size="small"
|
|
@@ -305,7 +305,7 @@
|
|
|
305
305
|
v-model="scope.row[scope.column.property]"
|
|
306
306
|
:field="scope.column.property"
|
|
307
307
|
:formRow="formRow"
|
|
308
|
-
:edit="scope
|
|
308
|
+
:edit="getCellEditExp(scope)"
|
|
309
309
|
:showLabel="false"
|
|
310
310
|
:row="scope.row"
|
|
311
311
|
:api="scope.column.params.api"
|
|
@@ -339,7 +339,7 @@
|
|
|
339
339
|
v-model="scope.row[scope.column.property]"
|
|
340
340
|
:field="scope.column.property"
|
|
341
341
|
:formRow="formRow"
|
|
342
|
-
:edit="scope
|
|
342
|
+
:edit="getCellEditExp(scope)"
|
|
343
343
|
:showLabel="false"
|
|
344
344
|
:row="scope.row"
|
|
345
345
|
class="inner-cell-control"
|