问题修复
This commit is contained in:
parent
d2f9537500
commit
7cc29e8168
|
|
@ -95,8 +95,8 @@
|
||||||
<view>请您选择入驻类型!到家服务类请选择-服务商;商品销售类请选择-配件商。</view>
|
<view>请您选择入驻类型!到家服务类请选择-服务商;商品销售类请选择-配件商。</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="cu-bar bg-white">
|
<view class="cu-bar bg-white">
|
||||||
<view class="action margin-0 flex-sub text-black" @tap="hideModal"
|
<view class="action margin-0 flex-sub text-black" @tap="hideModal" @click="chooseEntryType(1)">配件商
|
||||||
@click="chooseEntryType(1)">配件商</view>
|
</view>
|
||||||
<view class="action margin-0 flex-sub text-main-color solid-left" @tap="hideModal"
|
<view class="action margin-0 flex-sub text-main-color solid-left" @tap="hideModal"
|
||||||
@click="chooseEntryType(0)">服务商</view>
|
@click="chooseEntryType(0)">服务商</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
@ -111,7 +111,11 @@
|
||||||
<view>2.微信头像</view>
|
<view>2.微信头像</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="cu-bar bg-white">
|
<view class="cu-bar bg-white">
|
||||||
<view class="action margin-0 flex-sub text-main-color solid-left" @tap="authWxLogin">确认授权</view>
|
<navigator class="modal-bottom-oper margin-0 flex-sub text-black" open-type="exit"
|
||||||
|
target="miniProgram">拒绝授权
|
||||||
|
</navigator>
|
||||||
|
<view class="modal-bottom-oper margin-0 flex-sub text-main-color solid-left" @tap="authWxLogin">确认授权
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
@ -122,12 +126,17 @@
|
||||||
<view>授予小程序绑定微信手机号码的权限</view>
|
<view>授予小程序绑定微信手机号码的权限</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="cu-bar bg-white">
|
<view class="cu-bar bg-white">
|
||||||
<button class="action margin-0 flex-sub cu-btn bg-white text-main-color" open-type="getPhoneNumber"
|
<navigator class="modal-bottom-oper margin-0 flex-sub text-black solid-right" open-type="exit"
|
||||||
|
target="miniProgram">拒绝授权
|
||||||
|
</navigator>
|
||||||
|
<view class="margin-0 flex-sub">
|
||||||
|
<button class="margin-0 flex-sub cu-btn bg-white text-main-color" open-type="getPhoneNumber"
|
||||||
@getphonenumber="getPhoneNumber">确认授权</button>
|
@getphonenumber="getPhoneNumber">确认授权</button>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
@ -326,4 +335,11 @@
|
||||||
clear: both;
|
clear: both;
|
||||||
height: 0;
|
height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.modal-bottom-oper {
|
||||||
|
height: 70rpx;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -479,7 +479,7 @@
|
||||||
this.areaMultiIndex = [colObj.value, 0, 0];
|
this.areaMultiIndex = [colObj.value, 0, 0];
|
||||||
} else if (colObj.column == 1) {
|
} else if (colObj.column == 1) {
|
||||||
// 通过二级查三级
|
// 通过二级查三级
|
||||||
let subAreaList = await this.$request.areaListByStep({parentCode: this.regionList[0][colObj.value].areaCode});
|
let subAreaList = await this.$request.areaListByStep({parentCode: this.areaList[1][colObj.value].areaCode});
|
||||||
subAreaList = subAreaList.data;
|
subAreaList = subAreaList.data;
|
||||||
this.areaList.pop();
|
this.areaList.pop();
|
||||||
this.areaList.push(subAreaList);
|
this.areaList.push(subAreaList);
|
||||||
|
|
|
||||||
|
|
@ -51,3 +51,8 @@ radio.main-color.checked .uni-radio-input {
|
||||||
color: #0081ff;
|
color: #0081ff;
|
||||||
height: 100rpx;
|
height: 100rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bg-white.text-main-color {
|
||||||
|
color: #0081ff;
|
||||||
|
background-color: #ffffff;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue