|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <template>
- <div class="home_wrapper">
- <header-nav
- :headings="headingsTitle"
- :currentNav="3"
- returnUrl="/sunVillage/shareBonus"
- ></header-nav>
- <equityHeader :serialTag="2"></equityHeader>
- <div class="holding_header">
- <div class="unit">户主</div>
- <div class="head">
- <img src="../../../assets/images/sunVillage/head_portrait.jpg" />
- </div>
- <div class="name">刘说的</div>
- <div class="allNum">总股数<span class="num">4500</span></div>
- </div>
- <div class="info_main">
- <div class="info_item">
- <div class="v_title">人人股</div>
- <div class="v_content single">400</div>
- </div>
- <div class="info_item">
- <div class="v_title">土土股</div>
- <div class="v_content single">400</div>
- </div>
- <div class="info_item">
- <div class="v_title">劳劳股</div>
- <div class="v_content single">400</div>
- </div>
- <div class="info_item">
- <div class="v_title">资资股</div>
- <div class="v_content single">400</div>
- </div>
- </div>
- </div>
- </template>
-
- <style scoped lang="scss">
- .home_wrapper {
- width: 100%;
- padding-top: 198px;
- min-height: 100vh;
- background: #fff;
- .holding_header {
- margin: 20px 24px 0;
- height: 112px;
- display: flex;
- justify-content: center; /* 相对父元素水平居中 */
- align-items: center; /* 子元素相对父元素垂直居中 */
- text-align: center;
- font-size: 30px;
- .unit {
- width: 98px;
-
- color: #07c160;
- }
- .head {
- width: 64px;
- height: 64px;
- margin-left: 20px;
- img {
- width: 100%;
- height: 100%;
- }
- }
- .name {
- width: 150px;
- }
- .allNum {
- flex: 1;
- color: #999;
- text-align: left;
- .num {
- color: #07c160;
- padding-left: 10px;
- }
- }
- }
- .info_main {
- margin: 0 24px;
- .info_item {
- margin: 20px 20px 0;
-
- display: flex;
- font-size: 28px;
- border-bottom: 1px solid #e6e6e6;
- .v_title {
- width: 308px;
- color: #999;
- height: 112px;
- padding-right: 90px;
- justify-content: flex-end;
- display: flex;
- align-items: center;
- }
- .v_content {
- flex: 1;
- &.single {
- display: flex;
- justify-content: center;
- align-items: center;
- .input_style {
- width: 100%;
- text-align: center;
- height: 90px;
- }
- }
- }
- }
- }
- }
- </style>
-
-
- <script>
- import headerNav from "@/components/sunVillage/common/header.vue";
- import equityHeader from "@/components/sunVillage/equity_header";
- export default {
- name: "sunVillageInjointMeansOfDesc",
- components: { headerNav, equityHeader },
- data() {
- return {
- headingsTitle: "股权分红",
- };
- },
- mounted() {},
- methods: {
- skip(url) {
- this.$router.push(url);
- },
- },
- };
- </script>
|