bfrxx.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <template>
  2. <view>
  3. <view class="boxt">
  4. <view class="tit">
  5. <image :src="titimg"></image>基本信息
  6. </view>
  7. <view class="flexcw">
  8. <view class="txt">法人姓名:<text>林振宇</text></view>
  9. <view class="txt">用户类型:<text>非农户</text></view>
  10. </view>
  11. <view class="txt">身份证号:<text>34282419730618003X</text>
  12. <text class="txta ml8" @click="getPreview">查看照片</text>
  13. </view>
  14. <view class="txt">居住地址:<text>安徽省安庆市潜山市梅城镇</text></view>
  15. <view class="txt">证件有效期:<text>2017.12.27 - 2037.12.27</text></view>
  16. <view class="flexcw">
  17. <view class="txt">手机号码:<text>18705568888</text></view>
  18. <view class="txt">家庭人口:<text>3人</text></view>
  19. </view>
  20. <view class="flexcw">
  21. <view class="txt">法人职业:<text>总经理</text></view>
  22. <view class="txt">有无贷款:<text>无</text></view>
  23. </view>
  24. <view class="flexcw">
  25. <view class="txt">应收应付款:<text>10万元</text></view>
  26. <view class="txt">经营情况:<text class="txta" @click="getDown(a)">在线查看</text></view>
  27. </view>
  28. <view class="txt">经营效益:<text class="txta" @click="getDown(a)">在线查看</text></view>
  29. </view>
  30. <view class="boxt">
  31. <view class="tit">
  32. <image :src="titimg"></image>家庭婚姻信息
  33. </view>
  34. <view class="flexcw">
  35. <view class="txt">婚姻状态:<text>已婚</text></view>
  36. <view class="txt">配偶姓名:<text>刘熙君</text></view>
  37. </view>
  38. <view class="txt">配偶身份证号:<text>34282419730618003X</text>
  39. <text class="txta ml8" @click="getPreview">查看照片</text>
  40. </view>
  41. <view class="txt">结婚证:<text class="txta" @click="getDown(a)">在线查看</text></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 class="txt">户口簿(配偶页):<text class="txta" @click="getDown(a)">在线查看</text></view>
  50. </view>
  51. </view>
  52. </template>
  53. <script>
  54. import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
  55. import { selectValue } from '@/utils/common.js';
  56. import noData from "@/components/nodata/nodata.vue"
  57. export default {
  58. props:{
  59. datainfo: {
  60. type: Object,
  61. default () {
  62. return {}
  63. }
  64. },
  65. },
  66. components:{
  67. noData
  68. },
  69. data(){
  70. return{
  71. titimg:require('@/work/static/images/infotit.png'),
  72. }
  73. },
  74. onLoad: function() {
  75. },
  76. methods:{
  77. checkPermi, checkRole,
  78. kaType(ite){
  79. return selectValue(this.tajdlist, ite);
  80. },
  81. getDown(url){
  82. this.$emit('getDown',url)
  83. },
  84. getPreview(url){
  85. this.$emit('getPreview',url)
  86. },
  87. },
  88. }
  89. </script>
  90. <style lang="scss" scoped>
  91. .boxt{padding: 0 16rpx;border-top: 2rpx solid #E6E6E6;}
  92. .tit{font-weight: bold;font-size: 30rpx;color: $com-cd3;display: flex;align-items: center;padding-top: 44rpx;margin-bottom: 50rpx;padding-left: 20rpx;
  93. image{width: 30rpx;height: 30rpx;margin-right: 14rpx;}
  94. }
  95. .txt{font-weight: bold;font-size: 30rpx;color: #222327;margin-bottom: 44rpx;padding-left: 20rpx;
  96. text{color: #666666;font-weight: 500;
  97. &.txta{color: #28C529;}
  98. }
  99. }
  100. .flexcw{display: flex;
  101. .txt{min-width: 50%;}
  102. }
  103. </style>