移动端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

215 lines
5.1 KiB

  1. <template>
  2. <div class="app-container">
  3. <div class="header_main">
  4. 查看企业工商户
  5. <div class="return_btn" @click="onClickLeft"></div>
  6. </div>
  7. <div class="jg"></div>
  8. <div class="main_box">
  9. <van-cell title="企业名称" :border="false" value="企业名称" />
  10. <van-cell title="法人/负责人" :border="false" value="法人/负责人" />
  11. <van-cell title="所在地区" :border="false" value="所在地区" />
  12. <van-cell title="统一社会信用代码" :border="false" value="统一社会信用代码" />
  13. <van-cell title="手机号码" :border="false" value="手机号码" />
  14. <van-cell title="企业分支机构" :border="false" value="企业分支机构" />
  15. <van-cell title="详细地址" :border="false" value="详细地址" />
  16. <van-cell title="企业投资人" :border="false" value="企业投资人" />
  17. <van-cell title="详细地址" :border="false" value="详细地址" />
  18. <van-cell title="经营类别" :border="false" value="经营类别" />
  19. <van-cell title="经营方式" :border="false" value="经营范围" />
  20. <van-cell title="经营范围" :border="false" value="统一社会信用代码" />
  21. </div>
  22. <p class="submitButton" @click="$router.push({name:'lawEnforcementEnterpriseRelation'})">关联案件</p>
  23. </div>
  24. </template>
  25. <script>
  26. import { getScheme } from "@/api/lawEnforcement/index";
  27. export default {
  28. name: "programmeDetail",
  29. data() {
  30. return {
  31. showBankType:false,
  32. showPayeeType:false,
  33. showPicker:false,
  34. form:{},
  35. bankType:'',
  36. payeeType:'',
  37. value:'',
  38. bankTypeOptions:[],
  39. payeeTypeOptions:[],
  40. tEnforceSchemeHandlerList:[],
  41. minDate: new Date(2020, 0, 1),
  42. maxDate: new Date(2025, 10, 1),
  43. currentDate: new Date(2021, 0, 17),
  44. activeNames: ['1'],
  45. activeNames1: ['1'],
  46. activeNames2: ['1'],
  47. };
  48. },
  49. created() {
  50. // this.getDictionaries()
  51. },
  52. methods: {
  53. getDictionaries(){
  54. getScheme(this.$route.query.id).then((response) => {
  55. this.form = response.data;
  56. });
  57. },
  58. goBack(){
  59. window.history.go(-1)
  60. }
  61. },
  62. }
  63. </script>
  64. <style scoped lang="scss">
  65. .jg{
  66. height: 116px;
  67. }
  68. .app-container {
  69. padding: 2% 0;
  70. }
  71. /deep/ .van-collapse-item__content{
  72. padding: 0;
  73. }
  74. /deep/ .van-cell{
  75. padding-bottom: 0;
  76. padding-top: 0;
  77. margin-bottom: 10PX;
  78. &:last-child{
  79. margin-bottom: 0;
  80. }
  81. }
  82. .cf{
  83. padding: 0 3%;
  84. margin-top: 20PX;
  85. margin-bottom: 20PX;
  86. .van-row{
  87. background: #F0F3F5;
  88. .van-col{
  89. padding: 5PX 0;
  90. font-size: 12PX!important;
  91. text-align: center;
  92. p{
  93. color: #1D6FE9;
  94. }
  95. }
  96. &:first-child{
  97. background: transparent;
  98. }
  99. }
  100. }
  101. .header_main{
  102. height: 116px;
  103. background: url('../../../../static/images/lawEnforcement/new/list_head.png') no-repeat;
  104. background-size: 100% 100%;
  105. position: fixed;
  106. top: 0;
  107. left: 0;
  108. width: 100%;
  109. font-size: 36px;
  110. line-height: 116px;
  111. text-align: center;
  112. color: #fff;
  113. z-index: 999;
  114. .return_btn{
  115. width: 24px;
  116. height: 43.2px;
  117. background: url('../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat;
  118. background-size: 20px 36px;
  119. position: absolute;
  120. left: 38px;
  121. top: 36px;
  122. }
  123. .add_btn{
  124. width: 56.4px;
  125. height: 40.8px;
  126. background: url('../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat;
  127. background-size: 47px 34px;
  128. position: absolute;
  129. right: 38px;
  130. top: 36px;
  131. }
  132. }
  133. /deep/ .van-radio--horizontal{
  134. margin-left: 0.32rem;
  135. margin-right: 0;
  136. }
  137. .peopleList{
  138. padding-right: 3%;
  139. .van-row{
  140. margin-bottom: 10PX;
  141. .van-col{
  142. text-align: center;
  143. font-size: 14PX;
  144. }
  145. &:first-child{
  146. .van-col{
  147. color: #1D6FE9;
  148. }
  149. }
  150. }
  151. }
  152. .main_title{
  153. font-size: 0.4rem;
  154. color: #1D6FE9;
  155. margin: 0.2rem 6%;
  156. margin-top: 0;
  157. position: relative;
  158. }
  159. .main_box{
  160. width: 96%;
  161. margin: 0 auto;
  162. border-radius: 10PX;
  163. box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
  164. overflow: hidden;
  165. background-color: #FFF;
  166. padding: 10PX 0;
  167. .van-icon{
  168. vertical-align: middle;
  169. }
  170. .custom-title{
  171. font-size: 17PX;
  172. color: #333333;
  173. vertical-align: middle;
  174. line-height: 1;
  175. position: relative;
  176. }
  177. .tap{
  178. color: #1D6FE9;
  179. }
  180. .bgBlue{
  181. display: block;
  182. position: absolute;
  183. width: 17PX;
  184. height: 17PX;
  185. border-radius: 50%;
  186. background-color: rgba(29,111,233,0.26);
  187. top: -2PX;
  188. right: -8PX;
  189. }
  190. }
  191. .submitButton{
  192. width: 45%;
  193. margin: 0 auto;
  194. background-image: linear-gradient(to right, #2E79E9 , #77A6EF);
  195. text-align: center;
  196. color: #ffffff;
  197. height: 70px;
  198. line-height: 70px;
  199. border-radius: 8PX;
  200. margin-top: 25PX;
  201. }
  202. .addFamily{
  203. position: absolute;
  204. top: -2px;
  205. right: 0;
  206. border-radius: 50%;
  207. }
  208. </style>