|
|
@@ -1,20 +1,22 @@
|
|
|
<template>
|
|
|
- <!-- 商品合约 -->
|
|
|
- <section class="spot_warran">
|
|
|
- <component :is="componentId"
|
|
|
- v-if="componentId">
|
|
|
- </component>
|
|
|
- <thirdMenu :list="tabList"
|
|
|
- @selectMenu="changeTab"
|
|
|
- :value="'title'">
|
|
|
- <!-- 议价单 -->
|
|
|
- <div class="goods-apply"
|
|
|
- v-if="componentId === BARGIN">
|
|
|
- <span @click="changeBargain(ApplyType.my)">我的议价</span>
|
|
|
- <span @click="changeBargain(ApplyType.counterpart)">对方议价</span>
|
|
|
- </div>
|
|
|
- </thirdMenu>
|
|
|
- </section>
|
|
|
+ <!-- 商品合约 -->
|
|
|
+ <section class="spot_warran">
|
|
|
+ <component :is="componentId" v-if="componentId"></component>
|
|
|
+ <thirdMenu :list="tabList" @selectMenu="changeTab" :value="'title'">
|
|
|
+ <!-- 议价单 -->
|
|
|
+ <div class="goods-apply" v-if="componentId === BARGIN">
|
|
|
+ <!-- <span @click="changeBargain(ApplyType.my)">我的议价</span>
|
|
|
+ <span @click="changeBargain(ApplyType.counterpart)">对方议价</span>-->
|
|
|
+ <a-radio-group class="conditionCommonRadioGroup">
|
|
|
+ <a-radio @focus="changeBargain(ApplyType.my)" :value="ApplyType.my">我的议价</a-radio>
|
|
|
+ <a-radio
|
|
|
+ @focus="changeBargain(ApplyType.counterpart)"
|
|
|
+ :value="ApplyType.counterpart"
|
|
|
+ >对方议价</a-radio>
|
|
|
+ </a-radio-group>
|
|
|
+ </div>
|
|
|
+ </thirdMenu>
|
|
|
+ </section>
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts">
|