|
|
@@ -5,11 +5,11 @@
|
|
|
<div class="say-price" ref="mobileModalBox">
|
|
|
<div>
|
|
|
<div class="base-info">
|
|
|
- <div class="content-line">
|
|
|
- 品牌:<span>{{purchaseDetail.inbrand || '-'}}</span>
|
|
|
+ <div class="content-line clearfix">
|
|
|
+ <div class="pull-left">品牌:</div><span class="pull-left">{{purchaseDetail.inbrand || '-'}}</span>
|
|
|
</div>
|
|
|
- <div class="content-line">
|
|
|
- 物料名称:<span>{{purchaseDetail.prodTitle || '-'}}</span>
|
|
|
+ <div class="content-line clearfix">
|
|
|
+ <div class="pull-left">物料名称:</div><span class="pull-left" style="width:5rem;">{{purchaseDetail.prodTitle || '-'}}</span>
|
|
|
</div>
|
|
|
<div class="content-line clearfix">
|
|
|
<div class="pull-left"> 型号:</div><span class="pull-left">{{purchaseDetail.cmpCode || '-'}}</span>
|
|
|
@@ -126,15 +126,18 @@
|
|
|
RemindBox
|
|
|
},
|
|
|
watch: {
|
|
|
- showSayPriceBox: function (val, old) {
|
|
|
- if (val) {
|
|
|
- this.$nextTick(() => {
|
|
|
- this._initscroll()
|
|
|
- this.initScroll.scrollTo(0, 0, 0)
|
|
|
- })
|
|
|
- }
|
|
|
- this.sayType = 'current'
|
|
|
- this.resetSayPrice()
|
|
|
+ 'showSayPriceBox': {
|
|
|
+ handler: function(val, old) {
|
|
|
+ if (val) {
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this._initscroll()
|
|
|
+ this.initScroll.scrollTo(0, 0, 0)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ this.sayType = 'current'
|
|
|
+ this.resetSayPrice()
|
|
|
+ },
|
|
|
+ deep: true
|
|
|
}
|
|
|
},
|
|
|
mounted () {
|