Commit 254268e3 authored by youjie's avatar youjie

no message

parent 18920c27
......@@ -169,7 +169,6 @@
// this.msg.OutBranchId = userInfo.RB_Branch_id
}
this.msg.PeriodId = this.$route.query.PeriodId?Number(this.$route.query.PeriodId):0
this.msg.PeriodId = this.$route.query.periods?Number(this.$route.query.periods):0
// this.msg.OutBranchId = this.$route.query.OutBranchId?this.$route.query.OutBranchId:-1
// this.msg.RB_Branch_Id = this.$route.query.RB_Branch_Id?this.$route.query.RB_Branch_Id:-1
// this.msg.RB_Department_Id = this.$route.query.RB_Department_Id?this.$route.query.RB_Department_Id:-1
......
......@@ -208,23 +208,10 @@
this.msg.TCNUM = this.$route.query.TCNUM?this.$route.query.TCNUM:''
let userInfo = this.getLocalStorage();
let ActionMenuCode = userInfo.ActionMenuCode;
if (this.$route.query) { //不大于0的话用默认值
if (this.$route.query.PeriodId && this.$route.query.PeriodId > 0) {
this.msg.PeriodId = Number(this.$route.query.PeriodId)
}
if (this.$route.query.UserId && this.$route.query.UserId > 0) {
// this.msg.UserId = Number(this.$route.query.UserId)
}
if (this.$route.query.RB_Branch_Id) {
// this.msg.RB_Branch_Id = Number(this.$route.query.RB_Branch_Id)
}
if (this.$route.query.RB_Department_Id && this.$route.query.RB_Department_Id > 0) {
// this.msg.RB_Department_Id = Number(this.$route.query.RB_Department_Id)
}
if (this.$route.query.OutBranchId && this.$route.query.OutBranchId!='') {
// this.msg.OutBranchId = Number(this.$route.query.OutBranchId)
}
}
this.msg.PeriodId =this.$route.query.PeriodId?Number(this.$route.query.PeriodId):0
// this.msg.UserId = Number(this.$route.query.UserId)
// this.msg.RB_Branch_Id = Number(this.$route.query.RB_Branch_Id)
// this.msg.RB_Department_Id = Number(this.$route.query.RB_Department_Id)
if (ActionMenuCode.indexOf('home_CommissionSeeAll') != -1) { //是否有看所有人的权限
this.disabled = false;
} else {
......
......@@ -82,15 +82,7 @@
</div>
<div class="_fnDm_content" v-loading='loading'>
<el-table ref="multipleTable" :data="DataList" tooltip-effect="dark" style="width: 100%">
<el-table-column prop="" label="线路">
<template slot-scope="scope">
<span v-for="(x,index) in scope.row.LineInfoList">
{{x.LineName}}
<span v-if="scope.row.LineInfoList.length-1!=index"></span>
</span>
</template>
</el-table-column>
<el-table-column prop="GroundingTypeStr" label="分类"></el-table-column>
<el-table-column prop="Name" label="供应商名称"></el-table-column>
<el-table-column prop="Address" label="供应商地址"></el-table-column>
<el-table-column prop="LinkMan" label="供应商联系人"></el-table-column>
......@@ -99,6 +91,7 @@
<el-table-column prop="FinanceMan" label="财务联系人"></el-table-column>
<el-table-column prop="FinanceTel" label="财务电话"></el-table-column>
<el-table-column prop="FinanceDuties" label="财务职务"></el-table-column>
<el-table-column prop="GroundingTypeStr" label="分类"></el-table-column>
<el-table-column prop="" label="合同">
<template slot-scope="scope">
<div v-if="verificationFile(scope.row.ContractUrl,3)" class="img-box">
......@@ -118,7 +111,27 @@
</div>
</template>
</el-table-column>
<el-table-column prop="" label="线路">
<template slot-scope="scope">
<span v-for="(x,index) in scope.row.LineInfoList">
{{x.LineName}}
<span v-if="scope.row.LineInfoList.length-1!=index"></span>
</span>
</template>
</el-table-column>
<el-table-column prop="" label="状态">
<template slot-scope="scope">
<span v-if="scope.row.AccountStatus==1" class="groupTourOrder_count_green">
正常
</span>
<span v-if="scope.row.AccountStatus==2" class="groupTourOrder_count_yellow">
拒绝
</span>
<span v-if="scope.row.AccountStatus==0" class="c059FF6">
审核中
</span>
</template>
</el-table-column>
<el-table-column prop="" label="操作人">
<template slot-scope="scope">
<p>{{scope.row.CreateByName}}</p>
......@@ -210,7 +223,6 @@
<el-input v-model="form.FinanceDuties" clearable></el-input>
</el-form-item>
</div>
<div class="msgbox width100">
<el-form-item label="合同" prop="ContractUrl">
<div class="img-box-form">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment