| 1234567891011121314151617181920212223242526272829 |
- <template>
- <el-row class="copyright">
- <span class="copyright__text">联系方式:0531-58236368</span>
- <span class="copyright__text">邮箱:zcyl@zcylian.com</span>
- <span class="copyright__text">Copyright© 招采云链(山东)信息服务有限公司版权所有|ICP备案证书号:鲁ICP备2021012978号</span>
- </el-row>
- </template>
- <script>
- export default {
- name: 'Copyright'
- }
- </script>
- <style lang="scss">
- .copyright{
- margin-top: 57px;
- margin-bottom: 25px;
- text-align: center;
- }
- .copyright__text{
- margin-right: 25px;
- font-size: 14px;
- color: #999999;
- &:nth-last-child(1){
- margin-right: 0;
- }
- }
- </style>
|