|
|
|
@ -9,17 +9,16 @@ |
|
|
|
|
<!-- 页面 数据 --> |
|
|
|
|
<div class="m-pages-data"> |
|
|
|
|
<!-- 操作 --> |
|
|
|
|
<div class="m-data-operate"> |
|
|
|
|
<!-- <div class="m-data-operate"> |
|
|
|
|
<el-row :gutter="10" class="mb8"> |
|
|
|
|
<el-col :span="1.5"> |
|
|
|
|
<!-- <el-button type="primary" icon="el-icon-plus" @click="openForm(undefined)" --> |
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click="openForm(undefined)" |
|
|
|
|
v-hasPermi="['event:event-list:create']" |
|
|
|
|
>新增事项清单 |
|
|
|
|
</el-button> |
|
|
|
|
</el-col> |
|
|
|
|
</el-row> |
|
|
|
|
</div> |
|
|
|
|
</div> --> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 表格 --> |
|
|
|
@ -28,9 +27,9 @@ |
|
|
|
|
<VDefault></VDefault> |
|
|
|
|
</template> |
|
|
|
|
<template v-else> |
|
|
|
|
<div class="event-history-item event-item" v-for="item in list"> |
|
|
|
|
<div class="event-history-item event-item" v-for="dict in this.getDictDatas(DICT_TYPE.EVENT_LIST)"> |
|
|
|
|
<div class="event-history-item-left"> |
|
|
|
|
<div class="enent-name">{{ item.name }}</div> |
|
|
|
|
<div class="enent-name">{{ dict.label}}</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="event-history-item-right"> |
|
|
|
|
<el-button @click="goUploadFile">智能填单</el-button> |
|
|
|
@ -160,3 +159,14 @@ export default { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</script> |
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|
.m-table{ |
|
|
|
|
display: flex; |
|
|
|
|
align-items: flex-start; |
|
|
|
|
justify-content: flex-start; |
|
|
|
|
|
|
|
|
|
.event-history-item-left{ |
|
|
|
|
max-width: 100%; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</style> |