rq 1 year ago
parent
commit
c23484d1ec
  1. 2
      src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_customerInformation.vue
  2. 2
      src/views/modules/sampleManagement/technicalSpecificationDetail/com_tsd_basicInformation.vue
  3. 4
      src/views/modules/tooling/toolingInfo.vue

2
src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_customerInformation.vue

@ -304,7 +304,7 @@
searchBMcustomerInfo(this.searchData).then(({data}) => { searchBMcustomerInfo(this.searchData).then(({data}) => {
if(data.rows.length>0){ if(data.rows.length>0){
this.dataForm = data.rows[0]; this.dataForm = data.rows[0];
this.$alert('刷新成功', '成功', {
this.$alert('操作成功', '成功', {
confirmButtonText: '确定' confirmButtonText: '确定'
}) })
}else { }else {

2
src/views/modules/sampleManagement/technicalSpecificationDetail/com_tsd_basicInformation.vue

@ -482,7 +482,7 @@
if (data && data.code == 0) { if (data && data.code == 0) {
this.getNodeAuthority(data.row) this.getNodeAuthority(data.row)
this.dataForm = data.row this.dataForm = data.row
this.$alert('刷新成功', '成功', {
this.$alert('操作成功', '成功', {
confirmButtonText: '确定' confirmButtonText: '确定'
}) })
let inData = { let inData = {

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

@ -154,13 +154,13 @@
<el-table-column label="工具数量" width="60" prop="toolQty" show-overflow-tooltip/> <el-table-column label="工具数量" width="60" prop="toolQty" show-overflow-tooltip/>
<el-table-column label="申请数量" width="70" prop="applyQty" show-overflow-tooltip> <el-table-column label="申请数量" width="70" prop="applyQty" show-overflow-tooltip>
<template slot-scope="scope"> <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,'')"
<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> style="width:98%"></el-input>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="工具成本" width="70" prop="standardCost" show-overflow-tooltip> <el-table-column label="工具成本" width="70" prop="standardCost" show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
<el-input v-model="scope.row.standardCost" type="number" @change="changeSum(scope.row)" placeholder="请输入数量"
<el-input v-model="scope.row.standardCost" type="number" @change="changeSum(scope.row)" placeholder="请输入成本"
style="width:98%"></el-input> style="width:98%"></el-input>
</template> </template>
</el-table-column> </el-table-column>

Loading…
Cancel
Save