|
@@ -34,8 +34,8 @@
|
|
|
<template v-slot:defaultValue="{ row }">
|
|
<template v-slot:defaultValue="{ row }">
|
|
|
<div style="width: 100%; display: flex; justify-content: space-between">
|
|
<div style="width: 100%; display: flex; justify-content: space-between">
|
|
|
<div style="width: 8%">
|
|
<div style="width: 8%">
|
|
|
-
|
|
|
|
|
- <el-input v-model="row.symbol" :disabled="isView"> </el-input>
|
|
|
|
|
|
|
+ <DictSelection style="width: 100px" clearable dictName="数学字符" v-model="row.symbol"></DictSelection>
|
|
|
|
|
+ <!-- <el-input v-model="row.symbol" :disabled="isView"> </el-input> -->
|
|
|
</div>
|
|
</div>
|
|
|
<!-- 上下限 -->
|
|
<!-- 上下限 -->
|
|
|
<div v-if="row.textType == 3" style="
|
|
<div v-if="row.textType == 3" style="
|
|
@@ -46,6 +46,7 @@
|
|
|
">
|
|
">
|
|
|
<el-input style="width: 45%" v-model="row.minValue" :disabled="isView"></el-input>
|
|
<el-input style="width: 45%" v-model="row.minValue" :disabled="isView"></el-input>
|
|
|
<span> -</span>
|
|
<span> -</span>
|
|
|
|
|
+
|
|
|
<el-input style="width: 45%; margin-left: 10px" v-model="row.maxValue" :disabled="isView"></el-input>
|
|
<el-input style="width: 45%; margin-left: 10px" v-model="row.maxValue" :disabled="isView"></el-input>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
@@ -55,7 +56,9 @@
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<div style="width: 15%">
|
|
<div style="width: 15%">
|
|
|
- <el-input v-model="row.unit" :disabled="isView"> </el-input>
|
|
|
|
|
|
|
+ <DictSelection dictName="工艺参数单位" clearable filterable v-model="row.unit">
|
|
|
|
|
+ </DictSelection>
|
|
|
|
|
+ <!-- <el-input v-model="row.unit" :disabled="isView"> </el-input> -->
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|