123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <!-- 申请成功 -->
- <template>
- <view id="register">
- <view class="register_li">
- <img class="register_li_t" src="@/pages_supplier/images/Version3.0/img_zc_zccg.png">
- <view class="register_li_m">
- <text>申请提交成功,请牢记您的账号密码,</text>
- <text>为避免丢失和遗忘,建议您截图保存。</text>
- </view>
- <view class="register_li_b">
- <view>
- <text>登陆账号</text>
- <text>{{form.sysUserDto.userName}}</text>
- </view>
- <view>
- <text>登陆密码</text>
- <text>{{form.sysUserDto.password}}</text>
- </view>
- </view>
- </view>
- <view class="sub_btn" @click="back()">返回</view>
- </view>
- </template>
- <script>
- import {} from '@/api/apiDemo/index.js'
- import { config } from '@/api/request/config.js'
- export default {
- data() {
- return {
- form:{
- },
- }
- },
- onLoad(option) {
- this.form=JSON.parse(decodeURIComponent(option.form));
- },
- onShow(){
- },
- methods: {
- back(){
- uni.redirectTo({
- url: '/pages/login?status=3',
- });
- },
- }
- }
- </script>
- <style lang="stylus" scoped>
- #register{
- height:100%;
- width:100%;
- display flex
- flex-direction column;
- //padding-bottom: 220rpx;
- .register_li{
- background #fff;
- border-radius:20rpx;
- margin:20rpx 20rpx 0;
- padding:20rpx 0;
- box-sizing: border-box;
- .register_li_t{
- width:336rpx;
- height:190rpx;
- margin: 60rpx 0 0 186rpx;
- }
- .register_li_m{
- margin-top: 64rpx;
- text-align: center;
- >text{
- display: block;
- }
- >text:nth-child(1){
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- line-height: 28rpx;
- margin-bottom: 24rpx;
- }
- >text:nth-child(2){
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- line-height: 28rpx;
- }
- }
- .register_li_b{
- margin-top: 60rpx;
- width: 668rpx;
- height: 180rpx;
- background: #F5F5F5;
- border-radius: 10rpx;
- margin-left: 22rpx;
- padding: 44rpx 34rpx;
- box-sizing: border-box;
- >view{
- display: flex;
- justify-content: space-between;
- >text{
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- line-height: 28rpx;
- }
- }
- >view:nth-child(2){
- margin-top: 30rpx;
- }
- }
- }
- /* 按钮 */
- .sub_btn{
- width: 650rpx;
- height: 100rpx;
- background: #0183FA;
- border-radius: 20rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 100rpx;
- text-align: center;
- margin-left: 50rpx;
- position: fixed;
- bottom:30rpx;
- z-index: 1000;
- }
- }
- /deep/.input-value-border{
- display :none !important;
- }
- </style>
|