forbidden.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <!-- 停用 -->
  2. <template>
  3. <view class="register">
  4. <view class="register_li">
  5. <img class="register_li_t" src="@/images/Version3.0/img_xgzl_zgty.png">
  6. <view class="register_li_m">
  7. <text>您的供应商资格已被停用,详情请联系管理人员; </text>
  8. <text>联系电话:13227872231</text>
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. import {} from '@/api/index.js'
  15. import { config } from '@/api/request/config.js'
  16. export default {
  17. data() {
  18. return {
  19. form:{
  20. name:'',
  21. },
  22. }
  23. },
  24. onLoad(option) {
  25. },
  26. onShow(){
  27. },
  28. methods: {
  29. }
  30. }
  31. </script>
  32. <style lang="stylus" scoped>
  33. .register{
  34. height:100%;
  35. width:100%;
  36. display flex
  37. flex-direction column;
  38. //padding-bottom: 220rpx;
  39. .register_li{
  40. background #fff;
  41. border-radius:20rpx;
  42. margin:20rpx 20rpx 0;
  43. padding:20rpx 0;
  44. box-sizing: border-box;
  45. .register_li_t{
  46. width:204rpx;
  47. height:200rpx;
  48. margin: 125rpx 0 0 258rpx;
  49. }
  50. .register_li_m{
  51. margin-top: 92rpx;
  52. margin-bottom: 60rpx;
  53. text-align: left;
  54. padding: 0 50rpx;
  55. box-sizing: border-box;
  56. >text{
  57. display: block;
  58. }
  59. >text:nth-child(1){
  60. font-size: 28rpx;
  61. font-family: PingFang SC;
  62. font-weight: 500;
  63. color: #333333;
  64. line-height: 28rpx;
  65. margin-bottom: 24rpx;
  66. }
  67. >text:nth-child(2){
  68. font-size: 28rpx;
  69. font-family: PingFang SC;
  70. font-weight: 500;
  71. color: #333333;
  72. line-height: 28rpx;
  73. }
  74. }
  75. }
  76. }
  77. /deep/.input-value-border{
  78. display :none !important;
  79. }
  80. </style>