|
|
@@ -104,18 +104,6 @@
|
|
|
<div class="add-brand row">
|
|
|
<a href="javascript:void(0)" title="增加品牌" @click="addBrand"><em><i class="fa fa-plus-circle"></i>增加品牌</em></a>
|
|
|
</div>
|
|
|
- <!--主营产品-->
|
|
|
- <div class="row brand-type">
|
|
|
- <div class="col-md-1" style="padding:0;">主营产品<em>*</em></div>
|
|
|
- <div class="col-md-10">
|
|
|
- <textarea v-model="description"
|
|
|
- style="line-height: 20px;font-size: 14px;margin-top:25px;"
|
|
|
- rows="8"
|
|
|
- @blur.stop.prevent="onDescription()"
|
|
|
- class="form-control"
|
|
|
- placeholder="例:本店主营Panasonic、IT、三星等知名品牌的触控IC、显示驱动IC、液晶屏、功率模块类、电源芯片、高压熔断、被动器件等产品。"></textarea>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
</div>
|
|
|
<!--原厂end-->
|
|
|
<!--代理商 begin-->
|
|
|
@@ -228,6 +216,18 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<!--经销商 end-->
|
|
|
+ <!--主营产品-->
|
|
|
+ <div class="row brand-type">
|
|
|
+ <div class="col-md-1" style="padding:0;">主营产品<em>*</em></div>
|
|
|
+ <div class="col-md-10">
|
|
|
+ <textarea v-model="description"
|
|
|
+ style="line-height: 20px;font-size: 14px;margin-top:25px;"
|
|
|
+ rows="8"
|
|
|
+ maxlength="500"
|
|
|
+ class="form-control"
|
|
|
+ placeholder="例:本店主营Panasonic、IT、三星等知名品牌的触控IC、显示驱动IC、液晶屏、功率模块类、电源芯片、高压熔断、被动器件等产品。"></textarea>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<!-- Submit button -->
|
|
|
<!-- <div style="padding: 28px 40px;">
|
|
|
@@ -285,6 +285,7 @@
|
|
|
data () {
|
|
|
return {
|
|
|
tab: 'ORIGINAL_FACTORY',
|
|
|
+ description:'',
|
|
|
brands: [{
|
|
|
type: 'BRAND',
|
|
|
name: '',
|
|
|
@@ -469,6 +470,9 @@
|
|
|
if (this.businessLicenseUrl === '') {
|
|
|
this.$message.error('请上传营业执照')
|
|
|
this.showLoading = false
|
|
|
+ } else if (this.description === '') {
|
|
|
+ this.$message.error('请填写主营产品信息')
|
|
|
+ this.showLoading = false
|
|
|
} else {
|
|
|
if (this.brands[0].name === '') {
|
|
|
validCode = 1
|
|
|
@@ -505,6 +509,7 @@
|
|
|
})
|
|
|
// 申请开店
|
|
|
this.$http.post('/store-service/applications', {
|
|
|
+ applyDescription: this.description,
|
|
|
brands: tmpBrands,
|
|
|
qualifications: qualifications,
|
|
|
type: this.tab
|