Commit 43b4510b authored by 郭志伟's avatar 郭志伟

fix: 样式问题修复

parent 103528fc
......@@ -18,7 +18,7 @@
<script>
const LEFT_BTN_CLICK_EVENT = "leftClick";
const RIGHT_BTN_CLICK_EVENT = "rightClick";
const RIGHT_BTN_CLICK_EVENT = "click";
export default {
name: "GoodAction",
props: {
......@@ -45,7 +45,6 @@ export default {
},
rightClick() {
// TODO
this.$router.push("/goods/inform");
this.$emit(RIGHT_BTN_CLICK_EVENT, {});
}
}
......
......@@ -39,11 +39,14 @@
border-radius: @border-radius-md;
margin-bottom: 12px;
align-items: center;
padding: 9px 16px;
&::after {
display: none;
}
&__title {
color: #333333;
display: flex;
align-items: center;
}
}
&-item_nobg {
......@@ -77,6 +80,11 @@
color: @black;
margin-right: 4px;
}
.cr-switch {
/deep/ &__control {
box-shadow: none;
}
}
.cr-tag {
margin: 0 auto 0 8px;
color: @white !important;
......@@ -95,7 +103,8 @@
/deep/ .cr-checkbox__label {
font-size: @font-size-11;
color: @gray-4;
line-height: @line-height-lg;
margin-left: 5px;
// line-height: @line-height-lg;
}
&-link {
margin-top: -3.5px;
......
......@@ -59,7 +59,7 @@
<div class="insure-form-pact" slot="footer">
<cr-checkbox
shape="round"
icon-size="12px"
icon-size="13px"
v-model="formData.pact"
checked-color="#FFC842"
>
......@@ -91,7 +91,7 @@
</div>
<detail-footer />
<copyright />
<good-action />
<good-action @click="goInsureState = true" />
<protocol-iframe
v-model="popupShow"
:title="pupopData.title"
......
......@@ -103,7 +103,7 @@ export default {
&_br {
/deep/ .cr-cell__value {
flex: none;
width: 165px;
width: 70%;
}
}
}
......
......@@ -78,7 +78,6 @@ export default {
font-weight: normal !important;
strong {
font-weight: bold;
margin: 0 3px;
}
}
}
......
<template>
<transition name="panel-fade">
<cr-popup
v-model="show"
:style="{ backgroundColor: 'transparent' }"
......@@ -34,7 +33,6 @@
</div>
</div>
</cr-popup>
</transition>
</template>
<script>
......@@ -84,33 +82,6 @@ export default {
<style lang="less" scoped>
@import "../../../style/var.less";
.panel-fade-enter-active {
animation: dialog-fadein 0.4s;
.panel {
animation: dialog-zoom 0.4s;
}
}
@keyframes dialog-fadein {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes dialog-zoom {
0% {
transform: scale(0);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
.panel {
background-color: @white;
border-radius: @border-radius-md;
......@@ -149,6 +120,36 @@ export default {
}
}
.pay {
&-det {
padding-left: 34px;
position: relative;
&::after,
&::before {
content: " ";
display: block;
position: absolute;
left: 18px;
width: 8px;
height: 8px;
border-radius: @border-radius-max;
border: 1px solid @black;
}
&::before {
background-color: @orange-light;
top: 24px;
}
&::after {
bottom: 26.5px;
}
/deep/ & > div:first-child {
position: absolute;
left: 22.5px;
top: 35px;
height: 14px;
width: 0;
border-right: 1px dotted @gray-4;
}
}
&-tip {
font-size: @font-size-12;
color: @gray-4;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment