|
@@ -137,6 +137,44 @@
|
|
|
>确认添加</button>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ </view>
|
|
|
+ <view class="register-row clearfix">
|
|
|
+ <view class="register-from">
|
|
|
+ <view class="label">网站地址:</view>
|
|
|
+ <input class="row-input" type="text" v-model="shopInfo.website" placeholder="请输入公司网站地址" maxlength="100"/>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="register-row clearfix">
|
|
|
+ <view class="register-from">
|
|
|
+ <view class="label">微信公众号:</view>
|
|
|
+ <input class="row-input" type="text" v-model="shopInfo.wxOfficialAccount" placeholder="请输入公司微信公众号" maxlength="20"/>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="register-row clearfix">
|
|
|
+ <view class="register-from">
|
|
|
+ <view class="label">微信小程序:</view>
|
|
|
+ <input class="row-input" type="text" v-model="shopInfo.wxApplets" placeholder="请输入公司微信小程序名称" maxlength="20"/>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="register-row text-textarea clearfix">
|
|
|
+ <view class="label">公司主打系列商品说明:</view>
|
|
|
+ <textarea v-model="shopInfo.mainProductDesc"
|
|
|
+ class="textarea"
|
|
|
+ maxlength="5000"
|
|
|
+ placeholder="请输入公司主打系列商品说明"
|
|
|
+ placeholder-class="placeholder"
|
|
|
+ name="textarea"
|
|
|
+ />
|
|
|
+ </view>
|
|
|
+ <view class="register-row text-textarea clearfix">
|
|
|
+ <view class="label">公司介绍:</view>
|
|
|
+ <textarea v-model="shopInfo.shopDesc"
|
|
|
+ class="textarea"
|
|
|
+ maxlength="5000"
|
|
|
+ placeholder="请输入公司介绍"
|
|
|
+ placeholder-class="placeholder"
|
|
|
+ name="textarea"
|
|
|
+ />
|
|
|
</view>
|
|
|
<view class="register-main clearfix">
|
|
|
<view class="register-agree">
|
|
@@ -203,6 +241,11 @@
|
|
|
secondShopType: 0,
|
|
|
mainProduct:'', //公司主营内容
|
|
|
isAgreed:1, //勾选协议状态
|
|
|
+ website:'',//网站地址
|
|
|
+ wxOfficialAccount:'',//微信公众号
|
|
|
+ wxApplets:'',//微信小程序
|
|
|
+ mainProductDesc:'',//公司主打商品说明
|
|
|
+ shopDesc:'',//公司介绍
|
|
|
},
|
|
|
addressText:'请选择公司所在地区',
|
|
|
isDisabled:true,
|
|
@@ -250,6 +293,11 @@
|
|
|
this.shopInfo.email = this.$reg.checkData(supplierUser.email)
|
|
|
this.shopInfo.shortName = this.$reg.checkData(supplierShop.shortName)
|
|
|
this.addressText = supplierShop.provincialAddress ? supplierShop.provincialAddress : '请选择公司所在地区'
|
|
|
+ this.shopInfo.website = supplierShop.website
|
|
|
+ this.shopInfo.wxOfficialAccount = supplierShop.wxOfficialAccount
|
|
|
+ this.shopInfo.wxApplets = supplierShop.wxApplets
|
|
|
+ this.shopInfo.mainProductDesc = supplierShop.mainProductDesc
|
|
|
+ this.shopInfo.shopDesc = supplierShop.shopDesc
|
|
|
this.shopInfo.address = supplierShop.address
|
|
|
this.shopInfo.provinceId = supplierShop.provinceId
|
|
|
this.shopInfo.cityId = supplierShop.cityId
|