Commit e163086e authored by 黄媛媛's avatar 黄媛媛

update

parent 952f1059
......@@ -119,6 +119,7 @@
font-size: 12px;
border-collapse: collapse;
font-family: "Microsoft YaHei"!important;
min-width:1200px;
}
.myTable thead th {
......
......@@ -73,7 +73,7 @@
<th>数量</th>
<th>领取人</th>
<th>操作人/时间</th>
<th width="150px">操作</th>
<th>操作</th>
</thead>
<tbody>
<template v-for="(item,index1) in tableData">
......
......@@ -66,7 +66,7 @@
<th>金额</th>
<th>数量</th>
<th>操作人/时间</th>
<th width="150px">操作</th>
<th>操作</th>
</thead>
<tbody>
<template v-for="(item,index1) in tableData">
......
......@@ -60,7 +60,7 @@
<th>库存</th>
<th>数量</th>
<th>操作人/时间</th>
<th width="150px">操作</th>
<th>操作</th>
</thead>
<tbody>
<template v-for="(item,index1) in tableData">
......
......@@ -85,7 +85,7 @@
<th>资产编号</th>
<th>品牌名称</th>
<th>操作人/时间</th>
<th width="150px">操作</th>
<t>操作</t>
</thead>
<tbody>
<template v-for="(item,index1) in tableData">
......
......@@ -107,58 +107,61 @@
</el-date-picker>
</li>
</ul>
<table
style="margin-top:10px"
class="myTable"
v-loading="loading"
border="0"
cellspacing="0"
cellpadding="0"
>
<thead>
<th>资产编码</th>
<th>资产名称</th>
<th>分类名称</th>
<th>品牌</th>
<th>设备序列号</th>
<th>使用人</th>
<th>所在公司</th>
<th>类型</th>
<th>本月折旧</th>
<th>累计折旧</th>
<th>残值率</th>
<th width="90px">预计使用(月)</th>
<th width="90px">已经使用(月)</th>
</thead>
<tbody>
<tr v-for="(item, index) in tableData" :key="index">
<td>
<span class="commonStyle hoverSpan1"></span>
<span @click="getCheckDes(item)" class="underline">{{ item.PropertyNum }}</span></td>
<td>{{ item.Name }}</td>
<td>{{ item.CategoryName }}</td>
<td>{{ item.BrandName }}</td>
<td>{{item.SerialNumber}}</td>
<td>{{ item.EmName}} </td>
<td>{{ item.BranchName}} </td>
<td>
<span v-if="item.DepreciationType==1">购置/起租日当月</span>
<span v-else>购置/起租日次月</span>
</td>
<td>{{item.MonthDepreciation }}</td>
<td>{{ item.TotalDepreciation }}</td>
<td>{{ item.ResidualsRate }}</td>
<td>{{ item.UseMonths}}</td>
<td>{{ item.UsedMonth}}</td>
<div class="overflowY">
<table
style="margin-top:10px"
class="myTable"
v-loading="loading"
border="0"
cellspacing="0"
cellpadding="0"
>
<thead>
<th>资产编码</th>
<th>资产名称</th>
<th>分类名称</th>
<th>品牌</th>
<th>设备序列号</th>
<th>使用人</th>
<th>所在公司</th>
<th>类型</th>
<th>本月折旧</th>
<th>累计折旧</th>
<th>残值率</th>
<th width="90px">预计使用(月)</th>
<th width="90px">已经使用(月)</th>
</thead>
<tbody>
<tr v-for="(item, index) in tableData" :key="index">
</tr>
<tr v-if="tableData.length == 0">
<td colspan="12" align="center">暂无数据</td>
</tr>
</tbody>
</table>
<td>
<span class="commonStyle hoverSpan1"></span>
<span @click="getCheckDes(item)" class="underline">{{ item.PropertyNum }}</span></td>
<td>{{ item.Name }}</td>
<td>{{ item.CategoryName }}</td>
<td>{{ item.BrandName }}</td>
<td>{{item.SerialNumber}}</td>
<td>{{ item.EmName}} </td>
<td>{{ item.BranchName}} </td>
<td>
<span v-if="item.DepreciationType==1">购置/起租日当月</span>
<span v-else>购置/起租日次月</span>
</td>
<td>{{item.MonthDepreciation }}</td>
<td>{{ item.TotalDepreciation }}</td>
<td>{{ item.ResidualsRate }}</td>
<td>{{ item.UseMonths}}</td>
<td>{{ item.UsedMonth}}</td>
</tr>
<tr v-if="tableData.length == 0">
<td colspan="12" align="center">暂无数据</td>
</tr>
</tbody>
</table>
</div>
<el-pagination
@current-change="currentChange"
background
......
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