|
|
@ -77,18 +77,18 @@ |
|
|
|
</a-form-item> |
|
|
|
</a-form-item> |
|
|
|
<a-form-item label="分销价"> |
|
|
|
<a-form-item label="分销价"> |
|
|
|
<div style="display: flex" class="goodsType"> |
|
|
|
<div style="display: flex" class="goodsType"> |
|
|
|
<a-input v-decorator="['min_distribute_price']" placeholder="请输入" /><span style="padding: 0 3px 0 5px" |
|
|
|
<a-input v-decorator="['distribute_price_min']" placeholder="请输入" /><span style="padding: 0 3px 0 5px" |
|
|
|
>-</span |
|
|
|
>-</span |
|
|
|
> |
|
|
|
> |
|
|
|
<a-input style="margin-left: 5px" v-decorator="['max_distribute_price']" placeholder="请输入" /> |
|
|
|
<a-input style="margin-left: 5px" v-decorator="['distribute_price_max']" placeholder="请输入" /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</a-form-item> |
|
|
|
</a-form-item> |
|
|
|
<a-form-item label="铺货价"> |
|
|
|
<a-form-item label="铺货价"> |
|
|
|
<div style="display: flex" class="goodsType"> |
|
|
|
<div style="display: flex" class="goodsType"> |
|
|
|
<a-input v-decorator="['min_shop_price']" placeholder="请输入" /><span style="padding: 0 3px 0 5px" |
|
|
|
<a-input v-decorator="['shop_price_min']" placeholder="请输入" /><span style="padding: 0 3px 0 5px" |
|
|
|
>-</span |
|
|
|
>-</span |
|
|
|
> |
|
|
|
> |
|
|
|
<a-input style="margin-left: 5px" v-decorator="['max_shop_price']" placeholder="请输入" /> |
|
|
|
<a-input style="margin-left: 5px" v-decorator="['shop_price_max']" placeholder="请输入" /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</a-form-item> |
|
|
|
</a-form-item> |
|
|
|
<a-form-item label="添加时间"> |
|
|
|
<a-form-item label="添加时间"> |
|
|
@ -866,14 +866,14 @@ export default { |
|
|
|
(formData.profit_rate_max || '') + |
|
|
|
(formData.profit_rate_max || '') + |
|
|
|
'&profit_rate_min=' + |
|
|
|
'&profit_rate_min=' + |
|
|
|
(formData.profit_rate_min || '') + |
|
|
|
(formData.profit_rate_min || '') + |
|
|
|
'&min_distribute_price=' + |
|
|
|
'&distribute_price_min=' + |
|
|
|
(formData.min_distribute_price || '') + |
|
|
|
(formData.distribute_price_min || '') + |
|
|
|
'&max_distribute_price=' + |
|
|
|
'&distribute_price_max=' + |
|
|
|
(formData.max_distribute_price || '') + |
|
|
|
(formData.distribute_price_max || '') + |
|
|
|
'&min_shop_price=' + |
|
|
|
'&shop_price_min=' + |
|
|
|
(formData.min_shop_price || '') + |
|
|
|
(formData.shop_price_min || '') + |
|
|
|
'&max_shop_price=' + |
|
|
|
'&shop_price_max=' + |
|
|
|
(formData.max_shop_price || '') + |
|
|
|
(formData.shop_price_max || '') + |
|
|
|
'&categoryId=' + |
|
|
|
'&categoryId=' + |
|
|
|
this.queryParam.categoryId + |
|
|
|
this.queryParam.categoryId + |
|
|
|
'&channel=' + |
|
|
|
'&channel=' + |
|
|
|