Commit 1dbae457 authored by zhengke's avatar zhengke

no message

parent 598a0f61
......@@ -58,12 +58,18 @@
.orderlog-box-center{
margin: 0 10px;
}
.noData{
width: 100%;
text-align: center;
padding: 20px 0;
font-size: 12px;
color: #333;
}
</style>
<template>
<!-- :style="{height:logData.length>0?'460px':'400px'}" -->
<div class="orderProductDetails-box">
<div class="orderlog-box">
<div v-if="total>0" class="orderlog-box">
<div class="orderlog-box-center" v-for="(item,index) in logData" :key="index">
<div class="form-box-log">
<div class="form-log-title">
......@@ -83,12 +89,14 @@
</div>
</div>
</div>
<div v-else class="noData">暂无数据</div>
<div v-if="total>0">
<el-pagination class="Mypagination" background @current-change="handleCurrentChange"
:page-sizes="[10, 30, 60, 90, 100]" :page-size="msg.pageSize" layout="total, sizes, prev, pager, next"
@size-change="handleSizeChange" :total="total">
</el-pagination>
</div>
</div>
</template>
<script>
......
......@@ -74,7 +74,7 @@
<template>
<div class="orderProductDetails-box">
<el-form class="MyEditForm">
<div class="MultipleChoice-item">
<div v-if="checkList.length>0" class="MultipleChoice-item">
<div class="MultipleChoice-left">
<div v-for="(item,index) in checkList" :key="index">
{{item.Name}}
......@@ -126,6 +126,7 @@
</div>
</div>
</div>
<div v-else class="noData">暂无数据</div>
</el-form>
</div>
</template>
......
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