fix
This commit is contained in:
@@ -1204,6 +1204,29 @@ li {
|
|||||||
border: solid 2px rgba(0, 0, 0, 0.55);
|
border: solid 2px rgba(0, 0, 0, 0.55);
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
.homeMain_heade .ant-badge {
|
||||||
|
width: auto;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
.homeMain_heade sup.ant-scroll-number {
|
||||||
|
height: 2rem;
|
||||||
|
min-height: 2rem;
|
||||||
|
width: 2rem;
|
||||||
|
min-width: 2rem;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.homeMain_heade sup.ant-scroll-number .ant-scroll-number-only {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
.homeMain_heade p.ant-scroll-number-only-unit {
|
||||||
|
line-height: 2rem;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
.modal_title_text {
|
.modal_title_text {
|
||||||
font-size: var(--aida-fsize2);
|
font-size: var(--aida-fsize2);
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
|
|||||||
@@ -1343,6 +1343,32 @@ input:focus{
|
|||||||
color: rgba(0, 0, 0, 1);
|
color: rgba(0, 0, 0, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.homeMain_heade{
|
||||||
|
.ant-badge{
|
||||||
|
width: auto;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
sup.ant-scroll-number{
|
||||||
|
height: 2rem;
|
||||||
|
min-height: 2rem;
|
||||||
|
width: 2rem;
|
||||||
|
min-width: 2rem;
|
||||||
|
padding: 0;
|
||||||
|
.ant-scroll-number-only{
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
p.ant-scroll-number-only-unit{
|
||||||
|
line-height: 2rem;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.modal_title_text{
|
.modal_title_text{
|
||||||
font-size: var(--aida-fsize2);
|
font-size: var(--aida-fsize2);
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
|
|||||||
@@ -154,7 +154,7 @@ export default defineComponent({
|
|||||||
v.layersObject[i].style = {
|
v.layersObject[i].style = {
|
||||||
top:v.layersObject[i].position?.[0]*ratio+'px',
|
top:v.layersObject[i].position?.[0]*ratio+'px',
|
||||||
left:v.layersObject[i].position?.[1]*ratio+'px',
|
left:v.layersObject[i].position?.[1]*ratio+'px',
|
||||||
width:v.layersObject[i].imageSize?.[0]*ratio * +'px',
|
width:v.layersObject[i].imageSize?.[0]*ratio+'px',
|
||||||
height:v.layersObject[i].imageSize?.[1]*ratio+'px',
|
height:v.layersObject[i].imageSize?.[1]*ratio+'px',
|
||||||
// zIndex:zIndex-=1
|
// zIndex:zIndex-=1
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -357,13 +357,10 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
beforeUpload(file: any) {
|
beforeUpload(file: any) {
|
||||||
console.log(123);
|
|
||||||
|
|
||||||
const isJpgOrPng =
|
const isJpgOrPng =
|
||||||
file.type === "image/jpeg" ||
|
file.type === "image/jpeg" ||
|
||||||
file.type === "image/png" ||
|
file.type === "image/png" ||
|
||||||
file.type === "image/jpg" ||
|
file.type === "image/jpg" ||
|
||||||
file.type === "image/JFIF" ||
|
|
||||||
file.type === "image/bmp";
|
file.type === "image/bmp";
|
||||||
if (!isJpgOrPng) {
|
if (!isJpgOrPng) {
|
||||||
message.info(this.t('MoodboardUpload.jsContent3'));
|
message.info(this.t('MoodboardUpload.jsContent3'));
|
||||||
|
|||||||
@@ -18,6 +18,11 @@
|
|||||||
></div>
|
></div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="trialApproval button_second credits message">
|
||||||
|
<a-badge :count="5">
|
||||||
|
<i class="fi fi-rr-envelope" @click="openMessage"></i>
|
||||||
|
</a-badge>
|
||||||
|
</div>
|
||||||
<div
|
<div
|
||||||
class="trialApproval button_second credits hideChecked"
|
class="trialApproval button_second credits hideChecked"
|
||||||
>
|
>
|
||||||
@@ -445,6 +450,9 @@ export default defineComponent({
|
|||||||
let taskPage = this.$refs.TaskPage
|
let taskPage = this.$refs.TaskPage
|
||||||
taskPage.init(data)
|
taskPage.init(data)
|
||||||
},
|
},
|
||||||
|
openMessage(){
|
||||||
|
|
||||||
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
@@ -486,6 +494,7 @@ export default defineComponent({
|
|||||||
height: 3.2rem;
|
height: 3.2rem;
|
||||||
margin: 2.1rem 2.8rem 0 ;
|
margin: 2.1rem 2.8rem 0 ;
|
||||||
// position: absolute;
|
// position: absolute;
|
||||||
|
line-height: 2rem;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -578,6 +587,23 @@ export default defineComponent({
|
|||||||
font-size: 1.8rem;
|
font-size: 1.8rem;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
&.message{
|
||||||
|
// padding: 1rem;
|
||||||
|
i{
|
||||||
|
margin-left: 0rem;
|
||||||
|
border-left: none;
|
||||||
|
padding-left: 0rem;
|
||||||
|
height: auto;
|
||||||
|
width: 3rem;
|
||||||
|
}
|
||||||
|
span{
|
||||||
|
overflow: initial;
|
||||||
|
align-items: center;
|
||||||
|
width: auto;
|
||||||
|
margin: auto;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
.fi-br-refresh{
|
.fi-br-refresh{
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
border-left: none;
|
border-left: none;
|
||||||
|
|||||||
Reference in New Issue
Block a user