Commit e319aadc authored by zhaoyanping's avatar zhaoyanping

fix: ID:231【合同审批/统筹采购合同】统筹项目发起合同审批时,“执行预算合同编号”下拉框中各选项拼接编号+明细,例:TC25-A01-01(某某某明细文字)-2

parent b29c663c
......@@ -32,7 +32,7 @@
</view>
<view class="info">
<view>{{ $t('execBudgetContractCode') }}</view>
<view>{{ contractInfo.contractNo || '-' }}</view>
<view>{{ contractInfo.contractNo || '-' }}({{contractInfo.executeBudgetDetail}})</view>
</view>
<view class="info">
<view>{{$t('supplierName')}}</view>
......
......@@ -40,7 +40,8 @@
<template v-else>{{ $t('tempContractCode') }}</template>
</view>
<view class="flex align-center">
{{ contractInfo.contractNo || contractInfo.tempContractNo }}
<template v-if="contractInfo.executeBudgetId">{{ contractInfo.contractNo }}({{ contractInfo.executeBudgetDetail }})</template>
<template v-else>{{ contractInfo.tempContractNo }}</template>
<!-- <image v-if="!contractInfo.executeBudgetId" class="li" src="/static/images/lin.png"></image> -->
</view>
</view>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment