Browse Source

模板列表增加id列

pull/139/head
zq 5 days ago
parent
commit
7ca2379c39
  1. 2
      src/views/super/paiban/college.vue
  2. 5
      src/views/super/paiban/orderlist.vue
  3. 1
      src/views/super/paiban/tpl.vue

2
src/views/super/paiban/college.vue

@ -332,7 +332,7 @@ export default {
// //
.status{ .status{
width: 65px; width: fit-content;
height: 22px; height: 22px;
display: flex; display: flex;
justify-content: center; justify-content: center;

5
src/views/super/paiban/orderlist.vue

@ -82,7 +82,7 @@
<div class="flex gap12"> <div class="flex gap12">
<span class="resetBtn" @click="handleShowInfo(scope.row.id,'0')">重新提取</span> <span class="resetBtn" @click="handleShowInfo(scope.row.id,'0')">重新提取</span>
<span class="resetBtn" @click="handleShowInfo(scope.row.id,'1')">重新排版</span> <span class="resetBtn" @click="handleShowInfo(scope.row.id,'1')">重新排版</span>
<GuipButton type="text" @click="downLoadInfo(scope.row.id)">下载</GuipButton> <GuipButton type="text" @click="downLunwen(scope.row.id)">下载</GuipButton>
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
@ -221,6 +221,7 @@ export default {
}, },
downLoadInfo(tid){ downLoadInfo(tid){
console.log(tid); console.log(tid);
this.downLunwen(tid)
// try { // try {
// this.$http('POST', '/supernew/down_paiban_template_require', { // this.$http('POST', '/supernew/down_paiban_template_require', {
// template_id:tid // template_id:tid
@ -273,7 +274,7 @@ export default {
} }
.status{ .status{
width: 65px; width: fit-content;
height: 22px; height: 22px;
display: flex; display: flex;
justify-content: center; justify-content: center;

1
src/views/super/paiban/tpl.vue

@ -41,6 +41,7 @@
</div> </div>
<GuipTable :tableData="tableList" :key="tableKey" ref="multipleTable" autoColumn="true" :loading="tableLoading" style="flex:1"> <GuipTable :tableData="tableList" :key="tableKey" ref="multipleTable" autoColumn="true" :loading="tableLoading" style="flex:1">
<template> <template>
<el-table-column fixed="left" prop="id" label="ID" min-width="50"></el-table-column>
<el-table-column fixed="left" prop="school_name" label="学校" min-width="200"></el-table-column> <el-table-column fixed="left" prop="school_name" label="学校" min-width="200"></el-table-column>
<el-table-column prop="degree_name" label="学历" min-width="200"></el-table-column> <el-table-column prop="degree_name" label="学历" min-width="200"></el-table-column>
<el-table-column prop="college_name" label="学院" min-width="200"></el-table-column> <el-table-column prop="college_name" label="学院" min-width="200"></el-table-column>

Loading…
Cancel
Save