|
@@ -1,8 +1,11 @@
|
1
|
1
|
<template>
|
2
|
2
|
<div>
|
3
|
3
|
<d2-container>
|
4
|
|
- <template slot="header">仓房展示/仓房信息</template>
|
|
4
|
+ <template slot="header"><div class="nav">当前所在位置:首页>仓房信息</div></template>
|
5
|
5
|
<div>
|
|
6
|
+ <div class="right_main">
|
|
7
|
+ <div class="right_title"><i class="fa fa-university" aria-hidden="true" style="padding-right:5px"></i>仓房信息</div>
|
|
8
|
+ <div class="right_table">
|
6
|
9
|
<el-form :inline="true" :model="formInline" class="demo-form-inline">
|
7
|
10
|
<el-form-item label="仓房名称:">
|
8
|
11
|
<el-input v-model="formInline.cfName" placeholder="请选择"></el-input>
|
|
@@ -34,7 +37,7 @@
|
34
|
37
|
</el-form-item>
|
35
|
38
|
</el-form>
|
36
|
39
|
|
37
|
|
- <el-table :data="cfInfoList" border style="width: 100%" :header-cell-style="{background:'#0064b9',color:'#fff'}">
|
|
40
|
+ <el-table :data="cfInfoList" border style="width: 100%" :header-cell-style="{background:'#0064b9',color:'#c9f5fa'}">
|
38
|
41
|
<el-table-column prop="branchOffice" label="所属分公司" align="center">
|
39
|
42
|
</el-table-column>
|
40
|
43
|
<el-table-column prop="directLibrary" label="所属直属库" align="center">
|
|
@@ -82,6 +85,8 @@
|
82
|
85
|
:limit.sync="listQuery.limit"
|
83
|
86
|
@pagination="getList"
|
84
|
87
|
/> -->
|
|
88
|
+ </div>
|
|
89
|
+ </div>
|
85
|
90
|
</div>
|
86
|
91
|
</d2-container>
|
87
|
92
|
|
|
@@ -175,4 +180,14 @@ export default {
|
175
|
180
|
|
176
|
181
|
},
|
177
|
182
|
};
|
178
|
|
-</script>
|
|
183
|
+</script>
|
|
184
|
+<style lang="scss" scoped>
|
|
185
|
+ .nav {
|
|
186
|
+
|
|
187
|
+ color:#FFF;
|
|
188
|
+ font-size:14px;
|
|
189
|
+
|
|
190
|
+ background: #004a93;
|
|
191
|
+ }
|
|
192
|
+
|
|
193
|
+</style>
|