unknown 4 년 전
부모
커밋
341f0f36aa
1개의 변경된 파일11개의 추가작업 그리고 12개의 파일을 삭제
  1. +11
    -12
      src/views/components_web/projSetting/projSetting.vue

+ 11
- 12
src/views/components_web/projSetting/projSetting.vue 파일 보기

@@ -1243,20 +1243,19 @@ import { wrapOssProtocol} from "@/services/oss";
this.srcIndex = 1;
}
},
},
setSystemCoverRandom: function() {
var temp=Math.ceil(Math.random()*10);
while(this.srcIndex ===temp){
temp=Math.ceil(Math.random()*10);
}
this.srcIndex=temp;
if(this.srcIndex===10){
this.coverSrc = "static/img/faceImg/face" + this.srcIndex + ".png";
}else{
this.coverSrc = "static/img/faceImg/face0" + this.srcIndex + ".png";
var temp=Math.ceil(Math.random()*10);
while(this.srcIndex ===temp){
temp=Math.ceil(Math.random()*10);
}
this.srcIndex=temp;
if(this.srcIndex===10){
this.coverSrc = "static/img/faceImg/face" + this.srcIndex + ".png";
}else{
this.coverSrc = "static/img/faceImg/face0" + this.srcIndex + ".png";
}
this.nowProjData.ShowImgUrl = this.coverSrc;
}
this.nowProjData.ShowImgUrl = this.coverSrc;
},
watch: {
isProjManager(val) {


불러오는 중...
취소
저장