congzc 1 vuosi sitten
vanhempi
commit
9960c99c4a
2 muutettua tiedostoa jossa 14 lisäystä ja 5 poistoa
  1. +2
    -2
      src/views/createVideo/index.vue
  2. +12
    -3
      src/views/myAccount/index.vue

+ 2
- 2
src/views/createVideo/index.vue Näytä tiedosto

@@ -245,7 +245,7 @@
</div>
<!-- 右侧栏 -->
<div class="right">
<div class="subscript">
<div v-if="AccessToken" class="subscript">
<span>GPT</span>
<img src="../../assets/img/star.png" alt="" />
</div>
@@ -1881,7 +1881,7 @@ onMounted(async () => {
.subscript {
position: absolute;
top: 30px;
right: 30px;
right: 45px;
width: 40px;
height: 40px;
z-index: 3;


+ 12
- 3
src/views/myAccount/index.vue Näytä tiedosto

@@ -26,7 +26,7 @@
<span
class="password pointer"
style="margin-right: 10px"
@click="router.push({ name: 'login', params: { type: 4 } })"
@click.stop="resetPassWord"
>{{ $t("account.reSetPwd") }}</span
>
</div>
@@ -231,6 +231,10 @@ const userNameinput = ref(null); //用户名输入框绑定
const dialogAvatarUrl = ref(null); //图片回显地址
const dialogAvatarData = ref(null); //图片上传数据
const infoDialogLoad = ref(false); //load效果
// 去重置密码
function resetPassWord() {
router.push({ name: "login", params: { type: 4 } });
}
// 选择图片
async function chooseImg(e) {
if (e.target.files[0]) {
@@ -518,18 +522,23 @@ function routerTo(url) {
position: relative;
height: 200px;
overflow: hidden;
&:hover {
.mask {
display: block;
}
}
.mask {
position: absolute;
top: 0;
left: 0;
display: none;
width: 100%;
height: 100%;
line-height: 780px;
font-size: 120px;
font-weight: 900;
text-align: center;
background-color: rgba(0, 0, 0, 0.5);

background-color: rgba(0, 0, 0, 0.3);
z-index: 9;
.title {
position: absolute;


Ladataan…
Peruuta
Tallenna