|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<div class="app-container home">
|
|
|
<div v-if="sysType == 1">
|
|
|
- <div style="display: flex">
|
|
|
+ <div style="display: flex;margin-bottom: 40px;">
|
|
|
<div style="width: 70%">
|
|
|
<ul class="block" v-if="sysType == 1">
|
|
|
<li @click="jump('/business/inStock')">
|
|
@@ -97,7 +97,7 @@
|
|
|
</ul>
|
|
|
</div>
|
|
|
<div style="width: 30%">
|
|
|
- <div style="width: 100%" v-if="sysType == 1">
|
|
|
+ <div style="width: 100%">
|
|
|
<div style="display: flex">
|
|
|
<div id="box" style="width: 100%; height: 350px"></div>
|
|
|
|
|
@@ -120,7 +120,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div style="display: flex">
|
|
|
+ <div style="display: flex;margin-bottom: 40px;">
|
|
|
<div style="width: 70%">
|
|
|
<div>
|
|
|
<div
|
|
@@ -139,7 +139,10 @@
|
|
|
<div class="home_stock_table">日期</div>
|
|
|
<div class="home_stock_table">提单号</div>
|
|
|
<div class="home_stock_table">业务类型</div>
|
|
|
- <div class="home_stock_table">操作</div>
|
|
|
+ <div class="home_stock_table_right">
|
|
|
+ <div>操作</div>
|
|
|
+ <el-link type="primary">更多>></el-link>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div v-if="tableData.length > 0">
|
|
|
<div
|
|
@@ -153,18 +156,25 @@
|
|
|
>
|
|
|
<div class="home_stock_table">{{ item.refno1 }}</div>
|
|
|
<div class="home_stock_table">
|
|
|
- {{ item.auditItem }}/div>
|
|
|
- <div class="home_stock_table">{{ item.refno3 }}</div>
|
|
|
- <div class="home_stock_table">{{ item.refno2 }}</div>
|
|
|
- <div class="home_stock_table">操作</div>
|
|
|
+ {{ item.auditItem }}
|
|
|
</div>
|
|
|
+ <div class="home_stock_table">{{ item.refno3 }}</div>
|
|
|
+ <div class="home_stock_table">{{ item.refno2 }}</div>
|
|
|
+ <div class="home_stock_table">操作</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div v-else style="display: flex;justify-content:center;height: 213px;border-bottom: 2px solid #dfe6ec;">
|
|
|
- <div style="align-self: center;color: #909399;font-size:14px;">
|
|
|
- 暂无数据
|
|
|
+ <div
|
|
|
+ v-else
|
|
|
+ style="
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ height: 213px;
|
|
|
+ border-bottom: 1px solid #dfe6ec;
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <div style="align-self: center; color: #909399; font-size: 14px">
|
|
|
+ 暂无数据
|
|
|
</div>
|
|
|
-
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- <el-table
|
|
@@ -244,21 +254,19 @@
|
|
|
</el-table>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div style="display: flex">
|
|
|
- <div style="width: 70%"></div>
|
|
|
- <div style="width: 30%"></div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div style="width: 100%; margin-bottom: 50px" v-if="sysType == 1"></div>
|
|
|
- <div style="width: 100%; float: left; margin-top: 20px" v-if="sysType == 1">
|
|
|
- <div style="display: flex">
|
|
|
- <div
|
|
|
- id="commoDity"
|
|
|
- style="width: 68%; height: 350px; margin-left: 40px"
|
|
|
- ></div>
|
|
|
- <div id="cargoOwner" style="width: 30%; height: 350px"></div>
|
|
|
+ <div style="display: flex;">
|
|
|
+ <div style="width: 70%">
|
|
|
+ <div
|
|
|
+ id="commoDity"
|
|
|
+ style="width: 100%; height: 350px; margin-left: 40px"
|
|
|
+ ></div>
|
|
|
+ </div>
|
|
|
+ <div style="width: 30%">
|
|
|
+ <div id="cargoOwner" style="width: 100%; height: 350px"></div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+
|
|
|
<el-dialog
|
|
|
v-if="sysType == 1"
|
|
|
title="消息提示"
|
|
@@ -1296,4 +1304,10 @@ export default {
|
|
|
justify-content: center;
|
|
|
align-self: center;
|
|
|
}
|
|
|
+.home_stock_table_right {
|
|
|
+ display: flex;
|
|
|
+ width: 20%;
|
|
|
+ justify-content: space-around;
|
|
|
+ align-self: center;
|
|
|
+}
|
|
|
</style>
|