|
@@ -97,7 +97,12 @@
|
|
|
style="width: 100%"
|
|
|
>
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="序号" align="center" prop="id" />
|
|
|
+ <!-- <el-table-column label="序号" align="center" prop="id" /> -->
|
|
|
+ <el-table-column label="序号" type="index" width="50" align="center">
|
|
|
+ <template scope="scope">
|
|
|
+ <span>{{ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1 }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="单位" align="center" prop="deptName" />
|
|
|
<el-table-column label="分类" align="center" prop="kind" />
|
|
|
<el-table-column label="编号" align="center" prop="number" />
|
|
@@ -596,6 +601,7 @@ export default {
|
|
|
this.getdict();
|
|
|
this.form.unitId = row.unitId;
|
|
|
this.getZhuChi(this.form.unitId);
|
|
|
+ this.reset()
|
|
|
this.getTreeselect();
|
|
|
const id = row.id || this.ids;
|
|
|
getBdglsecrecy(id).then((response) => {
|