挪动
This commit is contained in:
@@ -63,7 +63,11 @@
|
||||
{{ party.displayName }}
|
||||
</div>
|
||||
<a-button
|
||||
v-if="!isViewMode && !isOurPartyLocked && ourParties.length > 1"
|
||||
v-if="
|
||||
!isViewMode &&
|
||||
!isOurPartyLocked &&
|
||||
ourParties.length > 1
|
||||
"
|
||||
type="link"
|
||||
danger
|
||||
class="text-action-btn"
|
||||
@@ -364,7 +368,11 @@
|
||||
</div>
|
||||
<div class="summary-line">
|
||||
<span>相对方</span
|
||||
><strong>{{ isSingleAgreementChecked ? "单方协议,无相对方" : counterpartySummaryText }}</strong>
|
||||
><strong>{{
|
||||
isSingleAgreementChecked
|
||||
? "单方协议,无相对方"
|
||||
: counterpartySummaryText
|
||||
}}</strong>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1002,7 +1010,6 @@
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</a-form>
|
||||
</div>
|
||||
|
||||
@@ -1610,9 +1617,7 @@ const isSingleAgreementChecked = computed(
|
||||
() => String(detailState.value.isSingleAgreement || "0") === "1",
|
||||
);
|
||||
|
||||
const isOurPartyLocked = computed(
|
||||
() => isSingleAgreementChecked.value,
|
||||
);
|
||||
const isOurPartyLocked = computed(() => isSingleAgreementChecked.value);
|
||||
|
||||
const ourParties = computed(
|
||||
() => detailState.value.partyState.ourPartyList || [],
|
||||
|
||||
Reference in New Issue
Block a user