123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <!-- 驳回 -->
- <template>
- <view class="register">
- <view class="register_li">
- <img class="register_li_t" src="@/pages/images/img_xgzl_zgty.png">
- <view class="register_li_m">
- <text>您提交申请被驳回</text>
- <text>驳回原因为:{{infoData}}</text>
- </view>
- </view>
- <view class="sub_btn" @click="againSubmit()">重新申请</view>
- </view>
- </template>
- <script>
- import { config } from '@/api/request/config.js'
- export default {
- props:{
- infoData:{}
- },
- data() {
- return {
- form:{
- name:'',
- },
- }
- },
- onLoad(option) {
- },
- onShow(){
- },
- methods:{
- //重新提交
- againSubmit(){
- uni.redirectTo({
- url: '/pages_supplier/register/register?pageStatus=1',
- });
- },
- },
- mounted(){
- },
- }
- </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:204rpx;
- height:200rpx;
- margin: 125rpx 0 0 258rpx;
- }
- .register_li_m{
- margin-bottom: 60rpx;
- text-align: left;
- padding: 0 50rpx;
- box-sizing: border-box;
- >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-align: center;
- margin-top: 42rpx;
- }
- >text:nth-child(2){
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- line-height: 48rpx;
- margin-top: 48rpx;
- }
- }
- }
- /* 按钮 */
- .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>
|