12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <!-- 催办 -->
- <template>
- <view class="register">
- <view class="register_li">
- <img class="register_li_t" src="@/images/basicsModules/icon_xgzl_shz.png">
- <view class="register_li_m">您提交的信息正在审核中,请耐心等待</view>
- </view>
- <view class="sub_btn" @click="hasten()">立即催办</view>
- </view>
- </template>
- <script>
- import { config } from '@/api/request/config.js'
- export default {
- data() {
- return {
- form:{
- name:'',
- },
- }
- },
- onLoad(option) {
- },
- onShow(){
- },
- methods: {
- hasten(){
- uni.showToast({
- title: '催办成功!',
- icon:"none",
- mask:true,
- duration: 2000
- });
- },
- }
- }
- </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:156rpx;
- height:200rpx;
- margin: 128rpx 0 0 276rpx;
- }
- .register_li_m{
- margin-top: 80rpx;
- margin-bottom: 116rpx;
- text-align: center;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- line-height: 28rpx;
- }
- }
- /* 按钮 */
- .sub_btn{
- width: 650rpx;
- height: 100rpx;
- background: #FFAE00;
- 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>
|