fix
This commit is contained in:
parent
a8ef7edb88
commit
8129076dca
@ -6,9 +6,7 @@
|
||||
<img src="../../assets/market/dialog/wangning.png" alt="" />
|
||||
</div>
|
||||
<div class="view">View in Poiygonscan</div>
|
||||
<div class="confirm-btn" @click="handClick">
|
||||
Confirm
|
||||
</div>
|
||||
<div class="confirm-btn" @click="handClick">Confirm</div>
|
||||
</div>
|
||||
<div class="success-container" v-else-if="msgType == 1">
|
||||
<div class="title">Transfaction Complete</div>
|
||||
@ -16,9 +14,7 @@
|
||||
<img src="../../assets/market/dialog/success.png" alt="" />
|
||||
</div>
|
||||
<div class="view">View in Poiygonscan</div>
|
||||
<div class="confirm-btn" @click="handClick">
|
||||
Confirm
|
||||
</div>
|
||||
<div class="confirm-btn" @click="handClick">Confirm</div>
|
||||
</div>
|
||||
<Close @closeMyself="close" />
|
||||
</el-dialog>
|
||||
@ -56,8 +52,11 @@ export default {
|
||||
::v-deep .el-dialog,
|
||||
.el-pager li {
|
||||
position: relative;
|
||||
width: 576px !important;
|
||||
height: 576px !important;
|
||||
// width: 576px !important;
|
||||
// height: 576px !important;
|
||||
width: 732px !important;
|
||||
height: 636px !important;
|
||||
margin-top: 12vh !important;
|
||||
background: url("../../assets/market/dialog/msg-bg.png") no-repeat;
|
||||
background-size: 100% 100%;
|
||||
box-shadow: none;
|
||||
|
@ -159,7 +159,12 @@ export default {
|
||||
this.$emit("handPutHide");
|
||||
},
|
||||
async handMessage() {
|
||||
this.$emit('handMessage',0)
|
||||
// this.$emit('handMessage',0)
|
||||
this.$message({
|
||||
message: 'You just copied accountId',
|
||||
type: 'success',
|
||||
duration: 5 * 1000
|
||||
})
|
||||
console.log("handMessage",1);
|
||||
// switch (this.type) {
|
||||
// case "hero":
|
||||
|
@ -178,8 +178,23 @@ export default class HeroNft extends Vue {
|
||||
this.isTab = hide;
|
||||
}
|
||||
@Watch("data.detail.quality")
|
||||
haldQuality(newvalue: any) {
|
||||
this.quality = newvalue;
|
||||
haldQuality(neWvalue: any,oldValue:any) {
|
||||
this.quality = neWvalue;
|
||||
// this.starList = [];
|
||||
// console.log(neWvalue ,'neWvalue',oldValue,'oldValue');
|
||||
// if (this.quality > 0 && this.quality <= 5) {
|
||||
// for (var i = 1; i <= this.qualityNumber; i++) {
|
||||
// this.starList.push(this.starType[0]);
|
||||
// }
|
||||
// } else if (this.quality > 5 && this.quality <= 10) {
|
||||
// for (var i = 1; i <= this.quality - 5; i++) {
|
||||
// this.starList.push(this.starType[1]);
|
||||
// }
|
||||
// } else {
|
||||
// for (var i = 1; i <= this.quality - 10; i++) {
|
||||
// this.starList.push(this.starType[2]);
|
||||
// }
|
||||
// }
|
||||
}
|
||||
created() {
|
||||
if (this.qualityNumber > 0 && this.qualityNumber <= 5) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user