Browse Source

2025-04-22

master
qiezi 10 months ago
parent
commit
563d7cc93b
  1. 4
      src/views/modules/quote/detail/quoteDetail.vue
  2. 4
      src/views/modules/quote/detail/quoteGroupDetail.vue

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

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

4
src/views/modules/quote/detail/quoteGroupDetail.vue

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

Loading…
Cancel
Save