|
@@ -54,6 +54,7 @@ export default {
|
|
|
{ label: '积分类型', prop: 'title' },
|
|
|
{ label: '积分值', prop: 'score', align: 'center' },
|
|
|
{ label: '描述', prop: 'desc' },
|
|
|
+ { label: '提交时间', prop: 'createDate' },
|
|
|
{ label: '操作', prop: 'actions' }
|
|
|
],
|
|
|
items: [],
|
|
@@ -82,6 +83,10 @@ export default {
|
|
|
this.$refs.accumulatePointsApplyEditRefs.open()
|
|
|
},
|
|
|
getFile (row) {
|
|
|
+ if (!row.images) {
|
|
|
+ this.$message.warning('暂无附件')
|
|
|
+ return
|
|
|
+ }
|
|
|
this.previewUrl = row.images
|
|
|
this.$nextTick(() => {
|
|
|
setTimeout(() => {
|