86 lines
2.6 KiB
Vue
86 lines
2.6 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.country }}</el-descriptions-item>
|
||
<el-descriptions-item label="不计时效日期">{{ emisNotCalcAging.noCalcDay }}</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>
|