forbidden.vue 1.6 KB

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