8940ba0e9b9d48a5da408e9f77253089277d7f4f.svn-base 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <el-container>
  3. <el-main style="padding:0px;overflow:hidden">
  4. <div class="wrapper">
  5. <h4>审核信息</h4>
  6. <el-row :gutter="20">
  7. <el-col :span="24">
  8. <p>
  9. <span class="label">审核人:</span>
  10. <span>{{form.szxzqxzj9}}</span>
  11. </p>
  12. </el-col>
  13. <el-col :span="24">
  14. <p>
  15. <span class="label">审核人联系方式:</span>
  16. <span>{{form.szxzqdm10}}</span>
  17. </p>
  18. </el-col>
  19. <el-col :span="24">
  20. <p>
  21. <span class="label">审核意见:</span>
  22. <span>{{form.shyj}}</span>
  23. </p>
  24. </el-col>
  25. </el-row>
  26. </div>
  27. </el-main>
  28. <!-- <div class="no_data" v-if="noData">
  29. <span class="label">暂无数据</span>
  30. </div> -->
  31. </el-container>
  32. </template>
  33. <script>
  34. import request from "@util/gw_ajax_request.js"
  35. export default {
  36. props: ['currentObjectId','currentObjectCode','currentObjectRgstrId','baseId','formInfo'],
  37. data(){
  38. return{
  39. noData: false
  40. }
  41. },
  42. computed:{
  43. form(){
  44. return this.formInfo.certificateInfo
  45. }
  46. },
  47. mounted(){
  48. },
  49. methods:{
  50. },
  51. }
  52. </script>
  53. <style scoped>
  54. .wrapper{
  55. min-height: 300px;
  56. line-height: 32px;
  57. margin-bottom: 26px;
  58. }
  59. h4{
  60. color: #666;
  61. border-left: solid #009fff 3px;
  62. line-height: 14px;
  63. padding-left: 8px;
  64. margin-bottom: 12px;
  65. }
  66. .label{
  67. display: inline-block;
  68. /* min-width: 80px; */
  69. color: #999;
  70. }
  71. .label+span{
  72. color: #333;
  73. }
  74. .no_data{
  75. text-align: center;
  76. width: 100%;
  77. line-height: 100px;
  78. }
  79. </style>