aqyxx.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <view>
  3. <view class="boxt">
  4. <view class="tit">
  5. <image :src="titimg"></image>基本信息
  6. </view>
  7. <view class="txt">统一社会信用代码:<text>{{qyinfo.creditCode}}</text></view>
  8. <view class="txt">企业类型:<text>{{qyinfo.enterpriseType}}</text></view>
  9. <view class="flexcw">
  10. <view class="txt">法人姓名:<text>{{qyinfo.legalName}}</text></view>
  11. <view class="txt">注册资金:<text>{{qyinfo.registeredCapital}}</text></view>
  12. </view>
  13. <view class="txt">成立日期:<text>{{qyinfo.establishData}}</text></view>
  14. <view class="txt">营业期限:<text>{{qyinfo.businessTerm}}</text></view>
  15. <view class="txt">行业类型:<text>{{datainfo.categoryType}}</text></view>
  16. <view class="flexcw">
  17. <view class="txt">是否制造业:<text>{{datainfo.isMake=='Y'?'是':'否'}}</text></view>
  18. <view class="txt">是否小微企业:<text>{{datainfo.isSmall=='Y'?'是':'否'}}</text></view>
  19. </view>
  20. <view class="txt">公司简介:<text>{{datainfo.companyIntroduction}}</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. qyinfo:{
  75. type: Object,
  76. default () {
  77. return {}
  78. }
  79. }
  80. },
  81. components:{
  82. noData
  83. },
  84. data(){
  85. return{
  86. titimg:require('@/work/static/images/infotit.png'),
  87. }
  88. },
  89. onLoad: function() {
  90. },
  91. methods:{
  92. checkPermi, checkRole,
  93. kaType(ite){
  94. return selectValue(this.tajdlist, ite);
  95. },
  96. getDown(url){
  97. this.$emit('getDown',url)
  98. }
  99. },
  100. }
  101. </script>
  102. <style lang="scss" scoped>
  103. .boxt{padding: 0 16rpx;border-top: 2rpx solid #E6E6E6;}
  104. .tit{font-weight: bold;font-size: 30rpx;color: $com-cd3;display: flex;align-items: center;padding-top: 44rpx;margin-bottom: 50rpx;padding-left: 20rpx;
  105. image{width: 30rpx;height: 30rpx;margin-right: 14rpx;}
  106. }
  107. .txt{font-weight: bold;font-size: 30rpx;color: #222327;margin-bottom: 44rpx;padding-left: 20rpx;
  108. text{color: #666666;font-weight: 500;
  109. &.txta{color: #28C529;}
  110. }
  111. }
  112. .flexcw{display: flex;
  113. .txt{min-width: 50%;}
  114. }
  115. </style>