|
|
|
@ -19,13 +19,12 @@ |
|
|
|
@on-load="onLoad" |
|
|
|
@on-load="onLoad" |
|
|
|
> |
|
|
|
> |
|
|
|
<template #menu="scope"> |
|
|
|
<template #menu="scope"> |
|
|
|
<el-button text icon="el-icon-view" @click="handleView(scope.row,'view')">详情</el-button> |
|
|
|
<el-button text @click="handleView(scope.row,'view')">详情</el-button> |
|
|
|
<el-button text @click="handleView(scope.row,'add')" v-show="scope.row.status == 1 || scope.row.status == 4"> |
|
|
|
<el-button text @click="handleView(scope.row,'add')" v-show="scope.row.status == 1 || scope.row.status == 4"> |
|
|
|
<el-icon style="margin-right: 5px;"><Edit /></el-icon> |
|
|
|
|
|
|
|
填报 |
|
|
|
填报 |
|
|
|
</el-button> |
|
|
|
</el-button> |
|
|
|
<el-button text v-show="scope.row.status == 3" icon="el-icon-first-aid-kit" @click="handleView(scope.row,'drug')">领药</el-button> |
|
|
|
<el-button text v-show="scope.row.status == 3" @click="handleView(scope.row,'drug')">领药</el-button> |
|
|
|
<el-button text v-show="scope.row.status == 2" icon="el-icon-circle-check" @click="handleView(scope.row,'check')">审核</el-button> |
|
|
|
<el-button text v-show="scope.row.status == 2" @click="handleView(scope.row,'check')">审核</el-button> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
<template #tpId="{ row }"> |
|
|
|
<template #tpId="{ row }"> |
|
|
|
{{ row.textProject.tpProject }} |
|
|
|
{{ row.textProject.tpProject }} |
|
|
|
@ -76,7 +75,10 @@ export default { |
|
|
|
issueForm:{}, |
|
|
|
issueForm:{}, |
|
|
|
option:{ |
|
|
|
option:{ |
|
|
|
tip: false, |
|
|
|
tip: false, |
|
|
|
simplePage: true, |
|
|
|
height:'auto', |
|
|
|
|
|
|
|
calcHeight: 32, |
|
|
|
|
|
|
|
columnSort: true, |
|
|
|
|
|
|
|
// simplePage: true, |
|
|
|
searchShow: true, |
|
|
|
searchShow: true, |
|
|
|
searchMenuSpan: 6, |
|
|
|
searchMenuSpan: 6, |
|
|
|
searchIcon: true, |
|
|
|
searchIcon: true, |
|
|
|
@ -91,6 +93,9 @@ export default { |
|
|
|
editBtn:false, |
|
|
|
editBtn:false, |
|
|
|
editBtnText: '修改', |
|
|
|
editBtnText: '修改', |
|
|
|
viewBtnText:'详情', |
|
|
|
viewBtnText:'详情', |
|
|
|
|
|
|
|
viewBtnIcon:' ', |
|
|
|
|
|
|
|
delBtnIcon:' ', |
|
|
|
|
|
|
|
editBtnIcon:' ', |
|
|
|
labelWidth: 120, |
|
|
|
labelWidth: 120, |
|
|
|
// menuWidth: 330, |
|
|
|
// menuWidth: 330, |
|
|
|
dialogWidth: 600, |
|
|
|
dialogWidth: 600, |
|
|
|
|