|
@@ -210,6 +210,7 @@ const searchInfo = (val) => {
|
|
|
ml-12px
|
|
|
rounded-4px
|
|
|
text-[#fff]
|
|
|
+ hover:opacity-80
|
|
|
"
|
|
|
>
|
|
|
Assign License
|
|
@@ -228,6 +229,7 @@ const searchInfo = (val) => {
|
|
|
ml-12px
|
|
|
rounded-4px
|
|
|
text-[#fff]
|
|
|
+ hover:opacity-80
|
|
|
"
|
|
|
>
|
|
|
Volume Cancel
|
|
@@ -310,7 +312,7 @@ const searchInfo = (val) => {
|
|
|
>
|
|
|
{{ scope.row.validFlag === 'Canceled' ? 'Canceled' : 'Cancel'}}
|
|
|
</button>
|
|
|
- <el-dialog title="" :visible.sync="dialogVisible" width="376">
|
|
|
+ <el-dialog :visible.sync="dialogVisible" width="376px" top="30vh" center :show-close="false">
|
|
|
<Warning />
|
|
|
<p class="mt-16px">Sure cancel the license?</p>
|
|
|
<p>
|
|
@@ -335,7 +337,7 @@ const searchInfo = (val) => {
|
|
|
:page-sizes="[5, 10, 20]"
|
|
|
:page-size="size"
|
|
|
:background="true"
|
|
|
- layout="sizes, prev, pager, next, jumper"
|
|
|
+ layout="prev, pager, next, sizes, jumper"
|
|
|
:total="total"
|
|
|
class="px-24px !rounded-0 rounded-b-8px mt-20px flex justify-end"
|
|
|
>
|
|
@@ -349,76 +351,19 @@ const searchInfo = (val) => {
|
|
|
display: flex;
|
|
|
width: 1100px !important;
|
|
|
}
|
|
|
+
|
|
|
.el-table__header {
|
|
|
display: flex;
|
|
|
width: 1100px !important;
|
|
|
}
|
|
|
-.el-pagination::v-deep button {
|
|
|
- color: #232a40;
|
|
|
- background-color: #e7eaee !important;
|
|
|
-}
|
|
|
-.el-pagination::v-deep ul > li {
|
|
|
- color: #232a40;
|
|
|
- border-radius: 4px;
|
|
|
- margin-left: 6px;
|
|
|
- font-weight: normal !important;
|
|
|
- min-width: 24px !important;
|
|
|
- height: 24px !important;
|
|
|
- background-color: #fff;
|
|
|
-}
|
|
|
-.el-pagination::v-deep ul > .active {
|
|
|
- color: #232a40 !important;
|
|
|
- background-color: #c6c9cc !important;
|
|
|
+
|
|
|
+.el-table::v-deep .el-table__cell{
|
|
|
+ padding-right: 20px !important;
|
|
|
+ padding-left: 20px !important;
|
|
|
}
|
|
|
+
|
|
|
.el-table::v-deep thead {
|
|
|
color: #000 !important;
|
|
|
}
|
|
|
</style>
|
|
|
|
|
|
-<style lang="scss">
|
|
|
-.el-dialog {
|
|
|
- width: 376px;
|
|
|
- height: 214px;
|
|
|
- box-shadow: none;
|
|
|
- border-radius: 8px;
|
|
|
-}
|
|
|
-.el-dialog > .el-dialog__body {
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- padding: 0 0 20px;
|
|
|
-}
|
|
|
-.el-dialog > .el-dialog__footer {
|
|
|
- padding: 0 20px 20px;
|
|
|
- span {
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- width: 100%;
|
|
|
- .el-button--default {
|
|
|
- border-color: #1460f3;
|
|
|
- color: #1460f3;
|
|
|
- }
|
|
|
- .el-button {
|
|
|
- width: 132px;
|
|
|
- height: 32px;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-</style>
|
|
|
-
|
|
|
-<style lang="scss">
|
|
|
-.el-message--success {
|
|
|
- margin-top: 90px !important;
|
|
|
- background-color: #373a47 !important;
|
|
|
- height: 36px;
|
|
|
- min-width: auto !important;
|
|
|
- padding: 12px !important;
|
|
|
- p {
|
|
|
- color: #fff !important;
|
|
|
- }
|
|
|
-}
|
|
|
-</style>
|