|
@@ -42,7 +42,7 @@
|
|
|
<div>
|
|
|
<div>
|
|
|
<el-input
|
|
|
- v-model="input"
|
|
|
+ v-model="username"
|
|
|
style="width: 422px; height: 44px"
|
|
|
placeholder=""
|
|
|
/>
|
|
@@ -56,7 +56,7 @@
|
|
|
<div class="title">个人简介</div>
|
|
|
<div>
|
|
|
<el-input
|
|
|
- v-model="input"
|
|
|
+ v-model="introduction"
|
|
|
style="width: 422px; height: 160px"
|
|
|
placeholder="请介绍一下自己吧"
|
|
|
/>
|
|
@@ -70,7 +70,7 @@
|
|
|
<div class="title">预留字段1</div>
|
|
|
<div>
|
|
|
<el-input
|
|
|
- v-model="input"
|
|
|
+ v-model="column_1"
|
|
|
style="width: 422px; height: 44px"
|
|
|
placeholder=""
|
|
|
/>
|
|
@@ -78,7 +78,7 @@
|
|
|
</div>
|
|
|
<div style="display: flex">
|
|
|
<div class="title"></div>
|
|
|
- <div class="buttona">保存</div>
|
|
|
+ <div class="buttona" @click="save">保存</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div v-if="subNavCurrent == 'invite'"></div>
|
|
@@ -105,6 +105,58 @@
|
|
|
</div>
|
|
|
<div v-if="subNavCurrent == 'xiaoxi'"></div>
|
|
|
</div>
|
|
|
+ <el-dialog
|
|
|
+ v-model="dialogVisible"
|
|
|
+ width="260px"
|
|
|
+ :before-close="handleClose"
|
|
|
+ :show-close="false"
|
|
|
+ style="border-radius: 6px"
|
|
|
+ >
|
|
|
+ <div
|
|
|
+ style="
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ flex-direction: column;
|
|
|
+ margin-top: -20px;
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <img
|
|
|
+ src="../../../assets/perfect.png"
|
|
|
+ style="width: 120px; height: 115px"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ <div class="titletop">恭喜您完善信息成功</div>
|
|
|
+ <div class="ji">获得积分+2</div>
|
|
|
+ <div class="btn" style="" @click="enter()">确定</div>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ <el-dialog
|
|
|
+ title="更改手机号"
|
|
|
+ v-model="dialog"
|
|
|
+ width="406px"
|
|
|
+ :before-close="handleClose"
|
|
|
+ style="border-radius: 8px; border: 1px solid #979797"
|
|
|
+ >
|
|
|
+ <div>
|
|
|
+ <div style="margin-top: -20px">
|
|
|
+ <el-input
|
|
|
+ v-model="input"
|
|
|
+ style="width: 358px; height: 46px"
|
|
|
+ placeholder="请输入手机号"
|
|
|
+ ></el-input>
|
|
|
+ </div>
|
|
|
+ <div style="margin-top: 20px;position: relative;">
|
|
|
+ <el-input
|
|
|
+ v-model="input"
|
|
|
+ style="width: 358px; height: 46px"
|
|
|
+ placeholder="请输入验证码"
|
|
|
+ ></el-input>
|
|
|
+ <div style="position: absolute;cursor: pointer; right: 30px;top: 15px;" class="code">获取验证码</div>
|
|
|
+ </div>
|
|
|
+ <div class="change" style="margin-top: 24px">确定更改</div>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
@@ -113,10 +165,40 @@ import { USER_INFO } from "~/utils/constance";
|
|
|
import debounce from "loadsh/debounce";
|
|
|
import * as userApi from "~/api/user";
|
|
|
import { ElMessage, ElMessageBox } from "element-plus";
|
|
|
+import { useUser } from "~/store/user";
|
|
|
+const User = useUser();
|
|
|
+
|
|
|
+const username = User.username;
|
|
|
+const introduction = User.introduction;
|
|
|
+const backgroud_image = User.backgroud_image;
|
|
|
+const avatar = User.avatar;
|
|
|
+const column_1 = ref();
|
|
|
+
|
|
|
+const enter = () => {
|
|
|
+ dialogVisible.value = false;
|
|
|
+};
|
|
|
|
|
|
const subNavCurrent = ref("user");
|
|
|
-// 积分钱包
|
|
|
+// 个人设置
|
|
|
const discountList = USER_INFO;
|
|
|
+//保存
|
|
|
+//模态框控件
|
|
|
+const dialogVisible = ref(false);
|
|
|
+const save = async () => {
|
|
|
+ try {
|
|
|
+ const { data } = await userApi.updata({
|
|
|
+ username: username.value,
|
|
|
+ avatar: avatar.value,
|
|
|
+ introduction: introduction.value,
|
|
|
+ backgroud_image: backgroud_image.value,
|
|
|
+ column_1: column_1.value,
|
|
|
+ });
|
|
|
+ useUser();
|
|
|
+ dialogVisible.value = false;
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+//账号安全
|
|
|
+const dialog = ref(true);
|
|
|
|
|
|
//防抖
|
|
|
const handleSwitchSubNav = debounce((type) => {
|
|
@@ -125,8 +207,67 @@ const handleSwitchSubNav = debounce((type) => {
|
|
|
}, 160);
|
|
|
</script>
|
|
|
|
|
|
- <style lang="scss" scoped>
|
|
|
+<style lang="scss" scoped>
|
|
|
@import "~/styles/variable.scss";
|
|
|
+// 账号安全
|
|
|
+.code {
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #00b0b0;
|
|
|
+ line-height: 20px;
|
|
|
+ text-align: center;
|
|
|
+ font-style: normal;
|
|
|
+}
|
|
|
+.change {
|
|
|
+ width: 102px;
|
|
|
+ height: 40px;
|
|
|
+ background: #00b0b0;
|
|
|
+ border-radius: 4px;
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #ffffff;
|
|
|
+ line-height: 40px;
|
|
|
+ text-align: center;
|
|
|
+ font-style: normal;
|
|
|
+}
|
|
|
+
|
|
|
+.ji {
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 500;
|
|
|
+ font-size: 16px;
|
|
|
+ color: rgba(102, 102, 102, 1);
|
|
|
+ line-height: 30px;
|
|
|
+ text-align: right;
|
|
|
+ font-style: normal;
|
|
|
+ margin-top: 4px;
|
|
|
+}
|
|
|
+.btn {
|
|
|
+ width: 118px;
|
|
|
+ height: 40px;
|
|
|
+ background: #00b0b0;
|
|
|
+ border-radius: 4px;
|
|
|
+ line-height: 40px;
|
|
|
+ text-align: center;
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #ffffff;
|
|
|
+ font-style: normal;
|
|
|
+ margin-top: 14px;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.titletop {
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 600;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #222222;
|
|
|
+ line-height: 30px;
|
|
|
+ text-align: right;
|
|
|
+ font-style: normal;
|
|
|
+ margin-top: 14px;
|
|
|
+}
|
|
|
.phone {
|
|
|
width: 70px;
|
|
|
font-family: PingFangSC, PingFang SC;
|