parent
50791074c1
commit
b7eefb55ee
7 changed files with 90 additions and 59 deletions
@ -0,0 +1,68 @@ |
|||||||
|
<template> |
||||||
|
<view class="container"> |
||||||
|
<uni-card :is-shadow="false" :border="false" padding="0" is-full> |
||||||
|
<view class="form"> |
||||||
|
<view class="line"> |
||||||
|
<text>邮箱</text> |
||||||
|
<uni-easyinput class="input" v-model="email" placeholder="请输入邮箱" /> |
||||||
|
</view> |
||||||
|
<button type="primary" @click="submit">确认</button> |
||||||
|
</view> |
||||||
|
</uni-card> |
||||||
|
</view> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
import { mailFileSend } from '@/apis/modules/parner.js' |
||||||
|
import { my } from '@/apis/modules/parner.js' |
||||||
|
export default { |
||||||
|
data() { |
||||||
|
return { |
||||||
|
email: '', |
||||||
|
} |
||||||
|
}, |
||||||
|
onShow() { |
||||||
|
|
||||||
|
}, |
||||||
|
methods: { |
||||||
|
// 提交 |
||||||
|
submit() { |
||||||
|
const { email } = this |
||||||
|
if (!email) return this.$util.errMsg('请输入邮箱!') |
||||||
|
const data = uni.getStorageSync('files') |
||||||
|
data.mail = email |
||||||
|
mailFileSend(data).then(res => { |
||||||
|
this.$util.sucMsg('发送成功!') |
||||||
|
setTimeout(() => { |
||||||
|
uni.navigateBack() |
||||||
|
}, 1000) |
||||||
|
}).catch(e => {}) |
||||||
|
}, |
||||||
|
} |
||||||
|
} |
||||||
|
</script> |
||||||
|
|
||||||
|
<style scoped lang="scss"> |
||||||
|
.form { |
||||||
|
padding: 15px; |
||||||
|
background-color: #fff; |
||||||
|
} |
||||||
|
.line { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
margin-bottom: 15px; |
||||||
|
text { |
||||||
|
margin-right: 20rpx; |
||||||
|
font-size: 28rpx; |
||||||
|
} |
||||||
|
.input { |
||||||
|
flex: 1; |
||||||
|
} |
||||||
|
} |
||||||
|
.bind { |
||||||
|
margin-left: 20rpx; |
||||||
|
font-size: 26rpx; |
||||||
|
color: #1f83ff; |
||||||
|
white-space: nowrap; |
||||||
|
} |
||||||
|
</style> |
Loading…
Reference in new issue