unitInformation.vue 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <template>
  2. <view style="background-color: $color-white !important;">
  3. <u-navbar :back-text="i18n('Back')" :back-text-style="backStyle" back-icon-color="#fff" title-color="#fff"
  4. :background="background" title-width="300" :title="i18n('UnitInformation')"></u-navbar>
  5. <!-- 单元格 -->
  6. <u-cell-group>
  7. <!-- 单位logo -->
  8. <u-cell-item :title="$i18n.locale=='zh'?'单位logo':'Unit logo'"></u-cell-item>
  9. <!-- 营业执照名称 -->
  10. <u-cell-item :title="$i18n.locale=='zh'?'营业执照名称':'business license'"></u-cell-item>
  11. <!-- 对外展示名称 -->
  12. <u-cell-item :title="$i18n.locale=='zh'?'对外展示名称':'Name of exhibition'" :required="true"></u-cell-item>
  13. <!-- 公司性质 -->
  14. <u-cell-item :title="$i18n.locale=='zh'?'公司性质':'Nature of the company'" :required="true"></u-cell-item>
  15. <!-- 营业范围 -->
  16. <u-cell-item :title="$i18n.locale=='zh'?'营业范围':'Business scope'" ></u-cell-item>
  17. <!-- 公司规模 -->
  18. <u-cell-item :title="$i18n.locale=='zh'?'公司规模':'Company size'"></u-cell-item>
  19. <!-- 上市/投资状态 -->
  20. <u-cell-item :title="$i18n.locale=='zh'?'上市/投资状态':'Listing / investment status'" :required="true"></u-cell-item>
  21. <!-- 公司成立时间 -->
  22. <u-cell-item :title="$i18n.locale=='zh'?'公司成立时间':'Time of incorporation'"></u-cell-item>
  23. <!-- 公司介绍 -->
  24. <u-cell-item :title="$i18n.locale=='zh'?'公司介绍':'Company profile'"></u-cell-item>
  25. </u-cell-group>
  26. <u-button class="buttonStyle" @click="" type="primary">{{i18n('SubmitAndDownload')}}</u-button>
  27. </view>
  28. </template>
  29. <script>
  30. import listCell from '@/components/JumpBox';
  31. export default {
  32. components: {
  33. listCell
  34. },
  35. data() {
  36. return {
  37. background: {
  38. backgroundImage: 'linear-gradient(270deg, #4BC0E2 0%, #538BE7 100%)',
  39. },
  40. backStyle: {
  41. color: '#FFFFFF',
  42. },
  43. };
  44. },
  45. onShow() {
  46. },
  47. methods: {
  48. navTo(route) {
  49. this.$mRouter.push({
  50. route
  51. });
  52. },
  53. i18n(data) {
  54. return this.$t('common.' + data);
  55. },
  56. }
  57. }
  58. </script>
  59. <style lang="scss" scoped>
  60. page,
  61. body.pages-profile-profileSetUp-setUp uni-page-body {
  62. background-color: #fff !important;
  63. // height: 110vh;
  64. .buttonStyle{
  65. width: 640upx;
  66. margin-top: 120upx;
  67. }
  68. }
  69. </style>