forbidden.vue 1.6 KB

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