问题修复

This commit is contained in:
donqi 2022-06-23 17:33:19 +08:00
parent d2f9537500
commit 7cc29e8168
3 changed files with 63 additions and 42 deletions

View File

@ -95,8 +95,8 @@
<view>请您选择入驻类型到家服务类请选择-服务商商品销售类请选择-配件商</view>
</view>
<view class="cu-bar bg-white">
<view class="action margin-0 flex-sub text-black" @tap="hideModal"
@click="chooseEntryType(1)">配件商</view>
<view class="action margin-0 flex-sub text-black" @tap="hideModal" @click="chooseEntryType(1)">配件商
</view>
<view class="action margin-0 flex-sub text-main-color solid-left" @tap="hideModal"
@click="chooseEntryType(0)">服务商</view>
</view>
@ -111,7 +111,11 @@
<view>2.微信头像</view>
</view>
<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>
@ -122,12 +126,17 @@
<view>授予小程序绑定微信手机号码的权限</view>
</view>
<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>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
@ -326,4 +335,11 @@
clear: both;
height: 0;
}
.modal-bottom-oper {
height: 70rpx;
display: inline-flex;
align-items: center;
justify-content: center;
}
</style>

View File

@ -479,7 +479,7 @@
this.areaMultiIndex = [colObj.value, 0, 0];
} 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;
this.areaList.pop();
this.areaList.push(subAreaList);

View File

@ -51,3 +51,8 @@ radio.main-color.checked .uni-radio-input {
color: #0081ff;
height: 100rpx;
}
.bg-white.text-main-color {
color: #0081ff;
background-color: #ffffff;
}