Commit e61af02d authored by xioln's avatar xioln

暂无数据图标修改

parent 66c243d5
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
:form-btn-position="'center'" :form-btn-position="'center'"
@on-submit="initData(searchForm)" @on-submit="initData(searchForm)"
/> />
<dee-table <dee-up-table
:columns="tableColumns" :columns="tableColumns"
:data="tableData" :data="tableData"
:index-row="{ title: '序号', width: '60', align: 'center', fixed: true }" :index-row="{ title: '序号', width: '60', align: 'center', fixed: true }"
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
@selection-change="selectionChange" @selection-change="selectionChange"
> >
<dee-tools slot="header" :tools="tools" mode="normal" :collapse="false" /> <dee-tools slot="header" :tools="tools" mode="normal" :collapse="false" />
</dee-table> </dee-up-table>
<dee-dialog width="70%" title="新增" :visible.sync="addDialogVisible" @on-cancel="addCancel"> <dee-dialog width="70%" title="新增" :visible.sync="addDialogVisible" @on-cancel="addCancel">
<add-form ref="addForm" @cancel="addCancel" /> <add-form ref="addForm" @cancel="addCancel" />
</dee-dialog> </dee-dialog>
...@@ -231,5 +231,9 @@ export default { ...@@ -231,5 +231,9 @@ export default {
} }
</script> </script>
<style lang='scss'> <style lang='scss'>
.materialReferenceLink-table {} .materialReferenceLink-table {
.dee-up-table {
height: 500px;
}
}
</style> </style>
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* @FilePath: applications/dee-mes/src/privateComponents/components/purchasingWarehousingNewOrEdit/index.vue * @FilePath: applications/dee-mes/src/privateComponents/components/purchasingWarehousingNewOrEdit/index.vue
*/ */
<template> <template>
<div class="className"> <div class="purchasingWarehousing-newOrEdit">
<!-- <dee-tools :tools="topTools" mode="normal" style="justify-content: end;" /> --> <!-- <dee-tools :tools="topTools" mode="normal" style="justify-content: end;" /> -->
<dee-form <dee-form
ref="form" ref="form"
...@@ -16,16 +16,17 @@ ...@@ -16,16 +16,17 @@
@on-submit="submit" @on-submit="submit"
/> />
<div class="sub-title"> 采购入库申请明细 </div> <div class="sub-title"> 采购入库申请明细 </div>
<dee-table <dee-up-table
ref="treeTable" ref="treeTable"
:data="tableData" :data="tableData"
:columns="columns" :columns="columns"
:options="optionsTree" :options="optionsTree"
:empty-content="emptyContent"
> >
<div slot="header" class="table-title-wrap"> <div slot="header" class="table-title-wrap">
<dee-tools :tools="tools" mode="normal" /> <dee-tools :tools="tools" mode="normal" />
</div> </div>
</dee-table> </dee-up-table>
<span style="position: absolute;top: calc(100% - 70px);left: calc(50% - 70px);}"> <span style="position: absolute;top: calc(100% - 70px);left: calc(50% - 70px);}">
<el-button type="primary" class="searchBtn" @click="submit">确认</el-button> <el-button type="primary" class="searchBtn" @click="submit">确认</el-button>
<el-button type="primary" class="searchBtn" @click="back">取消</el-button> <el-button type="primary" class="searchBtn" @click="back">取消</el-button>
...@@ -437,7 +438,8 @@ export default { ...@@ -437,7 +438,8 @@ export default {
tableData: [], tableData: [],
tableParam: [], tableParam: [],
operator: null, operator: null,
addData: {} addData: {},
emptyContent: { 'icon': '/icons/dee-doc/noData.png', 'text': '暂无数据' }
} }
}, },
computed: { computed: {
...@@ -829,4 +831,10 @@ export default { ...@@ -829,4 +831,10 @@ export default {
} }
} }
</script> </script>
<style lang='scss'></style> <style lang='scss'>
.purchasingWarehousing-newOrEdit{
.dee-up-table {
height: 300px;
}
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment