|
|
@ -16,11 +16,29 @@ |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column prop="creatorName" label="创建者" width=""> |
|
|
<el-table-column prop="creatorName" label="创建者" width=""> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
|
|
|
<el-table-column prop="creationTime" label="创建时间" width="200"> |
|
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
|
{{ scope.row.creationTime | dateFormat }} |
|
|
|
|
|
</template> |
|
|
|
|
|
</el-table-column> |
|
|
|
|
|
<el-table-column prop="lastModifierName" label="修改者" width=""> |
|
|
|
|
|
</el-table-column> |
|
|
|
|
|
<el-table-column |
|
|
|
|
|
prop="lastModificationTime" |
|
|
|
|
|
label="修改时间" |
|
|
|
|
|
width="200" |
|
|
|
|
|
> |
|
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
|
{{ scope.row.lastModificationTime | dateFormat }} |
|
|
|
|
|
</template> |
|
|
|
|
|
</el-table-column> |
|
|
</el-table> |
|
|
</el-table> |
|
|
</el-card> |
|
|
</el-card> |
|
|
</div> |
|
|
</div> |
|
|
<!-- 按钮区域 --> |
|
|
<!-- 按钮区域 --> |
|
|
<div>1</div> |
|
|
|
|
|
|
|
|
<div style="margin-left: 10px; margin-top: 5%"> |
|
|
|
|
|
<el-button type="primary" @click="add">新增</el-button> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</template> |
|
|
</template> |
|
|
<script> |
|
|
<script> |
|
|
@ -36,12 +54,20 @@ export default { |
|
|
}, |
|
|
}, |
|
|
tableData: [], |
|
|
tableData: [], |
|
|
initTableData: [], |
|
|
initTableData: [], |
|
|
|
|
|
dialogVisible: false, |
|
|
|
|
|
title: 1, |
|
|
}; |
|
|
}; |
|
|
}, |
|
|
}, |
|
|
created() { |
|
|
created() { |
|
|
this.getlist(); |
|
|
this.getlist(); |
|
|
}, |
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
|
|
|
|
//新增弹框 |
|
|
|
|
|
add() { |
|
|
|
|
|
this.dialogVisible = true; |
|
|
|
|
|
this.title = 1; |
|
|
|
|
|
this.form = {}; |
|
|
|
|
|
}, |
|
|
rowick() {}, |
|
|
rowick() {}, |
|
|
getlist() { |
|
|
getlist() { |
|
|
postapi("/api/app/diagnosis/getlistinfilter", this.pages).then((res) => { |
|
|
postapi("/api/app/diagnosis/getlistinfilter", this.pages).then((res) => { |
|
|
|