Commit 9dc3fc10678740ffcc66f1c79dae8d4237f09543
1 parent
e47508b6
优化巡查列表页面
Showing
3 changed files
with
10 additions
and
10 deletions
src/views/DisposalSuggestions/Form.vue
| ... | ... | @@ -83,7 +83,7 @@ |
| 83 | 83 | <span slot="footer" class="dialog-footer"> |
| 84 | 84 | <el-button @click="visible = false">取 消</el-button> |
| 85 | 85 | <el-button type="primary" @click="dataFormSubmit()">确 定</el-button> |
| 86 | - <el-button type="primary" @click="dataFormSubmit()">存 档</el-button> | |
| 86 | + <el-button type="info" @click="dataFormSubmit()" v-if="isSHILevel">存 档</el-button> | |
| 87 | 87 | </span> |
| 88 | 88 | </el-dialog> |
| 89 | 89 | </template> | ... | ... |
src/views/DisposalSuggestions/index.vue
| ... | ... | @@ -54,7 +54,8 @@ |
| 54 | 54 | <template slot-scope="scope">{{ scope.row.questionType | dynamicText(questionTypeOptions) }}</template> |
| 55 | 55 | </el-table-column> |
| 56 | 56 | <el-table-column show-overflow-tooltip prop="link" label="有害链接" align="left" /> |
| 57 | - <el-table-column show-overflow-tooltip prop="disposalSuggestions" label="处置建议" align="left" /> | |
| 57 | + <el-table-column show-overflow-tooltip prop="disposalSuggestions" label="关键词" align="left" /> | |
| 58 | + <!-- <el-table-column show-overflow-tooltip prop="disposalSuggestions" label="处置建议" align="left" /> | |
| 58 | 59 | <el-table-column show-overflow-tooltip prop="id" label="主键" align="left" /> |
| 59 | 60 | <el-table-column show-overflow-tooltip prop="department" label="部门" align="left" /> |
| 60 | 61 | <el-table-column show-overflow-tooltip label="问题分类" prop="questionClass" align="left"> |
| ... | ... | @@ -62,7 +63,7 @@ |
| 62 | 63 | </el-table-column> |
| 63 | 64 | <el-table-column show-overflow-tooltip label="阶段" prop="stage" align="left"> |
| 64 | 65 | <template slot-scope="scope">{{ scope.row.stage | dynamicText(stageOptions) }}</template> |
| 65 | - </el-table-column> | |
| 66 | + </el-table-column> --> | |
| 66 | 67 | <el-table-column label="操作" fixed="right" width="100"> |
| 67 | 68 | <template slot-scope="scope"> |
| 68 | 69 | <el-button type="text" @click="addOrUpdateHandle(scope.row.id)" >判研</el-button> | ... | ... |
src/views/baseInspectionReport/index.vue
| ... | ... | @@ -59,15 +59,14 @@ |
| 59 | 59 | <template slot-scope="scope">{{ scope.row.questionType | dynamicText(questionTypeOptions) }}</template> |
| 60 | 60 | </el-table-column> |
| 61 | 61 | <el-table-column show-overflow-tooltip prop="link" label="有害链接" align="left" /> |
| 62 | - <el-table-column show-overflow-tooltip prop="disposalSuggestions" label="处置建议" align="left" /> | |
| 63 | - <el-table-column show-overflow-tooltip prop="id" label="主键" align="left" /> | |
| 64 | - <el-table-column show-overflow-tooltip prop="department" label="部门" align="left" /> | |
| 65 | - <el-table-column show-overflow-tooltip label="问题分类" prop="questionClass" align="left"> | |
| 62 | + <el-table-column show-overflow-tooltip prop="disposalSuggestions" label="关键词" align="left" /> | |
| 63 | + <!-- <el-table-column show-overflow-tooltip prop="department" label="部门" align="left" /> --> | |
| 64 | + <!-- <el-table-column show-overflow-tooltip label="问题分类" prop="questionClass" align="left"> | |
| 66 | 65 | <template slot-scope="scope">{{ scope.row.questionClass | dynamicText(questionClassOptions) }}</template> |
| 67 | - </el-table-column> | |
| 68 | - <el-table-column show-overflow-tooltip label="阶段" prop="stage" align="left"> | |
| 66 | + </el-table-column> --> | |
| 67 | + <!-- <el-table-column show-overflow-tooltip label="阶段" prop="stage" align="left"> | |
| 69 | 68 | <template slot-scope="scope">{{ scope.row.stage | dynamicText(stageOptions) }}</template> |
| 70 | - </el-table-column> | |
| 69 | + </el-table-column> --> | |
| 71 | 70 | <el-table-column label="操作" fixed="right" width="100"> |
| 72 | 71 | <template slot-scope="scope"> |
| 73 | 72 | <el-button type="text" @click="addOrUpdateHandle(scope.row.id)" >编辑</el-button> | ... | ... |