|
@@ -6,7 +6,7 @@
|
|
<el-button type="primary" size="mini" @click="back">返回</el-button>
|
|
<el-button type="primary" size="mini" @click="back">返回</el-button>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="24" class="down">
|
|
<el-col :span="24" class="down">
|
|
- <data-table :fields="fields" :opera="opera" :data="list" :total="total" @query="search" @view="toView" @expertView="toExpertView"></data-table>
|
|
|
|
|
|
+ <data-table :fields="fields" :opera="opera" :data="list" :total="total" @query="search" @view="toView"></data-table>
|
|
</el-col>
|
|
</el-col>
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
@@ -37,13 +37,6 @@ export default {
|
|
label: '意见查看',
|
|
label: '意见查看',
|
|
method: 'view',
|
|
method: 'view',
|
|
},
|
|
},
|
|
- {
|
|
|
|
- label: '专家意见查看',
|
|
|
|
- method: 'expertView',
|
|
|
|
- display: item => {
|
|
|
|
- return item.status == '-2' ? true : false;
|
|
|
|
- },
|
|
|
|
- },
|
|
|
|
],
|
|
],
|
|
fields: [
|
|
fields: [
|
|
{ label: '审核类型', prop: 'step', showTip: true },
|
|
{ label: '审核类型', prop: 'step', showTip: true },
|
|
@@ -82,7 +75,7 @@ export default {
|
|
...verifyRecord(['query']),
|
|
...verifyRecord(['query']),
|
|
// 查询列表
|
|
// 查询列表
|
|
async search({ skip = 0, limit = 10, ...info } = {}) {
|
|
async search({ skip = 0, limit = 10, ...info } = {}) {
|
|
- const res = await this.query({ skip, limit, apply_id: this.id, ...info });
|
|
|
|
|
|
+ const res = await this.query({ skip, limit, apply_id: this.id, ...info, step: '评分' });
|
|
if (this.$checkRes(res)) {
|
|
if (this.$checkRes(res)) {
|
|
this.$set(this, 'list', res.data);
|
|
this.$set(this, 'list', res.data);
|
|
this.$set(this, `total`, res.total);
|
|
this.$set(this, `total`, res.total);
|
|
@@ -98,10 +91,6 @@ export default {
|
|
this.form = {};
|
|
this.form = {};
|
|
this.dialog = false;
|
|
this.dialog = false;
|
|
},
|
|
},
|
|
- // 专家意见查看
|
|
|
|
- toExpertView({ data }) {
|
|
|
|
- this.$router.push({ path: '/userScore/expertOpinion', query: { id: data.apply_id } });
|
|
|
|
- },
|
|
|
|
// 返回
|
|
// 返回
|
|
back() {
|
|
back() {
|
|
this.$router.push({ path: '/noExpertScore' });
|
|
this.$router.push({ path: '/noExpertScore' });
|