|
@@ -184,23 +184,23 @@
|
|
|
<div class="operations">
|
|
|
<el-button type="primary" size="mini" @click="details(scope.row.fid,scope.row.title,scope.row.acId)">查看详情</el-button>
|
|
|
|
|
|
- <el-button type="primary" v-show="scope.row.state==0" size="mini" @click="Audit(scope.row,0)">提交</el-button>
|
|
|
- <el-button type="primary" v-show="scope.row.state==1" class="disa" size="mini">已提交</el-button>
|
|
|
- <el-button type="primary" v-show="scope.row.state!=1 && scope.row.state!=0" class="disa" size="mini">已提交</el-button>
|
|
|
+ <el-button type="primary" v-show="scope.row.state==0&& $store.state.userInfo.type!=0" size="mini" @click="Audit(scope.row,0)">提交</el-button>
|
|
|
+ <el-button type="primary" v-show="scope.row.state==1&& $store.state.userInfo.type!=0" class="disa" size="mini">已提交</el-button>
|
|
|
+ <el-button type="primary" v-show="scope.row.state!=1 && scope.row.state!=0&& $store.state.userInfo.type!=0" class="disa" size="mini">已提交</el-button>
|
|
|
|
|
|
<!-- <el-button type="primary" v-show="scope.row.state==2" class="disa" size="mini">已审核</el-button> -->
|
|
|
|
|
|
- <el-button type="primary" v-show="scope.row.state==0" class="disa" size="mini">审核1</el-button>
|
|
|
- <el-button type="primary" @click="Audit(scope.row,1)" v-show="scope.row.state==1" size="mini">审核1</el-button>
|
|
|
- <el-button type="primary" v-show="scope.row.state==2" class="disa" size="mini">审核1</el-button>
|
|
|
- <el-button type="primary" v-show="scope.row.state==3" class="disa" size="mini">审核1</el-button>
|
|
|
+ <el-button type="primary" v-show="scope.row.state==0&& $store.state.userInfo.type==0" class="disa" size="mini">审核</el-button>
|
|
|
+ <el-button type="primary" @click="Audit(scope.row,1)" v-show="scope.row.state==1&& $store.state.userInfo.type==0" size="mini">审核</el-button>
|
|
|
+ <el-button type="primary" v-show="scope.row.state==2&& $store.state.userInfo.type==0" class="disa" size="mini">审核</el-button>
|
|
|
+ <el-button type="primary" v-show="scope.row.state==3&& $store.state.userInfo.type==0" class="disa" size="mini">审核</el-button>
|
|
|
|
|
|
|
|
|
|
|
|
- <el-button v-show="scope.row.state==0" class="disa" type="primary" size="mini">完结</el-button>
|
|
|
- <el-button v-show="scope.row.state==1" class="disa" type="primary" size="mini">完结</el-button>
|
|
|
- <el-button v-show="scope.row.state==2" @click="endDialogShow(scope.row.fid)" type="primary" size="mini">完结</el-button>
|
|
|
- <el-button v-show="scope.row.state==3" class="disa" type="primary" size="mini">已完结</el-button>
|
|
|
+ <el-button v-show="scope.row.state==0&& $store.state.userInfo.type==0" class="disa" type="primary" size="mini">完结</el-button>
|
|
|
+ <el-button v-show="scope.row.state==1&& $store.state.userInfo.type==0" class="disa" type="primary" size="mini">完结</el-button>
|
|
|
+ <el-button v-show="scope.row.state==2&& $store.state.userInfo.type==0" @click="endDialogShow(scope.row.fid)" type="primary" size="mini">完结</el-button>
|
|
|
+ <el-button v-show="scope.row.state==3&& $store.state.userInfo.type==0" class="disa" type="primary" size="mini">已完结</el-button>
|
|
|
|
|
|
|
|
|
</div>
|
|
@@ -426,6 +426,7 @@
|
|
|
this.ajax
|
|
|
.post(this.$store.state.api+"/UpdateMakerFundState",param)
|
|
|
.then(res=>{
|
|
|
+ console.log(res);
|
|
|
this.dialogVisible=false;
|
|
|
if (res.data) {
|
|
|
this.$message.success('审核成功')
|