qirong
2023-11-29 918b93ffd3e78971f8e300fccd33c5620991b165
按钮删除
4个文件已修改
4 ■■■ 已修改文件
admin.zip 补丁 | 查看 | 原始文档 | blame | 历史
src/router.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/exam/personalRandomTemplate/list.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/exam/personalSimulation/list.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin.zip
Binary files differ
src/router.js
@@ -130,7 +130,7 @@
        path: 'personalRandomTemplate/edit',
        component: () => import('@/views/exam/personalRandomTemplate/edit'),
        name: 'personalSimulationEdit',
        meta: { title: '个人随机模板编辑', noCache: true, activeMenu: '/exam/personalRandomTemplate/list' },
        meta: { title: '随机试卷', noCache: true, activeMenu: '/exam/personalRandomTemplate/list' },
        hidden: true
      },
      {
src/views/exam/personalRandomTemplate/list.vue
@@ -31,7 +31,6 @@
        <template slot-scope="{row}">
          <el-button size="mini" @click="$router.push({path:'/exam/personalRandomTemplate/edit',query:{id:row.id}})" >编辑</el-button>
          <el-button size="mini" type="danger"  @click="deletePaper(row)" class="link-left">删除</el-button>
          <el-button size="mini" type="danger"  @click="handleExport(row)" class="link-left">导出</el-button>
        </template>
      </el-table-column>
    </el-table>
src/views/exam/personalSimulation/list.vue
@@ -30,7 +30,6 @@
      <el-table-column  label="操作" align="center"  width="260px">
        <template slot-scope="{row}">
          <el-button size="mini" @click="$router.push({path:'/exam/personalSimulation/edit',query:{id:row.id}})" >编辑</el-button>
          <el-button size="mini" type="danger"  @click="deletePaper(row)" class="link-left">删除</el-button>
          <el-button size="mini" type="danger"  @click="handleExport(row)" class="link-left">导出</el-button>
        </template>
      </el-table-column>