Browse Source

全局样式

dev
kilo 2 years ago
parent
commit
a5d7abe6e3
  1. 9
      src/components/layouts/RouteView.vue
  2. 3
      src/components/layouts/UserLayout.vue
  3. 8
      src/components/page/GlobalLayout.vue
  4. 4
      src/components/setting/SettingDrawer.vue
  5. 4
      src/store/modules/app.js
  6. 2
      src/views/activiti/doneManage.vue
  7. 2
      src/views/activiti/processFinishManage.vue
  8. 2
      src/views/activiti/processInsManage.vue
  9. 2
      src/views/activiti/todoManage.vue
  10. 2
      src/views/dashboard/Analysis.vue
  11. 137
      src/views/dashboard/HomePage.vue
  12. 4
      src/views/description/ProcessDescriptionList.vue
  13. 4
      src/views/materialstorage/ProcessMaterialStorageList.vue
  14. 4
      src/views/merchandisenews/ProcessMerchandiseNewsList.vue
  15. 4
      src/views/supplier/ProcessSupplierList.vue
  16. 7
      src/views/suppliesstronger/ProcessSuppliesStrongerList.vue
  17. 3
      src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue
  18. 2
      src/views/system/AddressList.vue
  19. 56
      src/views/system/DepartList.vue
  20. 1
      src/views/system/LogList.vue
  21. 3
      src/views/system/RoleUserList.vue
  22. 1
      src/views/system/SysAnnouncementList.vue
  23. 1
      src/views/system/SysPositionList.vue
  24. 2
      src/views/system/UserList.vue
  25. 1
      src/views/system/modules/AddressListRight.vue
  26. 1
      src/views/system/modules/DeptRoleInfo.vue
  27. 1
      src/views/system/modules/DeptUserInfo.vue
  28. 4
      src/views/unitwaste/ProcessUnitWasteWarehouseCodeList.vue
  29. 3
      src/views/waste/ProcessWasteList.vue
  30. 3
      src/views/waste/ProcessWasteListCable.vue
  31. 7
      src/views/wastematerials/ProcessWasteMaterialsList.vue
  32. 5
      src/views/wastematerials/ProcessWasteMaterialsLists.vue

9
src/components/layouts/RouteView.vue

@ -1,5 +1,5 @@
<template>
<div class="main">
<div class="main" style="height: 100%">
<keep-alive :include="includedComponents">
<router-view v-if="keepAlive" />
</keep-alive>
@ -40,4 +40,9 @@
}
},
}
</script>
</script>
<style scoped>
/deep/.ant-card{
height: 100%;
}
</style>

3
src/components/layouts/UserLayout.vue

@ -5,7 +5,7 @@
<div class="header">
<a href="/">
<!--<img src="~@/assets/logo.svg" class="logo" alt="logo">-->
<span class="title" style="color: #fff">昊易信息管理平台</span>
<span class="title" style="color: #fff">昊易信息</span>
</a>
</div>
<div class="desc">
@ -118,6 +118,7 @@
.main {
min-width: 260px;
width: 368px;
height: 100%;
margin: 0 auto;
}

8
src/components/page/GlobalLayout.vue

@ -65,7 +65,7 @@
/>
<!-- layout content -->
<a-layout-content :style="{ height: '100%', paddingTop: fixedHeader ? '59px' : '0' }">
<a-layout-content class="divstyle" :style="{ overflow: 'hidden', height: '100%', paddingTop: fixedHeader ? '59px' : '0' }">
<slot></slot>
</a-layout-content>
@ -178,13 +178,17 @@
<style lang="less">
body {
//
overflow-y: scroll;
overflow-y: auto;
&.colorWeak {
filter: invert(80%);
}
}
.divstyle > div{
height: 93%;
}
.layout {
min-height: 100vh !important;
overflow-x: hidden;

4
src/components/setting/SettingDrawer.vue

@ -102,7 +102,7 @@
</a-list-item-meta>
</a-list-item>
<a-list-item>
<a-switch slot="actions" size="small" :defaultChecked="fixedHeader" @change="handleFixedHeader" />
<a-switch slot="actions" size="small" :defaultChecked="true"/>
<a-list-item-meta>
<div slot="title">固定 Header</div>
</a-list-item-meta>
@ -114,7 +114,7 @@
</a-list-item-meta>
</a-list-item>
<a-list-item>
<a-switch slot="actions" size="small" :disabled="(layoutMode === 'topmenu')" :checked="dataFixSiderbar" @change="handleFixSiderbar" />
<a-switch slot="actions" size="small" :disabled="(layoutMode === 'topmenu')" :checked="true"/>
<a-list-item-meta>
<div slot="title" :style="{ textDecoration: layoutMode === 'topmenu' ? 'line-through' : 'unset' }">固定侧边菜单</div>
</a-list-item-meta>

4
src/store/modules/app.js

@ -22,8 +22,8 @@ const app = {
theme: '',
layout: '',
contentWidth: '',
fixedHeader: false,
fixSiderbar: false,
fixedHeader: true,
fixSiderbar: true,
autoHideHeader: false,
color: null,
weak: false,

2
src/views/activiti/doneManage.vue

@ -2,7 +2,7 @@
@import '~@assets/less/common.less';
</style>
<template>
<div class="search">
<div class="search" style="height: 100%;">
<a-card>
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="handleSearch">

2
src/views/activiti/processFinishManage.vue

@ -3,7 +3,7 @@
</style>
<template>
<div class="search">
<div class="search" style="height: 100%;">
<a-card>
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="handleSearch">

2
src/views/activiti/processInsManage.vue

@ -2,7 +2,7 @@
@import '~@assets/less/common.less';
</style>
<template>
<div class="search">
<div class="search" style="height: 100%;">
<a-card>
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="handleSearch">

2
src/views/activiti/todoManage.vue

@ -2,7 +2,7 @@
@import '~@assets/less/common.less';
</style>
<template>
<div class="search">
<div class="search" style="height: 100%;">
<a-card>
<div class="table-page-search-wrapper">

2
src/views/dashboard/Analysis.vue

@ -1,5 +1,5 @@
<template>
<div>
<div style="height: 100%;">
<!-- <file-mangement uuId="ssss"></file-mangement>-->
<!-- <b-pdf :file="'60137d6395657f2fee283f13'"></b-pdf>-->
<!-- <b-pdf :file="'http://storage.xuetangx.com/public_assets/xuetangx/PDF/PlayerAPI_v1.0.6.pdf'"></b-pdf>-->

137
src/views/dashboard/HomePage.vue

@ -1,9 +1,10 @@
<template>
<div style="height: 780px;overflow: hidden; margin: 20px 10px 0px;">
<div style="display: flex;align-items: center;justify-content: stretch;width: 100%;height: 50%">
<!--待办任务-->
<div class="top-div" style="width: 33%;height: 100%;">
<a-card class="div-card" title="待办" style="overflow: hidden">
<div style="height: 100%">
<div style="height: 50%;display: flex;justify-content: stretch;" >
<a-row type="flex" :gutter="16" style="height: 100%">
<a-col :md="8" :sm="24" style="height: 96%;">
<!--待办任务-->
<a-card title="待办" style="height: 100%;overflow: hidden;">
<a-table
rowKey="id"
:scroll="{x: false, y: 300 }"
@ -16,27 +17,25 @@
>
</a-table>
</a-card>
</div>
<!--站内消息-->
<div class="top-div" style="width: 33%;height: 100%;margin: 0 1%;">
<a-card class="div-card" title="站内消息" style="overflow: hidden">
<a-table
rowKey="id"
:scroll="{x: false, y: 300 }"
:show-header="false"
:columns="msgColumns"
:dataSource="msgContent"
:pagination="false"
:customRow="rowClickToDo"
</a-col>
<a-col :md="8" :sm="24" style="height: 96%;">
<!--站内消息-->
<a-card ref="cardH" title="站内消息" style="height: 100%;overflow: hidden;">
<a-table style="height: 100%;"
rowKey="id"
:scroll="{x: false, y: 300 }"
:show-header="false"
:columns="msgColumns"
:dataSource="msgContent"
:pagination="false"
:customRow="rowClickToDo"
>
</a-table>
</a-card>
</div>
<!--登录日志-->
<div class="top-div" style="width: 33%;height: 100%;">
<a-card class="div-card" title="登录日志" style="overflow: hidden">
</a-col>
<a-col :md="8" :sm="24" style="height: 96%;">
<!--登录日志-->
<a-card title="登录日志" style="height: 100%;overflow: hidden">
<a-table
rowKey="id"
:scroll="{x: false, y: 300 }"
@ -46,37 +45,36 @@
:pagination="false"
>
</a-table>
</a-card>
</div>
</div>
<div class="bottom-div" style="width: 100%;height: 60%;margin-top: 1%">
<a-card style="width: 100%;height: 90%;border-radius: 10px;" title="全部应用">
<ul class="apply-use" style="list-style-type: none;padding: 0px">
<li @click='informationManagement' class="ant-col-md-4">
<a-icon type="table" style="font-size: 25px;" /> 基础信息管理
</li>
<li @click='processManage' class="ant-col-md-4">
<a-icon type="cluster" style="font-size: 25px;" /> 流程管理
</li>
<li @click='materialManage' class="ant-col-md-4">
<a-icon type="setting" style="font-size: 25px;" /> 物资管理
</li>
<li @click='statisticalAnalysis' class="ant-col-md-4">
<a-icon type="line-chart" style="font-size: 25px;" /> 统计分析
</li>
<li @click='dictionaryLibrary' class="ant-col-md-4">
<a-icon type="read" style="font-size: 25px;" /> 标准字典库
</li>
<li @click='isystemManage' class="ant-col-md-4">
<a-icon type="setting" style="font-size: 25px;" /> 系统管理
</li>
</ul>
</a-card>
</div>
</a-col>
</a-row>
</div>
<!--全部应用-->
<div class="bottom-div" style="height: 50%;margin-top: 1%" >
<a-card title="全部应用" style="height: 100%">
<a-row type="flex" :gutter="16" style="height: 100%;">
<a-col class="bottomClick" span="4" @click='informationManagement'>
<a-icon class="bottomClick" type="table" style="font-size: 25px;" /> 基础信息管理
</a-col>
<a-col class="bottomClick" span="4" @click='processManage'>
<a-icon type="cluster" style="font-size: 25px;" /> 流程管理
</a-col>
<a-col class="bottomClick" span="4" @click='materialManage'>
<a-icon type="setting" style="font-size: 25px;" /> 物资管理
</a-col>
<a-col class="bottomClick" span="4" @click='statisticalAnalysis'>
<a-icon type="line-chart" style="font-size: 25px;" /> 统计分析
</a-col>
<a-col class="bottomClick" span="4" @click='dictionaryLibrary'>
<a-icon type="read" style="font-size: 25px;" /> 标准字典库
</a-col>
<a-col class="bottomClick" span="4" @click='isystemManage'>
<a-icon type="setting" style="font-size: 25px;" /> 系统管理
</a-col>
</a-row>
</a-card>
</div>
</div>
</template>
@ -168,7 +166,6 @@ export default {
}
},
created() {
this.todoList();
this.loginList();
@ -316,38 +313,24 @@ export default {
background: white;
}
.div-card {
width: 100%;
height: 100%;
font-weight: 200;
border-radius: 5px;
}
.ul-li li{
margin-top: 12px;
display: inline-flex;
font-weight: bold;
}
.apply-use li{
text-align: left;
margin-top: 60px;
padding: 0 40px;
.bottomClick {
text-align: center;
margin: 1% 0 3% 0;
}
.apply-use li:hover {
.bottomClick:hover {
cursor: pointer;
color: #5cb6ff;
}
/deep/.ant-card-body {
padding: 0px 24px 36px 24px;
}
/deep/.ant-card-head-title{
font-weight: 600;
}
/deep/.ant-card-body{
padding: 2% 3% 1% 3%;
}
.bottom-div /deep/.ant-card-head{
border-bottom: 0px;
}
@ -355,4 +338,4 @@ export default {
i:hover {
color: #5cb6ff;
}
</style>
</style>

4
src/views/description/ProcessDescriptionList.vue

@ -67,7 +67,7 @@
<a-table
ref="table"
size="middle"
:scroll="{x:true}"
:scroll="{y:460}"
bordered
rowKey="id"
:columns="columns"
@ -75,7 +75,6 @@
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
class="j-table-force-nowrap"
@change="handleTableChange">
<template slot="htmlSlot" slot-scope="text">
@ -175,7 +174,6 @@
title: '操作',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
scopedSlots: { customRender: 'action' }
}

4
src/views/materialstorage/ProcessMaterialStorageList.vue

@ -73,7 +73,7 @@
<a-table
ref="table"
size="middle"
:scroll="{x:true}"
:scroll="{ y:460}"
bordered
rowKey="id"
:columns="columns"
@ -81,7 +81,6 @@
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
class="j-table-force-nowrap"
@change="handleTableChange">
<template slot="htmlSlot" slot-scope="text">
@ -204,7 +203,6 @@
title: '操作',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
scopedSlots: { customRender: 'action' }
}

4
src/views/merchandisenews/ProcessMerchandiseNewsList.vue

@ -103,7 +103,7 @@
<a-table
ref="table"
size="middle"
:scroll="{x:true}"
:scroll="{ y:470}"
bordered
rowKey="id"
:columns="columns"
@ -111,7 +111,6 @@
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
class="j-table-force-nowrap"
@change="handleTableChange">
<template slot="htmlSlot" slot-scope="text">
@ -251,7 +250,6 @@
title: '操作',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
scopedSlots: { customRender: 'action' }
}

4
src/views/supplier/ProcessSupplierList.vue

@ -88,7 +88,7 @@
<a-table
ref="table"
size="middle"
:scroll="{x:true}"
:scroll="{ y:460}"
bordered
rowKey="id"
:columns="columns"
@ -96,7 +96,6 @@
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
class="j-table-force-nowrap"
@change="handleTableChange">
<template slot="htmlSlot" slot-scope="text">
@ -231,7 +230,6 @@
title: '操作',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
scopedSlots: { customRender: 'action' }
}

7
src/views/suppliesstronger/ProcessSuppliesStrongerList.vue

@ -1,6 +1,4 @@
<template>
<div>
<a-card :bordered="false">
<!-- 查询区域 -->
@ -60,7 +58,7 @@
<a-table
ref="table"
size="middle"
:scroll="{x:true}"
:scroll="{y:460}"
bordered
rowKey="id"
:columns="columns"
@ -68,7 +66,6 @@
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
class="j-table-force-nowrap"
@change="handleTableChange">
<template slot="htmlSlot" slot-scope="text">
@ -102,7 +99,6 @@
<process-supplies-stronger-modal ref="modalForm" @ok="modalFormOk"></process-supplies-stronger-modal>
</a-card>
</div>
</template>
<script>
@ -192,7 +188,6 @@
title: '明细',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
scopedSlots: { customRender: 'action' }
}

3
src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue

@ -164,7 +164,7 @@
<a-table
ref="table"
size="middle"
:scroll="{x:true}"
:scroll="{y:460}"
bordered
rowKey="id"
:columns="columns"
@ -172,7 +172,6 @@
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
class="j-table-force-nowrap"
@change="handleTableChange">
<template slot="htmlSlot" slot-scope="text">

2
src/views/system/AddressList.vue

@ -1,4 +1,5 @@
<template>
<a-card :bordered="false">
<a-row type="flex" :gutter="16">
<a-col :md="5" :sm="24">
<address-list-left v-model="currentOrgCode"/>
@ -7,6 +8,7 @@
<address-list-right v-model="currentOrgCode"/>
</a-col>
</a-row>
</a-card>
</template>
<script>

56
src/views/system/DepartList.vue

@ -1,31 +1,32 @@
<template xmlns:background-color="http://www.w3.org/1999/xhtml">
<a-card :bordered="false">
<a-row :gutter="10">
<a-col :md="12" :sm="24">
<a-card :bordered="false">
<a-col :md="12" :sm="24">
<a-card :bordered="false">
<!-- 按钮操作区域 -->
<a-row style="margin-left: 14px">
<a-button @click="handleAdd(1)" type="primary">添加部门</a-button>
<a-button @click="handleAdd(2)" type="primary">添加下级</a-button>
<a-button type="primary" icon="download" @click="handleExportXls('部门信息')">导出</a-button>
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
<a-button type="primary" icon="import">导入</a-button>
</a-upload>
<a-button title="删除多条数据" @click="batchDel" type="default">批量删除</a-button>
<!--<a-button @click="refresh" type="default" icon="reload" :loading="loading">刷新</a-button>-->
</a-row>
<div style="background: #fff;padding-left:16px;height: 100%; margin-top: 5px">
<a-alert type="info" :showIcon="true">
<div slot="message">
当前选择<span v-if="this.currSelected.title">{{ getCurrSelectedTitle() }}</span>
<a v-if="this.currSelected.title" style="margin-left: 10px" @click="onClearSelected">取消选择</a>
</div>
</a-alert>
<a-input-search @search="onSearch" style="width:100%;margin-top: 10px" placeholder="请输入部门名称"/>
<!-- -->
<a-col :md="10" :sm="24">
<template>
<a-dropdown :trigger="[this.dropTrigger]" @visibleChange="dropStatus">
<!-- 按钮操作区域 -->
<a-row style="margin-left: 14px">
<a-button @click="handleAdd(1)" type="primary">添加部门</a-button>
<a-button @click="handleAdd(2)" type="primary">添加下级</a-button>
<a-button type="primary" icon="download" @click="handleExportXls('部门信息')">导出</a-button>
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
<a-button type="primary" icon="import">导入</a-button>
</a-upload>
<a-button title="删除多条数据" @click="batchDel" type="default">批量删除</a-button>
<!--<a-button @click="refresh" type="default" icon="reload" :loading="loading">刷新</a-button>-->
</a-row>
<div style="background: #fff;padding-left:16px;height: 100%; margin-top: 5px">
<a-alert type="info" :showIcon="true">
<div slot="message">
当前选择<span v-if="this.currSelected.title">{{ getCurrSelectedTitle() }}</span>
<a v-if="this.currSelected.title" style="margin-left: 10px" @click="onClearSelected">取消选择</a>
</div>
</a-alert>
<a-input-search @search="onSearch" style="width:100%;margin-top: 10px" placeholder="请输入部门名称"/>
<!-- -->
<a-col :md="10" :sm="24">
<template>
<a-dropdown :trigger="[this.dropTrigger]" @visibleChange="dropStatus">
<span style="user-select: none">
<a-tree
checkable
@ -160,9 +161,10 @@
<!-- </a-tab-pane>-->
</a-tabs>
</a-col>
<depart-modal ref="departModal" @ok="loadTree"></depart-modal>
</a-col>
<depart-modal ref="departModal" @ok="loadTree"></depart-modal>
</a-row>
</a-card>
</template>
<script>
import DepartModal from './modules/DepartModal'

1
src/views/system/LogList.vue

@ -62,6 +62,7 @@
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:scroll="{x: false, y: 470 }"
@change="handleTableChange">
<div v-show="queryParam.logType==2" slot="expandedRowRender" slot-scope="record" style="margin: 0">

3
src/views/system/RoleUserList.vue

@ -1,4 +1,5 @@
<template>
<a-card :bordered="false">
<a-row :gutter="10">
<a-col :md="leftColMd" :sm="24" style="margin-bottom: 20px">
<a-card :bordered="false">
@ -147,6 +148,7 @@
:dataSource="dataSource2"
:pagination="ipagination2"
:loading="loading2"
:scroll="{x: false, y: 450 }"
:rowSelection="{selectedRowKeys: selectedRowKeys2, onChange: onSelectChange2}"
@change="handleTableChange2">
<span slot="action" slot-scope="text, record">
@ -174,6 +176,7 @@
</a-card>
</a-col>
</a-row>
</a-card>
</template>
<script>
import { JeecgListMixin } from '@/mixins/JeecgListMixin'

1
src/views/system/SysAnnouncementList.vue

@ -64,6 +64,7 @@
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:scroll="{y: 460 }"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
@change="handleTableChange">

1
src/views/system/SysPositionList.vue

@ -74,6 +74,7 @@
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:scroll="{x: false, y: 460 }"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
@change="handleTableChange">

2
src/views/system/UserList.vue

@ -136,7 +136,7 @@
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:scroll="{x: false, y: 500 }"
:scroll="{ y: 450 }"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
@change="handleTableChange"
>

1
src/views/system/modules/AddressListRight.vue

@ -36,6 +36,7 @@
:columns="columns"
:dataSource="dataSource"
:loading="loading"
:scroll="{x: false, y: 460 }"
@change="handleTableChange">
</a-table>

1
src/views/system/modules/DeptRoleInfo.vue

@ -45,6 +45,7 @@
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:scroll="{x: false, y: 460 }"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
@change="handleTableChange">
<span slot="action" slot-scope="text, record">

1
src/views/system/modules/DeptUserInfo.vue

@ -60,6 +60,7 @@
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:scroll="{x: false, y: 460 }"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
@change="handleTableChange">

4
src/views/unitwaste/ProcessUnitWasteWarehouseCodeList.vue

@ -64,7 +64,7 @@
<a-table
ref="table"
size="middle"
:scroll="{x:true}"
:scroll="{y:460}"
bordered
rowKey="id"
:columns="columns"
@ -72,7 +72,6 @@
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
class="j-table-force-nowrap"
@change="handleTableChange">
<template slot="htmlSlot" slot-scope="text">
@ -175,7 +174,6 @@
title: '操作',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
scopedSlots: { customRender: 'action' }
}

3
src/views/waste/ProcessWasteList.vue

@ -72,7 +72,7 @@
<a-table
ref="table"
size="middle"
:scroll="{x:true}"
:scroll="{y:460}"
bordered
rowKey="id"
:columns="columns"
@ -80,7 +80,6 @@
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
class="j-table-force-nowrap"
@change="handleTableChange">
<template slot="htmlSlot" slot-scope="text">

3
src/views/waste/ProcessWasteListCable.vue

@ -72,7 +72,7 @@
<a-table
ref="table"
size="middle"
:scroll="{x:true}"
:scroll="{y:true}"
bordered
rowKey="id"
:columns="columns"
@ -80,7 +80,6 @@
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
class="j-table-force-nowrap"
@change="handleTableChange">
<template slot="htmlSlot" slot-scope="text">

7
src/views/wastematerials/ProcessWasteMaterialsList.vue

@ -1,5 +1,4 @@
<template>
<div>
<a-card :bordered="false">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
@ -51,7 +50,7 @@
<a-table
ref="table"
size="middle"
:scroll="{x:true}"
:scroll="{y:460}"
bordered
rowKey="id"
:columns="columns"
@ -59,7 +58,6 @@
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
class="j-table-force-nowrap"
@change="handleTableChange">
<template slot="htmlSlot" slot-scope="text">
@ -96,8 +94,6 @@
<process-waste-materials-modal ref="modalForm" @ok="modalFormOk"></process-waste-materials-modal>
</a-card>
</div>
</template>
<script>
@ -171,7 +167,6 @@
title: '查看详情',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
scopedSlots: { customRender: 'action' }
}

5
src/views/wastematerials/ProcessWasteMaterialsLists.vue

@ -1,5 +1,4 @@
<template>
<div>
<a-card :bordered="false">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
@ -89,7 +88,7 @@
<a-table
ref="table"
size="middle"
:scroll="{x:true}"
:scroll="{y:460}"
bordered
rowKey="id"
:columns="columns"
@ -97,7 +96,6 @@
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
class="j-table-force-nowrap"
@change="handleTableChange">
<template slot="htmlSlot" slot-scope="text">
@ -124,7 +122,6 @@
<process-waste-materials-modal ref="modalForm" @ok="modalFormOk"></process-waste-materials-modal>
</a-card>
</div>
</template>
<script>

Loading…
Cancel
Save