89 lines
2.9 KiB
Vue
89 lines
2.9 KiB
Vue
|
|
<template>
|
|||
|
|
<div class="">
|
|||
|
|
<el-row>
|
|||
|
|
<el-button icon="el-icon-arrow-left" size="small" @click="backClick">返回</el-button>
|
|||
|
|
<el-button size="small" @click="successOrder">操作</el-button>
|
|||
|
|
</el-row>
|
|||
|
|
<el-descriptions title="基本信息:" class="margin-top" :column="1" border>
|
|||
|
|
<el-descriptions-item label="序号">{{ emisNotCalcAging.id }}</el-descriptions-item>
|
|||
|
|
<el-descriptions-item label="不计时效名称">{{ emisNotCalcAging.name }}</el-descriptions-item>
|
|||
|
|
<el-descriptions-item label="英文名称">{{ emisNotCalcAging.nameEn }}</el-descriptions-item>
|
|||
|
|
<el-descriptions-item label="所属国家">{{ emisNotCalcAging.country }}</el-descriptions-item>
|
|||
|
|
<el-descriptions-item label="开始日期">{{ emisNotCalcAging.beginDate }}</el-descriptions-item>
|
|||
|
|
<el-descriptions-item label="结束日期">{{ emisNotCalcAging.endDate }}</el-descriptions-item>
|
|||
|
|
<el-descriptions-item label="启用状态">{{ emisNotCalcAging.status }}</el-descriptions-item>
|
|||
|
|
<el-descriptions-item label="备注">{{ emisNotCalcAging.remark }}</el-descriptions-item>
|
|||
|
|
<el-descriptions-item label="租户ID">{{ emisNotCalcAging.tenantId }}</el-descriptions-item>
|
|||
|
|
<el-descriptions-item label="删除标志(0代表存在">{{ emisNotCalcAging.delFlag }}</el-descriptions-item>
|
|||
|
|
<el-descriptions-item label="创建者">{{ emisNotCalcAging.createBy }}</el-descriptions-item>
|
|||
|
|
<el-descriptions-item label="创建时间">{{ emisNotCalcAging.createTime }}</el-descriptions-item>
|
|||
|
|
<el-descriptions-item label="更新者">{{ emisNotCalcAging.updateBy }}</el-descriptions-item>
|
|||
|
|
<el-descriptions-item label="更新时间">{{ emisNotCalcAging.updateTime }}</el-descriptions-item>
|
|||
|
|
</el-descriptions>
|
|||
|
|
</div>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<script>
|
|||
|
|
import { getEmisNotCalcAging } from "@/api/emis/emisNotCalcAging";
|
|||
|
|
|
|||
|
|
export default {
|
|||
|
|
name: "emisNotCalcAgingView",
|
|||
|
|
props:{
|
|||
|
|
id:undefined
|
|||
|
|
},
|
|||
|
|
dicts: [],
|
|||
|
|
data() {
|
|||
|
|
return {
|
|||
|
|
// 遮罩层
|
|||
|
|
loading: true,
|
|||
|
|
// 不计时效维护表格数据
|
|||
|
|
emisNotCalcAging: {}
|
|||
|
|
|
|||
|
|
};
|
|||
|
|
},
|
|||
|
|
created() {
|
|||
|
|
this.initData();
|
|||
|
|
},
|
|||
|
|
watch: {
|
|||
|
|
"id": {
|
|||
|
|
handler (newValue, oldValue) {
|
|||
|
|
this.id = newValue;
|
|||
|
|
this.initData();
|
|||
|
|
},
|
|||
|
|
deep: true
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
methods: {
|
|||
|
|
/** 查询不计时效维护列表 */
|
|||
|
|
initData() {
|
|||
|
|
this.loading = true;
|
|||
|
|
getEmisNotCalcAging(this.id).then(response => {
|
|||
|
|
this.emisNotCalcAging = response.data;
|
|||
|
|
this.loading = false;
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
},
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
};
|
|||
|
|
</script>
|
|||
|
|
|
|||
|
|
|
|||
|
|
<style rel="stylesheet/scss" lang="scss">
|
|||
|
|
|
|||
|
|
.margin-top{
|
|||
|
|
margin-top: 20px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.el-descriptions-item__label.is-bordered-label {
|
|||
|
|
min-width: 80px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.printMeClass {
|
|||
|
|
font-family: SimHei;
|
|||
|
|
label {
|
|||
|
|
font-weight: normal;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
</style>
|