|
|
|
@ -1,7 +1,8 @@ |
|
|
|
|
<template> |
|
|
|
|
<view class="v-pages"> |
|
|
|
|
<view class="v-form v-container"> |
|
|
|
|
<uni-forms :modelValue="formData" ref="formRef" :label-width="80" border :rules="formRules"> |
|
|
|
|
|
|
|
|
|
<view class="v-form v-container" style="padding-bottom:140rpx;"> |
|
|
|
|
<uni-forms :modelValue="formData" ref="formRef" :label-width="80" :rules="formRules"> |
|
|
|
|
<view class="v-form-item"> |
|
|
|
|
<uni-forms-item label="认证类型" name="authenticationType" required> |
|
|
|
|
<uni-data-picker class="m-data-pick" popupTitle=" " v-model="formData.authenticationType" |
|
|
|
@ -84,7 +85,7 @@ |
|
|
|
|
</uni-forms-item> |
|
|
|
|
</view> |
|
|
|
|
</uni-forms> |
|
|
|
|
<view class="fixed fixedBottom"> |
|
|
|
|
<view class="fixed fixedBottom v-container"> |
|
|
|
|
<button class="m-t-large v-primary-btn large" @click="submitForm()">保存</button> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
@ -397,5 +398,35 @@ |
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|
.not-show { |
|
|
|
|
display: none; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.m-kg { |
|
|
|
|
background: #eee; |
|
|
|
|
padding: 0 11rpx; |
|
|
|
|
border-radius: 15rpx; |
|
|
|
|
margin-right: 55rpx; |
|
|
|
|
color: #929292; |
|
|
|
|
font-size: 20rpx; |
|
|
|
|
height: 55rpx; |
|
|
|
|
line-height: 55rpx; |
|
|
|
|
margin-left: 10rpx; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.no-mar { |
|
|
|
|
margin-right: 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.m-notice { |
|
|
|
|
background: rgba(#14c171, .1); |
|
|
|
|
padding: 6rpx 10rpx; |
|
|
|
|
border-radius: 10rpx; |
|
|
|
|
font-size: 24rpx; |
|
|
|
|
color: #333333; |
|
|
|
|
|
|
|
|
|
.color-red { |
|
|
|
|
color: #14c171; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</style> |