This commit is contained in:
huangjinming 2023-01-10 17:10:15 +08:00
parent a8ef7edb88
commit 8129076dca
3 changed files with 30 additions and 11 deletions

View File

@ -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;

View File

@ -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":

View File

@ -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) {