删除自聘字段
This commit is contained in:
+6
-1
@@ -1,7 +1,12 @@
|
||||
<!--#
|
||||
layout("/layouts/platform.html"){
|
||||
#-->
|
||||
|
||||
<style>
|
||||
.el-table .cell.el-tooltip {
|
||||
white-space: pre-line !important;
|
||||
min-width: 50px !important;
|
||||
}
|
||||
</style>
|
||||
<div id="app" class="platform" v-cloak>
|
||||
<guava ref="guava" padding="0 5%">
|
||||
<template>
|
||||
|
||||
+11
-6
@@ -1,7 +1,12 @@
|
||||
<!--#
|
||||
layout("/layouts/platform.html"){
|
||||
#-->
|
||||
|
||||
<style>
|
||||
.el-table .cell.el-tooltip {
|
||||
white-space: pre-line !important;
|
||||
min-width: 50px !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div id="app" class="platform" v-cloak>
|
||||
<guava ref="guava" padding="0 5%">
|
||||
@@ -76,7 +81,7 @@ layout("/layouts/platform.html"){
|
||||
<el-radio-button :label="0">未选择</el-radio-button>
|
||||
</el-radio-group>
|
||||
<el-button type="primary" size="small" @click="openHealthFeedback"
|
||||
v-if="$auth.hasRoleOr(['BRANCH_UNION_CHAIRMAN'])">体检反馈</el-button>
|
||||
v-if="$auth.hasRoleOr(['BRANCH_UNION_CHAIRMAN'])">问题反馈</el-button>
|
||||
<el-button type="primary" size="small" @click="openImport"
|
||||
v-if="$auth.hasPermissionOr(['healthCheckup.list.import'])">导入名单
|
||||
</el-button>
|
||||
@@ -215,7 +220,7 @@ layout("/layouts/platform.html"){
|
||||
</el-row>
|
||||
</el-dialog>
|
||||
|
||||
<el-dialog title="体检反馈" :visible.sync="healthFeedbackDialog" width="60%"
|
||||
<el-dialog title="问题反馈" :visible.sync="healthFeedbackDialog" width="60%"
|
||||
:close-on-click-modal="false">
|
||||
<el-form :model="healthFeedbackForm" label-width="100px">
|
||||
<el-form-item label="反馈信息">
|
||||
@@ -226,8 +231,8 @@ layout("/layouts/platform.html"){
|
||||
<el-button @click="healthFeedbackDialog=false" type="primary" plain>取消</el-button>
|
||||
<el-button @click="saveHealthFeedback" type="primary" v-loading="healthFeedbackLoading">保存</el-button>
|
||||
</el-row>
|
||||
<el-table :data="healthFeedbackList" border style="width: 100%">
|
||||
<el-table-column align="center" label="问题反馈" prop="feedbackInfo" show-overflow-tooltip></el-table-column>
|
||||
<el-table :data="healthFeedbackList" border >
|
||||
<el-table-column align="center" label="问题反馈" prop="feedbackInfo" show-overflow-tooltip="false"></el-table-column>
|
||||
<el-table-column align="center" label="操作" width="100px">
|
||||
<template slot-scope="{row}">
|
||||
<el-button @click="deleteHealthFeedback(row)" type="danger" size="mini">删除</el-button>
|
||||
@@ -428,7 +433,7 @@ layout("/layouts/platform.html"){
|
||||
validateHealthFeedbackCondition() {
|
||||
// 反馈必须绑定当前筛选的年度和体检项目;分工会未选时由后端自动回落到当前登录人所属分工会。
|
||||
if (!this.pageForm.year || !this.pageForm.projectId) {
|
||||
this.notifyWarning("请先选择年度、体检项目后再打开体检反馈")
|
||||
this.notifyWarning("请先选择年度、体检项目后再打开问题反馈")
|
||||
return false
|
||||
}
|
||||
return true
|
||||
|
||||
Reference in New Issue
Block a user