|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div class="app-container">
|
|
|
+ <div class="app-container app-container-scheduling">
|
|
|
<div class="app-container_flex_auto">
|
|
|
<div class="app-container_form" v-show="showSearch">
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
|
|
@@ -76,7 +76,7 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
- <div class="app-container_table app-container-main" :class="showSearch ? 'mt15' : ''">
|
|
|
+ <div class="app-container_table" :class="showSearch ? 'mt15' : ''">
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
@@ -152,7 +152,6 @@
|
|
|
</div>
|
|
|
<div class="app-container_table_page">
|
|
|
<pagination
|
|
|
- v-show="total>0"
|
|
|
:total="total"
|
|
|
:page.sync="queryParams.pageNum"
|
|
|
:limit.sync="queryParams.pageSize"
|
|
@@ -160,14 +159,6 @@
|
|
|
/>
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
<!-- 详情 -->
|
|
|
<details-dia ref="detailsDia" @getList="getList"></details-dia>
|
|
|
<!-- 关联订单 -->
|
|
@@ -180,8 +171,10 @@
|
|
|
import { pageList,orderInvoiceRed } from '@/api/financeMr/InvoiceRecords'
|
|
|
import detailsDia from "./dialog/details.vue";
|
|
|
import relatedOrders from "./dialog/relatedOrders.vue";
|
|
|
+import { myMixin } from "@/utils/mixin.js"
|
|
|
export default {
|
|
|
name: "InvoiceRecords",
|
|
|
+ //mixins: [myMixin],
|
|
|
dicts: ['Invoicing_type','lookup_type'],
|
|
|
components: { detailsDia,relatedOrders },
|
|
|
data() {
|
|
@@ -293,3 +286,23 @@ export default {
|
|
|
}
|
|
|
};
|
|
|
</script>
|
|
|
+<style scoped lang="scss">
|
|
|
+.app-container-scheduling ::v-deep .el-select__tags {
|
|
|
+ flex-wrap: inherit !important;
|
|
|
+ overflow-x: auto !important;
|
|
|
+}
|
|
|
+.app-container-scheduling ::v-deep .el-form-item__content {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.app-container-scheduling ::v-deep .el-form-item__content .query_clear{
|
|
|
+ position: absolute;
|
|
|
+ top: -15px;
|
|
|
+ right: -10px;
|
|
|
+ display: none;
|
|
|
+ cursor: pointer;
|
|
|
+ z-index: 99;
|
|
|
+}
|
|
|
+.app-container-scheduling ::v-deep .el-form-item__content:hover .query_clear {
|
|
|
+ display: block;
|
|
|
+}
|
|
|
+</style>
|