Browse Source

2025-04-15

master
qiezi 9 months ago
parent
commit
4dec54dd68
  1. 2
      src/views/modules/quote/detail/quoteDetail.vue
  2. 17
      src/views/modules/sampleManagement/com_technical-add-or-update.vue

2
src/views/modules/quote/detail/quoteDetail.vue

@ -999,7 +999,7 @@ export default {
:min-width="item.columnWidth"
:label="item.columnLabel">
<template slot-scope="scope">
<template v-if="item.columnProp === 'partNo'">
<template v-if="!quoteGroupDetail && item.columnProp === 'partNo'">
<el-link style="cursor:pointer;" v-if="!item.columnHidden" @click="toPartMenu(scope.row.partNo)"> {{ scope.row[item.columnProp] }}</el-link>
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" style="width: 100px; height: 80px"/></span>
</template>

17
src/views/modules/sampleManagement/com_technical-add-or-update.vue

@ -788,6 +788,7 @@
rev:'',
customerRev:''
}
// DCCList
this.visible = true
}
},
@ -866,6 +867,22 @@
this.dataForm.partDesc=row.partDesc
this.dataForm.finalPartNo=row.finalPartNo
this.dataForm.buNo=row.buNo
// DCC
let inData={
site:this.dataForm.site,
buNo:this.dataForm.buNo,
roleNo:'R015'
}
searchBMUser(inData).then(({data}) => {
if (data && data.code === 0){
this.$nextTick(()=>{
this.operatorList = data.rows
this.dccList = data.rows.map(item=>item.operatorId)
this.savetDccList();
this.operatorList = []
})
}
})
this.partModelFlag=false
},
chooseProofingNo(row){

Loading…
Cancel
Save