67 lines
1.4 KiB
Plaintext
67 lines
1.4 KiB
Plaintext
<template>
|
||
<view class="admin-page">
|
||
<view class="admin-card content-card">
|
||
<view class="tabs-row">
|
||
<view class="tab-item active">PC端配置</view>
|
||
</view>
|
||
|
||
<view class="config-form">
|
||
<view class="form-item">
|
||
<text class="label">网站域名:</text>
|
||
<input class="form-input" placeholder="请输入PC端网站域名" />
|
||
<text class="tip">PC端访问的地址</text>
|
||
</view>
|
||
<view class="form-item">
|
||
<text class="label">ICP备案号:</text>
|
||
<input class="form-input" placeholder="请输入备案号" />
|
||
<text class="tip">展示在页面底部的备案信息</text>
|
||
</view>
|
||
|
||
<view class="form-btns">
|
||
<button class="btn primary">提交</button>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script setup lang="uts">
|
||
// PC配置逻辑
|
||
</script>
|
||
|
||
<style scoped>
|
||
.config-form {
|
||
padding: 40px 10%;
|
||
}
|
||
|
||
.form-item {
|
||
margin-bottom: 30px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
|
||
.form-item .label {
|
||
font-weight: bold;
|
||
margin-bottom: 10px;
|
||
color: #303133;
|
||
}
|
||
|
||
.form-input {
|
||
border: 1px solid #dcdfe6;
|
||
padding: 10px 15px;
|
||
border-radius: 4px;
|
||
}
|
||
|
||
.tip {
|
||
font-size: 12px;
|
||
color: #909399;
|
||
margin-top: 8px;
|
||
}
|
||
|
||
.btn.primary {
|
||
width: 80px;
|
||
background-color: #2d8cf0;
|
||
color: #fff;
|
||
}
|
||
</style>
|