1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <!-- 停用 -->
- <template>
- <view class="register">
- <view class="register_li">
- <img class="register_li_t" src="@/images/basicsModules/img_xgzl_zgty.png">
- <view class="register_li_m">
- <text>您的供应商资格已被停用,详情请联系管理人员; </text>
- <text>联系电话:13227872231</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- import { config } from '@/api/request/config.js'
- export default {
- data() {
- return {
- form:{
- name:'',
- },
- }
- },
- onLoad(option) {
- },
- onShow(){
- },
- methods: {
- }
- }
- </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-top: 92rpx;
- 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:nth-child(2){
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- line-height: 28rpx;
- }
- }
- }
- }
- /deep/.input-value-border{
- display :none !important;
- }
- </style>
|