|
|
|
@ -173,8 +173,9 @@
|
|
|
|
|
<el-tab-pane label="零担" name="zero"> |
|
|
|
|
<!-- 列表模块 --> |
|
|
|
|
<tablecmt |
|
|
|
|
columnListName="columnListByZero" |
|
|
|
|
ref="tableNodeRef2" |
|
|
|
|
:columnList="details.columnList" |
|
|
|
|
:columnList="details.columnListByZero" |
|
|
|
|
:tableData="details.data" |
|
|
|
|
@inputTxt="inputsc" |
|
|
|
|
@timeCheck="timesc" |
|
|
|
@ -192,7 +193,6 @@
|
|
|
|
|
</tablecmt> |
|
|
|
|
</el-tab-pane> |
|
|
|
|
</el-tabs> |
|
|
|
|
|
|
|
|
|
<!-- 分页模块 --> |
|
|
|
|
<div class="avue-crud__pagination flex-c-sb" style="width: 100%"> |
|
|
|
|
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div> |
|
|
|
@ -219,6 +219,14 @@
|
|
|
|
|
:columnList="details.columnList" |
|
|
|
|
v-model="details.columnList" |
|
|
|
|
></edittablehead> |
|
|
|
|
|
|
|
|
|
<edittablehead |
|
|
|
|
columnListName="columnListByZero" |
|
|
|
|
@closce="showdrawerByZero" |
|
|
|
|
:drawerShow="details.drawerShowByZero" |
|
|
|
|
:columnList="details.columnListByZero" |
|
|
|
|
v-model="details.columnListByZero" |
|
|
|
|
></edittablehead> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
@ -252,7 +260,7 @@ import {
|
|
|
|
|
} from '@/utils/util'; |
|
|
|
|
import { useRouter } from 'vue-router'; |
|
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'; |
|
|
|
|
import { columnList } from '@/option/reportforms/PackageTransferTimePageReport'; |
|
|
|
|
import { columnList, columnListByZero } from '@/option/reportforms/PackageTransferTimePageReport'; |
|
|
|
|
|
|
|
|
|
// 获取路由实例 |
|
|
|
|
const $router = useRouter(); |
|
|
|
@ -298,6 +306,7 @@ const details = reactive<any>({
|
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
columnList: deepClone(columnList), |
|
|
|
|
columnListByZero: deepClone(columnListByZero), |
|
|
|
|
data: [], |
|
|
|
|
/** 头部搜索配置 */ |
|
|
|
|
titleSearchOption: [], |
|
|
|
@ -313,6 +322,7 @@ const details = reactive<any>({
|
|
|
|
|
selectionList: [], |
|
|
|
|
/** 是否显示设置表格 */ |
|
|
|
|
drawerShow: false, |
|
|
|
|
drawerShowByZero: false, |
|
|
|
|
/** 分页参数 */ |
|
|
|
|
page: { |
|
|
|
|
pageNum: 1, |
|
|
|
@ -466,6 +476,11 @@ const showdrawer = (_flag?: boolean) => {
|
|
|
|
|
details.drawerShow = _flag; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 展开列表控件 */ |
|
|
|
|
const showdrawerByZero = (_flag?: boolean) => { |
|
|
|
|
details.drawerShowByZero = _flag; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 是否开启搜索区 */ |
|
|
|
|
const searchHide = () => { |
|
|
|
|
details.search = !details.search; |
|
|
|
|