|
@@ -58,23 +58,6 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<el-row :gutter="10" class="mb8" style="margin-top: 0px;">
|
|
|
-<!-- <el-col :span="1.5">-->
|
|
|
-<!-- <el-button-->
|
|
|
-<!-- type="primary"-->
|
|
|
-<!-- icon="el-icon-plus"-->
|
|
|
-<!-- size="mini"-->
|
|
|
-<!-- @click="handleAdd"-->
|
|
|
-<!-- >新增</el-button>-->
|
|
|
-<!-- </el-col>-->
|
|
|
-<!-- <el-col :span="1.5">-->
|
|
|
-<!-- <el-button-->
|
|
|
-<!-- type="success"-->
|
|
|
-<!-- icon="el-icon-edit"-->
|
|
|
-<!-- size="mini"-->
|
|
|
-<!-- :disabled="single"-->
|
|
|
-<!-- @click="handleUpdate"-->
|
|
|
-<!-- >修改</el-button>-->
|
|
|
-<!-- </el-col>-->
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
|
type="danger"
|
|
@@ -84,15 +67,6 @@
|
|
|
@click="handleDelete"
|
|
|
>删除</el-button>
|
|
|
</el-col>
|
|
|
- <!-- <el-col :span="1.5">-->
|
|
|
- <!-- <el-button-->
|
|
|
- <!-- type="warning"-->
|
|
|
- <!-- icon="el-icon-download"-->
|
|
|
- <!-- size="mini"-->
|
|
|
- <!-- @click="handleExport"-->
|
|
|
- <!-- v-hasPermi="['system:archives:export']"-->
|
|
|
- <!-- >导出</el-button>-->
|
|
|
- <!-- </el-col>-->
|
|
|
</el-row>
|
|
|
<el-table border v-loading="loading" :data="archivesList" @selection-change="handleSelectionChange">
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
@@ -100,17 +74,12 @@
|
|
|
<el-table-column label="档案编号" align="center" prop="archivesNum" />
|
|
|
<el-table-column label="档案名称" align="center" prop="archivesName" />
|
|
|
<el-table-column label="流程名称" align="center" prop="archivesType" />
|
|
|
- <!-- <el-table-column label="部门id" align="center" prop="deptId" />-->
|
|
|
-<!-- <el-table-column label="部门名称" align="center" prop="deptName" />-->
|
|
|
-<!-- <el-table-column label="归档类别" align="center" prop="archivesType" />-->
|
|
|
-<!-- <el-table-column label="创建人" align="center" prop="createBy" />-->
|
|
|
+ <el-table-column label="归档人" align="center" prop="rematk" />
|
|
|
<el-table-column label="归档日期" align="center" prop="archivesTime" width="180">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.archivesTime, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <!-- <el-table-column label="状态(0=正常,1=非正常)" align="center" prop="state" />-->
|
|
|
- <!-- <el-table-column label="状态(0=正常,1=非正常)" align="center" prop="rematk" />-->
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|