b3a2b215 by lihua

修改合约显示问题

1 parent c505f508
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
96 <el-option v-for="opt in productFieldList" :key="opt['enName']" :label="opt['chName']" 96 <el-option v-for="opt in productFieldList" :key="opt['enName']" :label="opt['chName']"
97 :value="opt['enName']" /> 97 :value="opt['enName']" />
98 </el-select> 98 </el-select>
99 <span v-else>{{ (scope.row.constraintEnName == 'dataField' ? scope.row.additionValue?.map(a => a.chName)?.join(',') : ((scope.row.constraintEnName == 'limitedDeliveryConnector' || scope.row.constraintEnName == 'limitedUseConnector') ? scope.row.additionValue?.map(a => a.tenantName)?.join(',') : scope.row['constraintFieldValue'])) || '--' }}</span> 99 <span v-else>{{ (scope.row.constraintEnName == 'dataField' ? scope.row.additionValue?.map(a => a.chName)?.join(',') : ((scope.row.constraintEnName == 'limitedDeliveryConnector' || scope.row.constraintEnName == 'limitedUseConnector') ? scope.row.additionValue?.map(a => a.tenantName)?.join(',') : scope.row['constraintValue'])) || '--' }}</span>
100 </template> 100 </template>
101 </el-table-column> 101 </el-table-column>
102 <el-table-column v-if="!isLook" label="操作" width="140px" align="left" fixed="right" show-overflow-tooltip> 102 <el-table-column v-if="!isLook" label="操作" width="140px" align="left" fixed="right" show-overflow-tooltip>
......
...@@ -289,7 +289,9 @@ const exportExtendTableInfo = computed(() => { ...@@ -289,7 +289,9 @@ const exportExtendTableInfo = computed(() => {
289 289
290 const productTableInfo = ref({ 290 const productTableInfo = ref({
291 id: "input-product-table", 291 id: "input-product-table",
292 height: '214px', 292 height: '75px',
293 minHeight: '60px',
294 minPanelHeight: '60px',
293 fields: [ 295 fields: [
294 { label: "序号", type: "index", width: TableColumnWidth.INDEX, align: "center" }, 296 { label: "序号", type: "index", width: TableColumnWidth.INDEX, align: "center" },
295 { label: "数据产品", field: "dataProductName", width: 180 }, 297 { label: "数据产品", field: "dataProductName", width: 180 },
...@@ -1293,7 +1295,7 @@ onActivated(() => { ...@@ -1293,7 +1295,7 @@ onActivated(() => {
1293 </ContentWrap> 1295 </ContentWrap>
1294 <ContentWrap v-show="currentStep == 1" id="product-info" title="合约标的" expandSwicth style="margin-top: 15px" 1296 <ContentWrap v-show="currentStep == 1" id="product-info" title="合约标的" expandSwicth style="margin-top: 15px"
1295 :isExpand="expandInfo" @expand="(v) => (expandInfo = v)" description=""> 1297 :isExpand="expandInfo" @expand="(v) => (expandInfo = v)" description="">
1296 <Table ref="productTableRef" :tableInfo="productTableInfo" class="fiveRow-table" /> 1298 <Table ref="productTableRef" :tableInfo="productTableInfo" />
1297 </ContentWrap> 1299 </ContentWrap>
1298 <ContentWrap v-show="currentStep == 1" id="policy-info" title="合约策略" expandSwicth style="margin-top: 15px" 1300 <ContentWrap v-show="currentStep == 1" id="policy-info" title="合约策略" expandSwicth style="margin-top: 15px"
1299 :isExpand="expandPolicy" @expand="(v) => (expandPolicy = v)" description=""> 1301 :isExpand="expandPolicy" @expand="(v) => (expandPolicy = v)" description="">
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!