aqyxx.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <template>
  2. <view>
  3. <view class="boxt">
  4. <view class="tit">
  5. <image :src="titimg"></image>基本信息
  6. </view>
  7. <view class="txt">统一社会信用代码:<text>91101085620732606</text></view>
  8. <view class="txt">企业类型:<text>其他有限责任公司</text></view>
  9. <view class="flexcw">
  10. <view class="txt">法人姓名:<text>林振宇</text></view>
  11. <view class="txt">注册资金:<text>1000万元</text></view>
  12. </view>
  13. <view class="txt">成立日期:<text>2018年09月20日</text></view>
  14. <view class="txt">营业期限:<text>2018年09月20日 至 2038年09月19日</text></view>
  15. <view class="txt">行业类型:<text>专用设备制造业</text></view>
  16. <view class="flexcw">
  17. <view class="txt">是否制造业:<text>是</text></view>
  18. <view class="txt">是否小微企业:<text>是</text></view>
  19. </view>
  20. <view class="txt">公司简介:<text>安徽嘉欣医疗用品有限公司是一家从事辅料,制品,成型包装等业务的公司,企业的经营范围为:生产经营I、II类6864医用卫生材料、辅料及制品和相关产品一次性消耗品及成型包装;全棉水刺无纺布及其制品、棉花、全棉居家生活护理、化妆、卫生日用消费品;消毒产品;提供上述产品的技术咨询、技术服务和售后服务;灭菌技术服务。</text></view>
  21. <view class="flexcw">
  22. <view class="txt">公司章程:<text class="txta" @click="getDown(a)">在线查看</text></view>
  23. <view class="txt">开户许可证:<text class="txta" @click="getDown(a)">在线查看</text></view>
  24. </view>
  25. </view>
  26. <view class="boxt">
  27. <view class="tit">
  28. <image :src="titimg"></image>全体股东身份及征信
  29. </view>
  30. <view class="flexcw">
  31. <view class="txt">股东1身份证:<text class="txta" @click="getDown(a)">在线查看</text></view>
  32. <view class="txt">股东1征信:<text class="txta" @click="getDown(a)">在线查看</text></view>
  33. </view>
  34. <view class="flexcw">
  35. <view class="txt">股东2身份证:<text class="txta" @click="getDown(a)">在线查看</text></view>
  36. <view class="txt">股东2征信:<text class="txta" @click="getDown(a)">在线查看</text></view>
  37. </view>
  38. <view class="flexcw">
  39. <view class="txt">股东3身份证:<text class="txta" @click="getDown(a)">在线查看</text></view>
  40. <view class="txt">股东3征信:<text class="txta" @click="getDown(a)">在线查看</text></view>
  41. </view>
  42. </view>
  43. <view class="boxt">
  44. <view class="tit">
  45. <image :src="titimg"></image>企业征信
  46. </view>
  47. <view class="txt">申请企业:<text class="txta" @click="getDown(a)">在线查看</text></view>
  48. <view class="txt">关联企业:<text class="txta" @click="getDown(a)">在线查看</text></view>
  49. </view>
  50. <view class="boxt">
  51. <view class="tit">
  52. <image :src="titimg"></image>企业法人及控股人征信
  53. </view>
  54. <view class="txt">企业法人:<text class="txta" @click="getDown(a)">在线查看</text></view>
  55. <view class="flexcw">
  56. <view class="txt">实际控股人:<text class="txta" @click="getDown(a)">在线查看</text></view>
  57. <view class="txt">配偶征信:<text class="txta" @click="getDown(a)">在线查看</text></view>
  58. </view>
  59. </view>
  60. </view>
  61. </template>
  62. <script>
  63. import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
  64. import { selectValue } from '@/utils/common.js';
  65. import noData from "@/components/nodata/nodata.vue"
  66. export default {
  67. props:{
  68. datainfo: {
  69. type: Object,
  70. default () {
  71. return {}
  72. }
  73. },
  74. },
  75. components:{
  76. noData
  77. },
  78. data(){
  79. return{
  80. titimg:require('@/work/static/images/infotit.png'),
  81. }
  82. },
  83. onLoad: function() {
  84. },
  85. methods:{
  86. checkPermi, checkRole,
  87. kaType(ite){
  88. return selectValue(this.tajdlist, ite);
  89. },
  90. getDown(url){
  91. this.$emit('getDown',url)
  92. }
  93. },
  94. }
  95. </script>
  96. <style lang="scss" scoped>
  97. .boxt{padding: 0 16rpx;border-top: 2rpx solid #E6E6E6;}
  98. .tit{font-weight: bold;font-size: 30rpx;color: $com-cd3;display: flex;align-items: center;padding-top: 44rpx;margin-bottom: 50rpx;padding-left: 20rpx;
  99. image{width: 30rpx;height: 30rpx;margin-right: 14rpx;}
  100. }
  101. .txt{font-weight: bold;font-size: 30rpx;color: #222327;margin-bottom: 44rpx;padding-left: 20rpx;
  102. text{color: #666666;font-weight: 500;
  103. &.txta{color: #28C529;}
  104. }
  105. }
  106. .flexcw{display: flex;
  107. .txt{min-width: 50%;}
  108. }
  109. </style>