first commit

This commit is contained in:
2026-09-09 09:14:28 +08:00
commit 5343198112
5199 changed files with 1052895 additions and 0 deletions
@@ -0,0 +1,32 @@
<el-table-column align="center" header-align="center" label="序号" width="80px">
<template scope="scope">
<span>{{scope.$index+(pageForm.pageNumber - 1) * pageForm.pageSize + 1}} </span>
</template>
</el-table-column>
<el-table-column label="工号" prop="loginname" header-align="center" min-width="80px"
show-overflow-tooltip
align="center"></el-table-column>
<el-table-column label="姓名" prop="user_name" header-align="center" min-width="80px"
show-overflow-tooltip
align="center"></el-table-column>
<el-table-column label="所属部门" prop="unit_name" sortable header-align="center" min-width="80px"
show-overflow-tooltip
align="center"></el-table-column>
<el-table-column label="申请时间" prop="apply_time" header-align="center" sortable min-width="80px"
show-overflow-tooltip
align="center"></el-table-column>
<el-table-column label="疾病诊断" prop="disease_diagnosis" header-align="center" min-width="80px"
show-overflow-tooltip
align="center"></el-table-column>
<el-table-column align="center" prop="type" header-align="center" label="补助类型" sortable
min-width="80px" show-overflow-tooltip>
<template scope="{row:{type}}">
<div v-html="medicalAid.elementType(type)"></div>
</template>
</el-table-column>
<el-table-column align="center" prop="state_id" header-align="center" label="申请状态" sortable
min-width="80px" show-overflow-tooltip>
<template scope="scope">
<span :style="'color:'+scope.row.state_color">{{scope.row.state_name}}</span>
</template>
</el-table-column>