| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- <template>
- <div class="personal-material">
- <a href=""><返回上一层</a>
- <div class="personal-material-header">
- <p><i class="fa fa-exclamation-circle"></i>抱歉,您的账户未绑定企业,暂无卖家权限!</p>
- <a href="">查看申请记录</a>
- </div>
- <div class="personal-material-content">
- <div class="is-open-store">
- <p><img src="/images/material/arrow-right-blue.png" alt="">所属企业已开店</p>
- <div>
- <p>绑定企业</p>
- <div>企业全称:<input type="text" class="form-control" placeholder="请输入企业全称"><span>检测</span></div>
- </div>
- </div>
- <div class="not-open-store">
- <p><img src="/images/material/arrow-right-yellow.png" alt="">所属企业未开店</p>
- <div>
- <div class="fl">
- <img src="/images/material/car.png" alt="">
- <ul>
- <li>免费入驻 不赚差价</li>
- <li>库存寄售 极速上架</li>
- <li>定量广告 限时免费</li>
- </ul>
- </div>
- <div class="fr">
- <img src="/images/material/house.png" alt="">
- <div>
- <p>请点击下方按钮开设新的店铺</p>
- <span>开设新店铺</span>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <style lang="scss" scoped>
- .personal-material {
- width: 1190px;
- margin: 0 auto;
- p {
- margin: 0;
- }
- a {
- color: #5078cb;
- }
- > a {
- line-height: 71px;
- position: relative;
- right: 105px;
- }
- .personal-material-header {
- height: 111px;
- line-height: 111px;
- border: 1px solid #ebeaea;
- position: relative;
- margin-bottom: 19px;
- p {
- color: #5078cb;
- font-size: 22px;
- text-align: center;
- i {
- margin-right: 20px;
- }
- }
- a {
- position: absolute;
- right: 11px;
- bottom: 14px;
- display: inline-block;
- line-height: normal;
- }
- }
- .personal-material-content {
- height: 593px;
- border: 1px solid #ebeaea;
- margin-bottom: 147px;
- padding: 0 95px;
- > div {
- padding: 0 50px;
- border-radius: 3px;
- > p {
- height: 81px;
- line-height: 81px;
- font-size: 16px;
- font-weight: bold;
- img {
- margin-right: 4px;
- }
- }
- }
- .is-open-store {
- padding-bottom: 29px;
- border-bottom: 1px solid #d5d5d5;
- > div {
- height: 140px;
- border: 1px solid #5078cb;
- p {
- font-weight: bold;
- font-size: 18px;
- margin: 26px 0;
- text-align: center;
- }
- div {
- text-align: center;
- input {
- width: 290px;
- display: inline-block;
- height: 30px;
- border: {
- top-left-radius: 3px;
- bottom-left-radius: 3px;
- top-right-radius: 0;
- bottom-right-radius: 0;
- }
- border-top-left-radius: 3px;
- border-bottom-left-radius: 3px;
- border: 1px solid #cdcdcd;
- margin-left: 10px;
- }
- span {
- display: inline-block;
- width: 87px;
- height: 30px;
- line-height: 31px;
- text-align: center;
- color: #fff;
- background: #5078cb;
- margin-left: -1px;
- border-top-right-radius: 3px;
- border-bottom-right-radius: 3px;
- }
- }
- }
- }
- .not-open-store {
- > div {
- height: 171px;
- border: 1px solid #ff8522;
- .fl {
- list-style: inside;
- color: #ff8522;
- height: 130px;
- width: 391px;
- margin-top: 25px;
- border-right: 1px dashed #fce3cf;
- img {
- margin: 11px 0 0 16px;
- }
- ul {
- list-style: inside;
- color: #ff8522;
- float: right;
- margin: 19px 61px 0 36px;
- li {
- margin-bottom: 20px;
- &:nth-child(2) {
- margin-left: 10px;
- }
- &:nth-child(3) {
- margin-left: 29px;
- }
- }
- }
- }
- .fr {
- width: 504px;
- img {
- margin: 45px 0 0 62px;
- }
- div {
- float: right;
- margin-right: 140px;
- margin-top: 44px;
- text-align: center;
- p {
- margin-bottom: 29px;
- }
- span {
- display: inline-block;
- width: 124px;
- height: 32px;
- color: #fff;
- font-size: 16px;
- text-align: center;
- line-height: 32px;
- background: #ff8522;
- border-radius: 3px;
- cursor: pointer;
- }
- }
- }
- }
- }
- }
- }
- </style>
|