fix
This commit is contained in:
@@ -656,6 +656,13 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
|
|||||||
.gallerySelect.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder {
|
.gallerySelect.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder {
|
||||||
line-height: 5.5rem;
|
line-height: 5.5rem;
|
||||||
}
|
}
|
||||||
|
.ant-select-arrow {
|
||||||
|
right: 2rem;
|
||||||
|
width: 1.2rem;
|
||||||
|
height: 1.2rem;
|
||||||
|
margin-top: -0.6rem;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
.generalModel_page {
|
.generalModel_page {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|||||||
@@ -720,6 +720,13 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
|
|||||||
line-height: 5.5rem;
|
line-height: 5.5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.ant-select-arrow{
|
||||||
|
right: 2rem;
|
||||||
|
width: 1.2rem;
|
||||||
|
height: 1.2rem;
|
||||||
|
margin-top: -.6rem;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
.generalModel_page {//常用查询列表样式
|
.generalModel_page {//常用查询列表样式
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="cancelRenewal_page">
|
<div class="cancelRenewal_page">
|
||||||
<div v-if="userDetail.status != 'canceled'">
|
<div v-if="userDetail.status != 'expired' && userDetail.systemUser != 3">
|
||||||
<div class="cancel_box_item">
|
<div class="cancel_box_item">
|
||||||
<div class="modal_title_text">
|
<div class="modal_title_text">
|
||||||
<div>{{ $t('cancelRenewal.cancelling') }}</div>
|
<div>{{ $t('cancelRenewal.cancelling') }}</div>
|
||||||
|
|||||||
@@ -13,6 +13,7 @@
|
|||||||
<span v-if="item?.label">{{ item?.label }}</span>
|
<span v-if="item?.label">{{ item?.label }}</span>
|
||||||
<span v-else>{{ item.name }}</span>
|
<span v-else>{{ item.name }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="icon iconfont icon-xiala" :class="{active:openClick}"></div>
|
||||||
</div>
|
</div>
|
||||||
<ul :class="driverClass.class2" v-show="openClick">
|
<ul :class="driverClass.class2" v-show="openClick">
|
||||||
<li v-for="item,index in dataList" :class="{active:deleteItem == index}" class="printModel_item" @click="setprintModel(item,index)">
|
<li v-for="item,index in dataList" :class="{active:deleteItem == index}" class="printModel_item" @click="setprintModel(item,index)">
|
||||||
@@ -200,7 +201,13 @@ import { message, Upload, Modal } from "ant-design-vue";
|
|||||||
//衣服类型下拉菜单
|
//衣服类型下拉菜单
|
||||||
.generalMenu_printModel{
|
.generalMenu_printModel{
|
||||||
margin-right: 2rem;
|
margin-right: 2rem;
|
||||||
|
.icon-xiala{
|
||||||
|
margin-left: auto;
|
||||||
|
transition: all .3s;
|
||||||
|
&.active{
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
>div{
|
>div{
|
||||||
// display: flex;
|
// display: flex;
|
||||||
display: block;
|
display: block;
|
||||||
|
|||||||
@@ -144,8 +144,14 @@
|
|||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="thirdPartyLogin marign_top30">
|
<div class="thirdPartyLogin marign_top30">
|
||||||
<googleLogin @googelLogin="googelLogin" text="Register with Google"></googleLogin>
|
<div class="label">
|
||||||
<weiXinLogin text="Register with wechat"></weiXinLogin>
|
<div class="mask" v-show="!checked" @click="isCheckAgreement"></div>
|
||||||
|
<googleLogin @googelLogin="googelLogin" text="Register with Google"></googleLogin>
|
||||||
|
</div>
|
||||||
|
<div class="label">
|
||||||
|
<div class="mask" v-show="!checked" @click="isCheckAgreement"></div>
|
||||||
|
<weiXinLogin text="Register with wechat"></weiXinLogin>
|
||||||
|
</div>
|
||||||
<!-- <phoneLogin></phoneLogin> -->
|
<!-- <phoneLogin></phoneLogin> -->
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
@@ -297,6 +303,12 @@ export default defineComponent({
|
|||||||
loginTime:true
|
loginTime:true
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
mounted(){
|
||||||
|
const data = this.$route.query
|
||||||
|
if(data?.state == 'weiXin'){
|
||||||
|
this.wechatLogin(data)
|
||||||
|
}
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
init(){
|
init(){
|
||||||
this.registerModel = true
|
this.registerModel = true
|
||||||
@@ -466,7 +478,11 @@ export default defineComponent({
|
|||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
isCheckAgreement(){
|
||||||
|
message.info(
|
||||||
|
"Agree to all terms, privacy fees and policies"
|
||||||
|
);
|
||||||
|
},
|
||||||
changePasswordType(){
|
changePasswordType(){
|
||||||
this.passwordType = this.passwordType === 'password' ? 'text' : 'password'
|
this.passwordType = this.passwordType === 'password' ? 'text' : 'password'
|
||||||
},
|
},
|
||||||
@@ -937,9 +953,19 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
.thirdPartyLogin{
|
.thirdPartyLogin{
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-start;
|
// justify-content: flex-start;
|
||||||
>div{
|
> div{
|
||||||
|
position: relative;
|
||||||
margin-right: 1rem;
|
margin-right: 1rem;
|
||||||
|
> .mask{
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 2;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.tip_content {
|
.tip_content {
|
||||||
|
|||||||
@@ -52,7 +52,6 @@ export default defineComponent({
|
|||||||
setup(){
|
setup(){
|
||||||
const store = useStore();
|
const store = useStore();
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
let registerModel = ref()
|
|
||||||
let data = reactive({
|
let data = reactive({
|
||||||
homeRecommendMax:null,
|
homeRecommendMax:null,
|
||||||
signUp:null
|
signUp:null
|
||||||
@@ -100,7 +99,6 @@ export default defineComponent({
|
|||||||
...toRefs(data),
|
...toRefs(data),
|
||||||
userDetail,
|
userDetail,
|
||||||
setLogin,
|
setLogin,
|
||||||
registerModel,
|
|
||||||
logout,
|
logout,
|
||||||
goHome,
|
goHome,
|
||||||
isMoblie,
|
isMoblie,
|
||||||
|
|||||||
Reference in New Issue
Block a user