Commit 06ebc97b by xue_wengang

单位统计加加载动画、单位宽度

parent 69fe80c2
...@@ -8258,7 +8258,7 @@ let rzcxGnCxDefaultFormThead = [ ...@@ -8258,7 +8258,7 @@ let rzcxGnCxDefaultFormThead = [
}, },
{ {
label: '操作内容', label: '操作内容',
prop: 'czxxJyqk' prop: 'czxxParam'
} }
] ]
let rzcxGnCxURL = '/log/getCzLog' let rzcxGnCxURL = '/log/getCzLog'
......
<template> <template>
<div class="paneDiv"> <div class="paneDiv" v-loading="tableLoading">
<div style="text-align: right;"> <div style="text-align: right;">
<el-button <el-button
plain plain
...@@ -131,12 +131,14 @@ export default { ...@@ -131,12 +131,14 @@ export default {
showJump: true showJump: true
} }
], ],
tableList: [] tableList: [],
tableLoading:false
} }
}, },
methods: { methods: {
initData() { initData() {
let self = this; let self = this;
self.tableLoading = true
self.loading = true; self.loading = true;
const { unitCode, yymcdm, djsjKssj, djsjJssj } = self.$route.query const { unitCode, yymcdm, djsjKssj, djsjJssj } = self.$route.query
console.log(unitCode) console.log(unitCode)
...@@ -145,6 +147,7 @@ export default { ...@@ -145,6 +147,7 @@ export default {
let { code, data } = res; let { code, data } = res;
if (code == 200) { if (code == 200) {
this.tableList = data.rows this.tableList = data.rows
self.tableLoading = false
} }
}); });
}, },
......
...@@ -113,7 +113,7 @@ ...@@ -113,7 +113,7 @@
border border
> >
<el-table-column type="index" width="50" /> <el-table-column type="index" width="50" />
<el-table-column align="center" label="单位"> <el-table-column align="center" label="单位" width="250">
<template slot-scope="{ row }" <template slot-scope="{ row }"
><span class="names" @click="goDetail(row, 'unitName')">{{ ><span class="names" @click="goDetail(row, 'unitName')">{{
row.unitName row.unitName
......
...@@ -103,7 +103,7 @@ ...@@ -103,7 +103,7 @@
border border
> >
<el-table-column type="index" label="序号" width="50" /> <el-table-column type="index" label="序号" width="50" />
<el-table-column align="center" label="登录单位"> <el-table-column align="center" label="登录单位" width="250">
<template v-slot="scope"> <template v-slot="scope">
<el-button type="text" @click="getNextUnitInfo(scope.row)">{{ <el-button type="text" @click="getNextUnitInfo(scope.row)">{{
scope.row.unitName scope.row.unitName
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment