You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.5 KiB
62 lines
1.5 KiB
![]()
2 months ago
|
<template>
|
||
|
<div class="domain-wrap">
|
||
|
<p>设置自己的域名,需要做 2 步站外操作。如果暂时未准备好,或打算稍后设置,可以先选用平台免费域名,平台随时支持域名修改。 </p>
|
||
|
<div class="domain-box">
|
||
|
<div class="domain-item">
|
||
|
<p>1. 域名必须在阿里云完成 ICP 备案</p>
|
||
|
<p>备案网址:https://beian.aliyun.com</p>
|
||
|
</div>
|
||
|
<div class="domain-item">
|
||
|
<p>2. 域名要解析到平台服务器上</p>
|
||
|
<p>备案网址:https://beian.aliyun.com</p>
|
||
|
</div>
|
||
|
<div class="domain-item">
|
||
|
<p>3. 域名填写</p>
|
||
|
<el-input placeholder="填写完整域名" />
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
// import GuipInput from '@/components/GuipInput.vue';
|
||
|
|
||
|
export default {
|
||
|
name: '',
|
||
|
props: [''],
|
||
|
components: {
|
||
|
// GuipInput,
|
||
|
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
onSwitchChange(data) {
|
||
|
console.log(data, '---');
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
<style lang="scss">
|
||
|
.domain-wrap {
|
||
|
.domain-item{
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
.domain-item p:last-child{
|
||
|
padding-left: 23px;
|
||
|
color: #8A9099;
|
||
|
}
|
||
|
p{
|
||
|
text-align: left;
|
||
|
line-height: 18px;
|
||
|
margin-bottom: 8px;
|
||
|
}
|
||
|
.domain-box {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: flex-start;
|
||
|
}
|
||
|
}
|
||
|
</style>
|