Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

fromData.js 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. import {
  2. fileURL
  3. } from "@/utils/network/api.js";
  4. export default [{
  5. 'title': '营业执照',
  6. 'type': 14,
  7. 'vertical': 2,
  8. 'underline': false,
  9. 'required': false,
  10. 'placeholderImg':'image/applyCard/zhizhao.png',
  11. 'inputType': 1,
  12. 'value': 'userName',
  13. 'hint': '上传企业的营业执照',
  14. 'show': true,
  15. }, {
  16. 'title': '人像面',
  17. 'type': 14,
  18. 'vertical': 2,
  19. 'underline': false,
  20. 'required': false,
  21. 'placeholderImg':'/image/applyCard/renxiang.png',
  22. 'inputType': 1,
  23. 'value': 'userIdPoImageUrl',
  24. 'hint': '上传身份证的人像面',
  25. 'show': false,
  26. },
  27. {
  28. 'title': '国徽面',
  29. 'type': 14,
  30. 'vertical': 2,
  31. 'underline': false,
  32. 'required': false,
  33. 'placeholderImg': 'image/applyCard/guohui.png',
  34. 'inputType': 1,
  35. 'value': 'userIdNeImageUrl',
  36. 'hint': '上传身份证的国徽面',
  37. 'show': false,
  38. },
  39. {
  40. 'title': '委托书',
  41. 'type': 14,
  42. 'vertical': 2,
  43. 'underline': false,
  44. 'required': false,
  45. 'placeholderImg': 'image/applyCard/weituoshu.png',
  46. 'inputType': 1,
  47. 'value': 'userIdPoImageUrl',
  48. 'hint': '上传文字清晰的委托书',
  49. 'show': true,
  50. },
  51. {
  52. 'title': '识别信息如下',
  53. 'type': 100,
  54. 'show': false,
  55. },
  56. {
  57. 'title': '公司名称',
  58. 'type': 2,
  59. 'inputType': 'number',
  60. 'vertical': 1,
  61. 'userName': '',
  62. 'value': 'userName',
  63. 'required': false,
  64. 'hint': '请输入公司名称',
  65. 'underline': true,
  66. 'maxlength': 3,
  67. 'show': true,
  68. }, {
  69. 'title': '部门名称',
  70. 'type': 2,
  71. 'inputType': 'number',
  72. 'vertical': 1,
  73. 'userName': '',
  74. 'value': 'department',
  75. 'required': false,
  76. 'hint': '请输入部门名称',
  77. 'underline': true,
  78. 'maxlength': 3,
  79. 'show': true,
  80. },
  81. {
  82. 'title': '社会信用代码',
  83. 'type': 2,
  84. 'inputType': 'number',
  85. 'vertical': 1,
  86. 'userName': '',
  87. 'value': 'userIdNum',
  88. 'required': false,
  89. 'hint': '请输入社会信用代码',
  90. 'underline': true,
  91. 'maxlength': 3,
  92. 'show': true,
  93. },
  94. {
  95. 'uploadCarBottom': true,
  96. 'title': '姓名',
  97. 'type': 2,
  98. 'inputType': 'number',
  99. 'vertical': 1,
  100. 'userName': '',
  101. 'value': 'userName',
  102. 'required': false,
  103. 'hint': '请输入姓名',
  104. 'underline': true,
  105. 'maxlength': 3,
  106. 'show': false,
  107. }, {
  108. 'title': '联系方式',
  109. 'type': 2,
  110. 'inputType': 'number',
  111. 'vertical': 1,
  112. 'userName': '',
  113. 'value': 'tel',
  114. 'required': false,
  115. 'hint': '请输入联系方式',
  116. 'underline': true,
  117. 'maxlength': 11,
  118. 'show': false,
  119. }, {
  120. 'title': '证件号码',
  121. 'type': 2,
  122. 'value': 'userIdNum',
  123. 'required': false,
  124. 'underline': true,
  125. 'hint': '请输入证件号码',
  126. 'show': false,
  127. }, {
  128. 'title': '住址',
  129. 'type': 2,
  130. 'value': 'address',
  131. 'required': false,
  132. 'underline': true,
  133. 'hint': '请输入住址',
  134. 'show': false,
  135. }, {
  136. 'title': '本人办理',
  137. 'type': 7,
  138. 'underline': true,
  139. 'value': 'isSelf',
  140. 'itemData': [{
  141. 'checked': true, //默认选中
  142. 'value': '1',
  143. 'name': '是'
  144. }, {
  145. 'checked': false,
  146. 'value': '2',
  147. 'name': '否'
  148. }],
  149. }, {
  150. 'title': '经办人证件人像面',
  151. 'type': 14,
  152. 'vertical': 2,
  153. 'underline': false,
  154. 'required': false,
  155. 'placeholderImg': '/image/applyCard/renxiang.png',
  156. 'inputType': 1,
  157. 'value': 'agentPosImgUrl',
  158. 'hint': '上传身份证的人像面',
  159. 'show': true
  160. },
  161. {
  162. 'title': '经办人证件国徽面',
  163. 'type': 14,
  164. 'vertical': 2,
  165. 'underline': false,
  166. 'required': false,
  167. 'placeholderImg': 'image/applyCard/guohui.png',
  168. 'inputType': 1,
  169. 'value': 'agentNegImgUrl',
  170. 'hint': '上传身份证的国徽面',
  171. 'show': true
  172. }, {
  173. 'title': '经办人姓名',
  174. 'type': 2,
  175. 'underline': true,
  176. 'value': 'agentName',
  177. 'hint': '请输入经办人姓名',
  178. 'show': true
  179. }, {
  180. 'title': '经办人电话',
  181. 'type': 2,
  182. 'underline': true,
  183. 'value': 'agentTel',
  184. 'hint': '请输入经办人电话',
  185. 'titleShow': true,
  186. 'inputType': 'tel',
  187. 'show': true
  188. }, {
  189. 'title': '经办人证件号码',
  190. 'type': 2,
  191. 'underline': true,
  192. 'value': 'agentIdNum',
  193. 'hint': '请输入证件号码',
  194. 'show': true
  195. },
  196. ]