|
@@ -223,18 +223,18 @@
|
|
<dict-tag :options="dict.type.asset_order_type" :value="scope.row.orderType"/>
|
|
<dict-tag :options="dict.type.asset_order_type" :value="scope.row.orderType"/>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column v-if="queryParams.orderType !== '1'" label="资产总原值" align="center" prop="assetTotalOriginalValue" />
|
|
|
|
- <el-table-column v-if="queryParams.orderType !== '1'" label="资产总净值" align="center" prop="assetTotalNetValue" />
|
|
|
|
<el-table-column label="申请日期" align="center" prop="applicationDate" width="180">
|
|
<el-table-column label="申请日期" align="center" prop="applicationDate" width="180">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<span>{{ parseTime(scope.row.applicationDate, '{y}-{m}-{d}') }}</span>
|
|
<span>{{ parseTime(scope.row.applicationDate, '{y}-{m}-{d}') }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="申请部门" align="center" prop="applicationDepartmentName" />
|
|
<el-table-column label="申请部门" align="center" prop="applicationDepartmentName" />
|
|
|
|
+ <el-table-column v-if="queryParams.orderType !== '1'" label="资产总原值" align="center" prop="assetTotalOriginalValue" />
|
|
|
|
+ <el-table-column v-if="queryParams.orderType !== '1'" label="资产总净值" align="center" prop="assetTotalNetValue" />
|
|
<el-table-column v-if="queryParams.orderType === '1'" label="【调整】资产编号" align="center" prop="adjustmentAssetNumber" />
|
|
<el-table-column v-if="queryParams.orderType === '1'" label="【调整】资产编号" align="center" prop="adjustmentAssetNumber" />
|
|
<el-table-column v-if="queryParams.orderType === '1'" label="【调整】资产原信息" align="center" prop="adjustmentOriginalAssetInfo">
|
|
<el-table-column v-if="queryParams.orderType === '1'" label="【调整】资产原信息" align="center" prop="adjustmentOriginalAssetInfo">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <el-button type="text" icon="el-icon-search" @click="onSelectOriginalAssetInfo(scope.row.adjustmentOriginalAssetInfo)">查看</el-button>
|
|
|
|
|
|
+ <el-button v-if="queryParams.orderType === '1'" type="text" icon="el-icon-search" @click="onSelectOriginalAssetInfo(scope.row.adjustmentOriginalAssetInfo)">查看</el-button>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column v-if="queryParams.orderType === '2'" label="【调拨】调出部门" align="center" prop="allocationCallOutDepartmentName" />
|
|
<el-table-column v-if="queryParams.orderType === '2'" label="【调拨】调出部门" align="center" prop="allocationCallOutDepartmentName" />
|
|
@@ -265,9 +265,17 @@
|
|
<dict-tag :options="dict.type.asset_record_status" :value="scope.row.recordStatus"/>
|
|
<dict-tag :options="dict.type.asset_record_status" :value="scope.row.recordStatus"/>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
<el-button
|
|
|
|
+ v-if="queryParams.orderType !== '1'"
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ icon="el-icon-document"
|
|
|
|
+ @click="handleUpdate(scope.row)"
|
|
|
|
+ v-hasPermi="['order:order:edit']"
|
|
|
|
+ >明细</el-button>
|
|
|
|
+ <el-button
|
|
size="mini"
|
|
size="mini"
|
|
type="text"
|
|
type="text"
|
|
icon="el-icon-edit"
|
|
icon="el-icon-edit"
|
|
@@ -442,6 +450,9 @@
|
|
<el-dialog title="资产调整" :visible.sync="openAdjustment" width="900px" append-to-body>
|
|
<el-dialog title="资产调整" :visible.sync="openAdjustment" width="900px" append-to-body>
|
|
<AssetInfo :title="'资产原信息'" :assetInfo="adjustmentOriginalAssetInfo"/>
|
|
<AssetInfo :title="'资产原信息'" :assetInfo="adjustmentOriginalAssetInfo"/>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
|
|
+
|
|
|
|
+ <el-dialog title="">
|
|
|
|
+ </el-dialog>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|