1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <template>
- <view style="background-color: $color-white !important;">
- <u-navbar :back-text="i18n('Back')" :back-text-style="backStyle" back-icon-color="#fff" title-color="#fff"
- :background="background" title-width="300" :title="i18n('UnitInformation')"></u-navbar>
- <!-- 单元格 -->
- <u-cell-group>
- <!-- 单位logo -->
- <u-cell-item :title="$i18n.locale=='zh'?'单位logo':'Unit logo'"></u-cell-item>
- <!-- 营业执照名称 -->
- <u-cell-item :title="$i18n.locale=='zh'?'营业执照名称':'business license'"></u-cell-item>
- <!-- 对外展示名称 -->
- <u-cell-item :title="$i18n.locale=='zh'?'对外展示名称':'Name of exhibition'" :required="true"></u-cell-item>
- <!-- 公司性质 -->
- <u-cell-item :title="$i18n.locale=='zh'?'公司性质':'Nature of the company'" :required="true"></u-cell-item>
- <!-- 营业范围 -->
- <u-cell-item :title="$i18n.locale=='zh'?'营业范围':'Business scope'" ></u-cell-item>
- <!-- 公司规模 -->
- <u-cell-item :title="$i18n.locale=='zh'?'公司规模':'Company size'"></u-cell-item>
- <!-- 上市/投资状态 -->
- <u-cell-item :title="$i18n.locale=='zh'?'上市/投资状态':'Listing / investment status'" :required="true"></u-cell-item>
- <!-- 公司成立时间 -->
- <u-cell-item :title="$i18n.locale=='zh'?'公司成立时间':'Time of incorporation'"></u-cell-item>
- <!-- 公司介绍 -->
- <u-cell-item :title="$i18n.locale=='zh'?'公司介绍':'Company profile'"></u-cell-item>
- </u-cell-group>
- <u-button class="buttonStyle" @click="" type="primary">{{i18n('SubmitAndDownload')}}</u-button>
- </view>
- </template>
- <script>
- import listCell from '@/components/JumpBox';
- export default {
- components: {
- listCell
- },
- data() {
- return {
- background: {
- backgroundImage: 'linear-gradient(270deg, #4BC0E2 0%, #538BE7 100%)',
- },
- backStyle: {
- color: '#FFFFFF',
- },
- };
- },
- onShow() {
- },
- methods: {
- navTo(route) {
- this.$mRouter.push({
- route
- });
- },
- i18n(data) {
- return this.$t('common.' + data);
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- page,
- body.pages-profile-profileSetUp-setUp uni-page-body {
- background-color: #fff !important;
- // height: 110vh;
- .buttonStyle{
- width: 640upx;
- margin-top: 120upx;
- }
- }
- </style>
|