From 7c124560b27add087b4aa8fc457de1e84f950d9c Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Tue, 23 Nov 2021 15:19:33 +0800
Subject: [PATCH] 样式 (1:搜索按钮放入右侧,2:隐藏表格显影按钮,3:页码改为(15,30,50,100))
---
src/views/dispatch/dispatch.vue | 13 ++++++++++---
1 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/src/views/dispatch/dispatch.vue b/src/views/dispatch/dispatch.vue
index bac9f77..ef72901 100644
--- a/src/views/dispatch/dispatch.vue
+++ b/src/views/dispatch/dispatch.vue
@@ -1,6 +1,11 @@
<template>
<basic-container>
- <div class="dispatch">
+ <div
+ :class="[
+ 'dispatch',
+ $store.state.control.windowWidth >= 1024 ? 'oneRowSearch' : '',
+ ]"
+ >
<!-- <avue-tabs :option="optionTABS" @change="handleChangeTABS"></avue-tabs>
<span v-if="typeTABS.prop === 'tab1'"> -->
<avue-crud
@@ -150,6 +155,7 @@
pageSize: 10,
currentPage: 1,
total: 0,
+ ...this.$store.state.control.changePageSize,
},
query: {},
data: [],
@@ -216,10 +222,11 @@
menuWidth: 160,
align: "center",
selection: true,
+ ...this.$store.state.control.clearOtherBut,
column: [
//派遣服务公司登记
{
- label: "派遣单位名称",
+ label: "派遣企业名称",
prop: "name",
search: true,
searchLabelWidth: 110,
@@ -310,7 +317,7 @@
searchSpan: 4,
overHidden: true,
labelWidth: 138,
- parent:false,
+ parent: false,
type: "tree",
dicUrl: "/api/jurisdiction/lazy-tree",
props: {
--
Gitblit v1.9.3