200 lines
4.2 KiB
Vue
200 lines
4.2 KiB
Vue
<template>
|
|
<div class="AddAlbum">
|
|
<div class="form-group">
|
|
<div class="form-group__item">
|
|
<div class="left">
|
|
<label>*</label>
|
|
<span>相册名称</span>
|
|
</div>
|
|
<div class="right">
|
|
<input placeholder="请输入相册名称" placeholder-style="color: #999" />
|
|
</div>
|
|
</div>
|
|
<div class="form-group__item">
|
|
<div class="left">
|
|
<label>*</label>
|
|
<span>水印</span>
|
|
</div>
|
|
<div class="right" @click="linkTo('./WatermarkSetting')">
|
|
<span>请选择</span>
|
|
<image src="./images/right.png" />
|
|
</div>
|
|
</div>
|
|
<div class="form-group__item">
|
|
<div class="left">
|
|
<label>*</label>
|
|
<span>拍摄人</span>
|
|
</div>
|
|
<div class="right" @click="linkTo('./PersonnelSetting')">
|
|
<span>请选择</span>
|
|
<image src="./images/right.png" />
|
|
</div>
|
|
</div>
|
|
<div class="form-group__item" @click="linkTo('./SourceSetting')">
|
|
<div class="left">
|
|
<label>*</label>
|
|
<span>照片来源</span>
|
|
</div>
|
|
<div class="right">
|
|
<span>请选择</span>
|
|
<image src="./images/right.png" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-btn" hover-class="text-hover">保存</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'AddAlbum',
|
|
|
|
appName: '新增相册',
|
|
|
|
data () {
|
|
return {
|
|
|
|
}
|
|
},
|
|
|
|
onLoad () {
|
|
|
|
},
|
|
|
|
methods: {
|
|
linkTo (url) {
|
|
uni.navigateTo({
|
|
url
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.AddAlbum {
|
|
padding-bottom: 130px;
|
|
|
|
* {
|
|
line-height: 1;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.form-btn {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 1;
|
|
width: 100%;
|
|
height: 112px;
|
|
line-height: 112px;
|
|
text-align: center;
|
|
color: #fff;
|
|
font-size: 32px;
|
|
background: #1365DD;
|
|
|
|
&:active {
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
.form-group {
|
|
margin-bottom: 16px;
|
|
padding: 0 32px;
|
|
background: #fff;
|
|
|
|
.form-group__item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 112px;
|
|
font-size: 32px;
|
|
color: #333333;
|
|
border-bottom: 1px solid #DDDDDD;
|
|
|
|
&.form-group__checked {
|
|
height: auto;
|
|
padding: 32px 0;
|
|
|
|
.left {
|
|
h2 {
|
|
margin-bottom: 12px;
|
|
color: #333333;
|
|
font-size: 32px;
|
|
}
|
|
|
|
&.left-add {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
h2 {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.add-btn {
|
|
position: relative;
|
|
width: 48px;
|
|
height: 48px;
|
|
margin-right: 16px;
|
|
border-radius: 50%;
|
|
overflow: hidden;
|
|
background: #1088F9;
|
|
|
|
&::after {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
z-index: 1;
|
|
width: 4px;
|
|
height: 24px;
|
|
background: #fff;
|
|
content: ' ';
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
&::before {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
z-index: 1;
|
|
width: 24px;
|
|
height: 4px;
|
|
background: #fff;
|
|
content: ' ';
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
}
|
|
|
|
p {
|
|
color: #999999;
|
|
font-size: 28px;
|
|
}
|
|
}
|
|
}
|
|
|
|
label {
|
|
color: #FF4466;
|
|
}
|
|
|
|
&:last-child {
|
|
border: none;
|
|
}
|
|
|
|
.right {
|
|
display: flex;
|
|
align-items: center;
|
|
color: #999999;
|
|
image {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
input {
|
|
text-align: right;
|
|
color: #999;
|
|
font-size: 32px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style> |