--fix bug

This commit is contained in:
yuping
2023-02-04 01:49:52 +08:00
parent 3647b3c653
commit 5eae2714a8
8 changed files with 259 additions and 336 deletions

View File

@@ -70,7 +70,7 @@
</div>
<!-- 搜索框及按钮 -->
<!-- 无数据 -->
<div class="datanull" v-if="tableDataTotal === 0">
<div class="datanull" v-if="!tableDataTotal">
<div class="nodata_box">
<div class="left">
<img src="../../assets/images/taskpage/left1.png" />
@@ -87,18 +87,13 @@
</div>
<!-- 无数据 -->
<!-- 表格 -->
<div
class="tableBox"
v-if="tableDataTotal !== 0"
style="padding-bottom: 0px; position: relative"
>
<div v-if="tableDataTotal" style="padding:10px 35px">
<a-table
style="border: 1px solid #f2f6fe"
:header-cell-style="{'text-align':'center'}"
style="border: 1px solid #f2f6fe;"
:columns="tableDataFunc()"
:data-source="tableData"
:loading="tableLoading"
expandRowByClick="true"
:scroll="{ x: 1550 }"
@expand="expandTable"
:pagination="false"
>
@@ -131,8 +126,8 @@
<a-pagination
v-if="tableDataTotal > 10"
:showSizeChanger="false"
showQuickJumper="true"
hideOnSinglePage="true"
:showQuickJumper="true"
:hideOnSinglePage="true"
:pageSize="pageSize"
v-model:current="currentPage"
:total="tableDataTotal"
@@ -1135,38 +1130,27 @@ export default {
const tableDataFunc = () => {
const columns = [
// {
// title: "序号",
// dataIndex: "number",
// key: "number",
// width: 100,
// align: "center",
// className: "h",
// },
{
title: "路径图名称",
dataIndex: "manager",
key: "manager",
width: "20%",
align: "center",
align: "left",
ellipsis: true,
className: "h",
width: 400,
},
{
title: "状态",
dataIndex: "state",
width: "10%",
key: "state",
//width: 100,
width: 100,
align: "center",
className: "h",
},
{
title: "创建人",
dataIndex: "creater",
width: "10%",
key: "creater",
// width: 100,
width: 100,
align: "center",
className: "h",
},
@@ -1174,7 +1158,7 @@ export default {
title: "发布时间",
dataIndex: "pubtime",
key: "pubtime",
width: "15%",
width: 200,
align: "center",
className: "h",
},
@@ -1182,17 +1166,18 @@ export default {
title: "创建时间",
dataIndex: "cretime",
key: "cretime",
width: "15%",
align: "center",
width: 200,
className: "h",
},
{
title: "操作",
dataIndex: "operation",
key: "operation",
width: "20%",
align: "right",
fixed: "right",
className: "h",
width: 250,
scopedSlots: { customRender: "action" },
},
];