|
@@ -16,7 +16,7 @@
|
|
|
</div>
|
|
</div>
|
|
|
<div class="btn" @click="logout">切换账号</div>
|
|
<div class="btn" @click="logout">切换账号</div>
|
|
|
</div>
|
|
</div>
|
|
|
- <div style="margin-top:20px">
|
|
|
|
|
|
|
+ <div style="margin-top:20px" v-if="info.video">
|
|
|
<video-upload v-model="info2" class="width"></video-upload>
|
|
<video-upload v-model="info2" class="width"></video-upload>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="base">
|
|
<div class="base">
|
|
@@ -115,9 +115,9 @@
|
|
|
v-for="(item, index) in scores"
|
|
v-for="(item, index) in scores"
|
|
|
:key="index"
|
|
:key="index"
|
|
|
>
|
|
>
|
|
|
- <div class="name">得分明细{{ index + 1 }}</div>
|
|
|
|
|
|
|
+ <div class="name">明细{{ index + 1 }}</div>
|
|
|
<div class="val">{{ item.score }}</div>
|
|
<div class="val">{{ item.score }}</div>
|
|
|
- <div style="margin-left:10px">{{ item.remark }}</div>
|
|
|
|
|
|
|
+ <div class="val">{{ item.remark }}</div>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
@@ -254,7 +254,6 @@ export default {
|
|
|
this.info2 = {
|
|
this.info2 = {
|
|
|
src: this.info.video
|
|
src: this.info.video
|
|
|
};
|
|
};
|
|
|
- console.log(this.info2);
|
|
|
|
|
if (
|
|
if (
|
|
|
`${programmeId}` === this.$route.query.programmeId &&
|
|
`${programmeId}` === this.$route.query.programmeId &&
|
|
|
this.isAdmin
|
|
this.isAdmin
|
|
@@ -274,7 +273,7 @@ export default {
|
|
|
this.$http
|
|
this.$http
|
|
|
.post("/programmeScore/breakdown?programmeId=" + programmeId)
|
|
.post("/programmeScore/breakdown?programmeId=" + programmeId)
|
|
|
.then(res => {
|
|
.then(res => {
|
|
|
- console.log(res, "111");
|
|
|
|
|
|
|
+ // console.log(res, "111");
|
|
|
this.scores = res;
|
|
this.scores = res;
|
|
|
});
|
|
});
|
|
|
// if (this.isAdmin) {
|
|
// if (this.isAdmin) {
|
|
@@ -283,6 +282,7 @@ export default {
|
|
|
// .then(res => {
|
|
// .then(res => {
|
|
|
// if (res) {
|
|
// if (res) {
|
|
|
// this.myScore = res;
|
|
// this.myScore = res;
|
|
|
|
|
+ // console.log(this.myScore);
|
|
|
// } else {
|
|
// } else {
|
|
|
// this.myScore = null;
|
|
// this.myScore = null;
|
|
|
// }
|
|
// }
|
|
@@ -303,6 +303,7 @@ export default {
|
|
|
this.info.performanceId
|
|
this.info.performanceId
|
|
|
)
|
|
)
|
|
|
.then(res => {
|
|
.then(res => {
|
|
|
|
|
+ console.log(res);
|
|
|
this.relatedList = res;
|
|
this.relatedList = res;
|
|
|
this.nowActive = res.findIndex(item => {
|
|
this.nowActive = res.findIndex(item => {
|
|
|
return item.id === this.info.id;
|
|
return item.id === this.info.id;
|
|
@@ -549,7 +550,13 @@ export default {
|
|
|
margin-top: 16px;
|
|
margin-top: 16px;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
|
|
+ .val {
|
|
|
|
|
+ font-size: 18px;
|
|
|
|
|
+ font-weight: bold;
|
|
|
|
|
+ color: #000000;
|
|
|
|
|
+ line-height: 26px;
|
|
|
|
|
+ margin-left: 20px;
|
|
|
|
|
+ }
|
|
|
border-top: 1px solid #f5f7fa;
|
|
border-top: 1px solid #f5f7fa;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|