Browse Source

实例编码

master
han\hanst 1 month ago
parent
commit
0130c6fa15
  1. 5
      src/views/modules/tooling/toolingInfo.vue

5
src/views/modules/tooling/toolingInfo.vue

@ -794,6 +794,11 @@ export default {
<el-table-column label="工具编码" header-align="center" width="100" prop="toolId" show-overflow-tooltip/>
<el-table-column label="工具描述" header-align="center" width="120" prop="toolDescription" show-overflow-tooltip/>
<el-table-column label="工具数量" align="right" header-align="center" width="80" prop="toolQty" show-overflow-tooltip/>
<el-table-column label="实例编码" header-align="center" width="120" prop="instanceCode" show-overflow-tooltip>
<template slot-scope="scope">
<el-input v-model="scope.row.instanceCode" placeholder="请输入实例编码" style="width:98%"></el-input>
</template>
</el-table-column>
<el-table-column label="申请数量" align="right" header-align="center" width="80" prop="applyQty" show-overflow-tooltip>
<template slot-scope="scope">
<el-input v-model="scope.row.applyQty" type="number" @change="changeSum(scope.row)" placeholder="请输入数量" onkeyup="value=value.replace(/^(0+)|[^\d]+/g,'')" style="width:98%"></el-input>

Loading…
Cancel
Save