소스 검색

产权交易

rongxin_prod
庞东旭 1 년 전
부모
커밋
3f4439be68
1개의 변경된 파일22개의 추가작업 그리고 2개의 파일을 삭제
  1. +22
    -2
      src/views/project/projectDetail.vue

+ 22
- 2
src/views/project/projectDetail.vue 파일 보기

@@ -327,8 +327,28 @@ export default {
methods: {
goSignUp(){
getInfo().then(response => {
getMember(response.user.userId).then(response => {
if (response.data.auditStatus == 'Y'){
getMember(response.user.userId).then(resresponse => {
let data= {
projectId:this.id,
memberId:resresponse.data.id,
};
var isSign;
getSignup(data).then(r =>{
if(r.data=="1"){
isSign=true
}
})
if (resresponse.data.auditStatus == 'Y'){
if (isSign){
this.$toast({
icon: 'error', // 找到自己需要的图标
message: '已报名,请耐心等待审核结果!',
duration:"2000",
onClose:function(){
}
})
return;
}
this.$router.push(
{
path: 'signUp',


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