|
@@ -196,6 +196,17 @@
|
|
@onConfirm="onConfirm">
|
|
@onConfirm="onConfirm">
|
|
</mpvue-city-picker>
|
|
</mpvue-city-picker>
|
|
</view>
|
|
</view>
|
|
|
|
+ <!-- 提交审核提示弹窗 -->
|
|
|
|
+ <view class="tui-alert-box" v-if="isConfirmShow">
|
|
|
|
+ <view class="tui-alert-content">
|
|
|
|
+ <view class="tui-alert-main">
|
|
|
|
+ 升级信息提交成功,审核通过后您的身份将
|
|
|
|
+ 成为会员机构,并且获得<text class="red">100</text>
|
|
|
|
+ 采美豆的奖励
|
|
|
|
+ </view>
|
|
|
|
+ <view class="tui-alert-btn" @click="handleClick">知道了</view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -253,6 +264,7 @@
|
|
isShowAustomItem:false, //是否显示其他添加
|
|
isShowAustomItem:false, //是否显示其他添加
|
|
customItemValue:'', //自定义项目
|
|
customItemValue:'', //自定义项目
|
|
isMainproCheck:false,
|
|
isMainproCheck:false,
|
|
|
|
+ isConfirmShow:false,
|
|
addressData:{
|
|
addressData:{
|
|
address:'请选择机构所在地区',
|
|
address:'请选择机构所在地区',
|
|
townId:'', //区ID
|
|
townId:'', //区ID
|
|
@@ -424,14 +436,18 @@
|
|
mainProduct:this.mainProduct,
|
|
mainProduct:this.mainProduct,
|
|
}
|
|
}
|
|
this.UserService.OrganizationRegister(params).then(response =>{
|
|
this.UserService.OrganizationRegister(params).then(response =>{
|
|
- this.$util.msg('您的升级申请已提交审核',2000);
|
|
|
|
- setTimeout(()=>{
|
|
|
|
- uni.navigateBack();
|
|
|
|
- },2000)
|
|
|
|
|
|
+ this.isConfirmShow = true
|
|
|
|
+
|
|
}).catch(error =>{
|
|
}).catch(error =>{
|
|
this.$util.msg(error.msg,2000);
|
|
this.$util.msg(error.msg,2000);
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
+ handleClick(){//隐藏提示弹窗
|
|
|
|
+ this.isConfirmShow = false
|
|
|
|
+ setTimeout(()=>{
|
|
|
|
+ uni.navigateBack();
|
|
|
|
+ },2000)
|
|
|
|
+ },
|
|
// 三级联动选择
|
|
// 三级联动选择
|
|
showMulLinkageThreePicker() {
|
|
showMulLinkageThreePicker() {
|
|
this.isShowInput = true
|
|
this.isShowInput = true
|
|
@@ -1140,4 +1156,54 @@
|
|
transform:scale(.8);
|
|
transform:scale(.8);
|
|
-webkit-transform:translate(-50%, -50%) scale(1);
|
|
-webkit-transform:translate(-50%, -50%) scale(1);
|
|
}
|
|
}
|
|
|
|
+ .tui-alert-box {
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 100%;
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ flex-direction: column;
|
|
|
|
+ position: fixed;
|
|
|
|
+ left: 0;
|
|
|
|
+ top: 0;
|
|
|
|
+ opacity: 1;
|
|
|
|
+ background: rgba(51,51,51,0.5);
|
|
|
|
+ z-index: 99999;
|
|
|
|
+ .tui-alert-content{
|
|
|
|
+ width: 580rpx;
|
|
|
|
+ height: 324rpx;
|
|
|
|
+ border-radius: 16rpx;
|
|
|
|
+ background-color: #FFFFFF;
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 0;
|
|
|
|
+ bottom: 0;
|
|
|
|
+ right: 0;
|
|
|
|
+ left: 0;
|
|
|
|
+ margin: auto;
|
|
|
|
+ .tui-alert-main{
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 234rpx;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ padding: 60rpx 30rpx;
|
|
|
|
+ line-height: 60rpx;
|
|
|
|
+ font-size: $font-size-26;
|
|
|
|
+ color: #666666;
|
|
|
|
+ text-align: justify;
|
|
|
|
+ .red{
|
|
|
|
+ color: #e15616;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .tui-alert-btn{
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 90rpx;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ line-height: 90rpx;
|
|
|
|
+ background: $btn-confirm;
|
|
|
|
+ color: #FFFFFF;
|
|
|
|
+ text-align: center;
|
|
|
|
+ font-size: $font-size-28;
|
|
|
|
+ border-radius: 0 0 16rpx 16rpx ;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
</style>
|
|
</style>
|