|
|
|
@ -64,7 +64,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<a-modal :title="modalObj.title" width="1200px" :footer="null" :visible="modalObj.visible" :dialog-style="{ top: '20px' }">
|
|
|
|
|
<a-modal :title="modalObj.title" @cancel="onClose" width="1200px" :footer="null" :visible="modalObj.visible" :dialog-style="{ top: '20px' }">
|
|
|
|
|
<div class="modal-outter">
|
|
|
|
|
<div class="modal-top">
|
|
|
|
|
<v-tab-mode :active="activeMode" :btns="['便捷模式', '高级模式']" @change="changeMode"></v-tab-mode>
|
|
|
|
@ -126,9 +126,8 @@
|
|
|
|
|
</a-descriptions>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div align="center">
|
|
|
|
|
<v-btn @click="handlerOk">确定</v-btn>
|
|
|
|
|
<v-btn @click="handlerCancel">关闭</v-btn>
|
|
|
|
|
<div class="beCpm-footer" @click="handlerOk">
|
|
|
|
|
保存
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div v-if="isHigh==1">
|
|
|
|
@ -156,9 +155,8 @@
|
|
|
|
|
<div class="modal-display">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div align="center">
|
|
|
|
|
<v-btn @click="handlerOk">确定</v-btn>
|
|
|
|
|
<v-btn @click="handlerCancel">关闭</v-btn>
|
|
|
|
|
<div class="beCpm-footer" @click="handlerOk">
|
|
|
|
|
保存
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
@ -169,7 +167,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import tbEvent from './tbEvent';
|
|
|
|
|
import tbEvent from './tbEvent'
|
|
|
|
|
import helpContent from './helpContent'
|
|
|
|
|
export default {
|
|
|
|
|
name: "themeAnalize",
|
|
|
|
@ -266,11 +264,11 @@ export default {
|
|
|
|
|
.card-items {
|
|
|
|
|
width: 446px;
|
|
|
|
|
height: 240px;
|
|
|
|
|
background: linear-gradient(180deg, #0088c9 0%, #001c43 100%);
|
|
|
|
|
background: linear-gradient(180deg, rgba(0, 136, 201, 0.6), rgba(0, 28, 67, 0.6));
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
border: 2px solid #0091ff;
|
|
|
|
|
border: 2px solid rgba(0, 145, 255, 0.6);
|
|
|
|
|
.card-item-top {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
@ -316,4 +314,23 @@ export default {
|
|
|
|
|
background: rgb(21, 49, 81);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.beCpm-footer {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 354px;
|
|
|
|
|
height: 64px;
|
|
|
|
|
background-image: url("../../assets/images/login/img_dlan_nor.png");
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
bottom: 0px;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translate(-50%);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: #63aecc;
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 64px;
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|