@@ -101,8 +101,9 @@
onLoad(opts) {
this.currentGold = this.$store.state.vuex_userData.currentGold
console.log(this.currentGold,'currentGold')
- console.log(opts)
this.store = JSON.parse(decodeURIComponent(opts.store))
+ this.partnerNo = this.store.officialPartnerNo
+ // console.log(this.store,'22222')
},
methods: {
// 跳转到设置支付密码页
@@ -12,7 +12,7 @@
<Address ref="applyAddress" @onConfirm="areaConfirm"></Address>
</u-form-item>
<u-form-item label="详细地址" required prop="receiveAddress">
- <u-input type="textarea" placeholder="请输入收货详细地址(最多500个字符)" :maxlength="500" v-model="form.receiveAddress" />
+ <textarea :auto-height="true" placeholder="请输入收货详细地址(最多100个字符)" :maxlength="100" v-model="form.receiveAddress" class="receiveAddress"/>
</u-form>
<view class="buttons">
@@ -147,5 +147,11 @@
.buttons{
padding: 80upx 100upx;
}
+ .receiveAddress{
+ width: 100%;
+ line-height: 1.5em;
+ box-sizing: border-box;
+ font-style: normal;
+ }
</style>