|
@@ -43,7 +43,8 @@
|
|
|
</div> -->
|
|
|
</div>
|
|
|
<div class="tableTopBtn">
|
|
|
- <Search @clear="clear" @search="search" />
|
|
|
+ <TBtnGroup v-model:flag="state.UTCFlag" @columnSet="columnSet" @downLoad="downLoad" @refresh="refresh"></TBtnGroup>
|
|
|
+ <Search @clear="clear" @search="search" />
|
|
|
</div>
|
|
|
<div class="waybillList">
|
|
|
<tableTemp
|
|
@@ -55,10 +56,13 @@
|
|
|
@cellClass="test"
|
|
|
></tableTemp>
|
|
|
</div>
|
|
|
+ <tableColumnSet :dialogVisible="state.dialogVisible" :columnList="state.waybillTableHeader" @setColumn="setColumn" @closeDialog="closeDialog"></tableColumnSet>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script setup lang="ts">
|
|
|
import tableTemp from "@/components/tableTemp/index.vue";
|
|
|
+import TBtnGroup from "@/components/TBtnGroup/index.vue";
|
|
|
+import tableColumnSet from "@/components/tableColumnSet/index.vue";
|
|
|
import Search from "@/components/search/index.vue";
|
|
|
import {CaretRight} from "@element-plus/icons-vue"
|
|
|
import { ref, onMounted } from 'vue';
|
|
@@ -90,6 +94,8 @@ const state = reactive({
|
|
|
{ label: "装载序号", key: "zzxh",isShow:true}
|
|
|
],
|
|
|
listLoading: true,
|
|
|
+ UTCFlag:true,
|
|
|
+ dialogVisible:false
|
|
|
});
|
|
|
|
|
|
const waybilltableData = ref([
|
|
@@ -186,6 +192,42 @@ const loadMore=(data)=>{
|
|
|
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+//清空搜索
|
|
|
+const clear=(data) =>{
|
|
|
+ console.log(data)
|
|
|
+}
|
|
|
+
|
|
|
+//点击搜索按钮
|
|
|
+const search=(data) =>{
|
|
|
+ console.log(data)
|
|
|
+}
|
|
|
+
|
|
|
+//点击刷新按钮
|
|
|
+const refresh=(data) =>{
|
|
|
+ console.log(data)
|
|
|
+}
|
|
|
+
|
|
|
+//点击下载按钮
|
|
|
+const downLoad=(data) =>{
|
|
|
+ console.log(data)
|
|
|
+}
|
|
|
+
|
|
|
+//点击列设置按钮
|
|
|
+const columnSet=(data) =>{
|
|
|
+ state.dialogVisible = true;
|
|
|
+}
|
|
|
+
|
|
|
+const setColumn = (data) => {
|
|
|
+ state.waybillTableHeader = data;
|
|
|
+ state.dialogVisible = false;
|
|
|
+}
|
|
|
+
|
|
|
+const closeDialog = (data) => {
|
|
|
+ state.dialogVisible = false;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
.pageBody{
|