Commit 06ebc97b by xue_wengang

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

parent 69fe80c2
......@@ -8258,7 +8258,7 @@ let rzcxGnCxDefaultFormThead = [
},
{
label: '操作内容',
prop: 'czxxJyqk'
prop: 'czxxParam'
}
]
let rzcxGnCxURL = '/log/getCzLog'
......
<template>
<div class="paneDiv">
<div class="paneDiv" v-loading="tableLoading">
<div style="text-align: right;">
<el-button
plain
......@@ -131,12 +131,14 @@ export default {
showJump: true
}
],
tableList: []
tableList: [],
tableLoading:false
}
},
methods: {
initData() {
let self = this;
self.tableLoading = true
self.loading = true;
const { unitCode, yymcdm, djsjKssj, djsjJssj } = self.$route.query
console.log(unitCode)
......@@ -145,6 +147,7 @@ export default {
let { code, data } = res;
if (code == 200) {
this.tableList = data.rows
self.tableLoading = false
}
});
},
......
......@@ -113,7 +113,7 @@
border
>
<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 }"
><span class="names" @click="goDetail(row, 'unitName')">{{
row.unitName
......
......@@ -103,7 +103,7 @@
border
>
<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">
<el-button type="text" @click="getNextUnitInfo(scope.row)">{{
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