Commit b5177a08 by 李宁

1

1 parent a7290f46
...@@ -25,8 +25,8 @@ ...@@ -25,8 +25,8 @@
</div> </div>
<!-- 用户地址 --> <!-- 用户地址 -->
<div class="section" v-if="isAlone"> <div class="section">
<div class="section-card" data-node-id="6:249"> <div class="section-card" data-node-id="6:249" v-if="isAlone">
<h2 class="section-title" data-node-id="6:253">用户地址</h2> <h2 class="section-title" data-node-id="6:253">用户地址</h2>
<div class="addressLi"> <div class="addressLi">
<div class="name">所在地区</div> <div class="name">所在地区</div>
...@@ -40,6 +40,12 @@ ...@@ -40,6 +40,12 @@
<input type="text" placeholder="门牌号、楼栋号" v-model="detailAddress"> <input type="text" placeholder="门牌号、楼栋号" v-model="detailAddress">
</div> </div>
</div> </div>
<div class="section-card" v-if="haZjData.address">
<div class="addressLi" style="align-items: flex-start;">
<div class="name">用户地址</div>
<div style="font-size: .28rem;">{{haZjData.address}}</div>
</div>
</div>
</div> </div>
<!-- 商机类型 --> <!-- 商机类型 -->
......
...@@ -133,6 +133,7 @@ body { ...@@ -133,6 +133,7 @@ body {
color: #333; color: #333;
font-size: .28rem; font-size: .28rem;
width: 1.5rem; width: 1.5rem;
flex-shrink: 0;
} }
.addressLi .selectCity{ .addressLi .selectCity{
display: flex; display: flex;
......
...@@ -262,6 +262,7 @@ new Vue({ ...@@ -262,6 +262,7 @@ new Vue({
campaignId: utils.getUrlParam('campaignId'), campaignId: utils.getUrlParam('campaignId'),
areaType: utils.getUrlParam('areaType'), areaType: utils.getUrlParam('areaType'),
areaCode: utils.getUrlParam('areaCode'), areaCode: utils.getUrlParam('areaCode'),
address: ''
} }
this.getAddress() this.getAddress()
......
...@@ -8,7 +8,7 @@ new Vue({ ...@@ -8,7 +8,7 @@ new Vue({
loginForm: { loginForm: {
employeeId: '', employeeId: '',
phoneNumber: '', phoneNumber: '',
verifyCode: '123456' verifyCode: ''
}, },
countdown: 0, countdown: 0,
countdownTimer: null, countdownTimer: null,
...@@ -19,16 +19,16 @@ new Vue({ ...@@ -19,16 +19,16 @@ new Vue({
this.platform = type this.platform = type
localStorage.setItem('platform',type) localStorage.setItem('platform',type)
if(type == 'gw'){ // if(type == 'gw'){
this.loginForm.employeeId = '54321' // this.loginForm.employeeId = '54321'
this.loginForm.phoneNumber = '15611154004' // this.loginForm.phoneNumber = '15611154004'
}else if(type == 'yx'){ // }else if(type == 'yx'){
this.loginForm.employeeId = '12345' // this.loginForm.employeeId = '12345'
this.loginForm.phoneNumber = '13718590607' // this.loginForm.phoneNumber = '13718590607'
}else{ // }else{
this.loginForm.employeeId = '54321' // this.loginForm.employeeId = '54321'
this.loginForm.phoneNumber = '13212789513' // this.loginForm.phoneNumber = '13212789513'
} // }
}, },
getVerifyCode() { getVerifyCode() {
let pa = this.loginForm let pa = this.loginForm
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!