|
|
@@ -10,12 +10,12 @@
|
|
|
<div class="time fr">{{purchaseDetail.endDate | date}}</div>
|
|
|
</div>
|
|
|
<div class="desc">{{purchaseDetail.cmpCode}}</div>
|
|
|
- <div class="size">类目(产品名称):
|
|
|
- <span>{{purchaseDetail.prodTitle}}</span>
|
|
|
- </div>
|
|
|
<div class="brand">品牌:
|
|
|
<span>{{purchaseDetail.inbrand || '-'}}</span>
|
|
|
</div>
|
|
|
+ <div class="size">类目(产品名称):
|
|
|
+ <span>{{purchaseDetail.prodTitle}}</span>
|
|
|
+ </div>
|
|
|
<div class="size">规格:
|
|
|
<span>{{purchaseDetail.spec || '-'}}</span>
|
|
|
</div>
|
|
|
@@ -84,17 +84,19 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<login-box @onLoginBoxClose="showLoginBox = false" v-if="showLoginBox"></login-box>
|
|
|
- <say-price :showSayPriceBox="showSayPriceBox" @cancelSayPriceAction="onSayPriceCancel"></say-price>
|
|
|
+ <say-price-alert :showSayPriceBox="showSayPriceBox" @cancelSayPriceAction="onSayPriceCancel"></say-price-alert>
|
|
|
+ <say-price-info-alert v-if="showSayPriceInfoBox" :agreed="agreed" @cancelSayPriceInfoAction="onSayPriceInfoCancel"></say-price-info-alert>
|
|
|
<remind-box :title="remindText" :timeoutCount="timeoutCount"></remind-box>
|
|
|
- <say-price-info v-if="showSayPriceInfoBox" :agreed="agreed" @cancelSayPriceInfoAction="onSayPriceInfoCancel"></say-price-info>
|
|
|
<publish-seek :showSayPriceBox="showsendApplyBox" @cancelAction="showsendApplyBox = false" @reloadAction="onReload" @remindAction="onRemind"></publish-seek>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { SayPrice, SayPriceInfo } from '~components/mobile/applyPurchase'
|
|
|
+// import { SayPrice, SayPriceInfo } from '~components/mobile/applyPurchase'
|
|
|
import { LoginBox, RemindBox } from '~components/mobile/common'
|
|
|
import SeekList from '~components/mobile/applyPurchase/SeekList.vue'
|
|
|
+import SayPriceAlert from '~components/mobile/applyPurchase/SayPrice.vue'
|
|
|
+import SayPriceInfoAlert from '~components/mobile/applyPurchase/SayPriceInfo.vue'
|
|
|
import PublishSeek from '~components/mobile/applyPurchase/PublishSeek.vue'
|
|
|
// var flg = true
|
|
|
export default {
|
|
|
@@ -139,8 +141,8 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
components: {
|
|
|
- SayPrice,
|
|
|
- SayPriceInfo,
|
|
|
+ SayPriceAlert,
|
|
|
+ SayPriceInfoAlert,
|
|
|
LoginBox,
|
|
|
RemindBox,
|
|
|
SeekList,
|