67 lines
1022 B
Vue
67 lines
1022 B
Vue
|
|
<template>
|
||
|
|
<div class="sendScoped">
|
||
|
|
|
||
|
|
|
||
|
|
<icon type="circle" size="18"/>
|
||
|
|
<icon type="success" size="16"/>
|
||
|
|
|
||
|
|
<div class="btn">
|
||
|
|
<div class="cancelBtn">取消</div>
|
||
|
|
<div class="submitBtn">确定</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: 'sendScoped',
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
|
||
|
|
},
|
||
|
|
onLoad(o) {
|
||
|
|
console.log(o);
|
||
|
|
document.title = "选择发送范围"
|
||
|
|
},
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.sendScoped {
|
||
|
|
background: #FFF;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
.btn {
|
||
|
|
position: fixed;
|
||
|
|
bottom: 0;
|
||
|
|
left: 0;
|
||
|
|
background: #FFF;
|
||
|
|
display: flex;
|
||
|
|
width: 100%;
|
||
|
|
height: 128px;
|
||
|
|
padding: 24px 32px;
|
||
|
|
box-sizing: border-box;
|
||
|
|
|
||
|
|
.cancelBtn,
|
||
|
|
.submitBtn {
|
||
|
|
flex: 1;
|
||
|
|
height: 80px;
|
||
|
|
line-height: 80px;
|
||
|
|
text-align: center;
|
||
|
|
border-radius: 8px;
|
||
|
|
border: 2px solid #CCCCCC;
|
||
|
|
}
|
||
|
|
.submitBtn {
|
||
|
|
background: #1365DD;
|
||
|
|
color: #FFF;
|
||
|
|
margin-left: 16px;
|
||
|
|
border: none;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|