Commit 04c44d35 authored by liangjingpeng's avatar liangjingpeng

细节修改1

parent 4fea5d5a
<template> <template>
<div class="app-container"> <div class="app-container">
<div v-if="themeType === '8'" class="tableTitle">评审课题</div> <div v-if="themeType === '8'" class="tableTitle">评审课题</div>
<!-- <div class="search">--> <div class="search">
<div> <div>
<el-form ref="queryForm" style="padding: 0 0 0 10px; margin-top: 16px" :model="queryParams" :inline="true"> <el-form ref="queryForm" style="padding: 0 0 0 10px; margin-top: 16px" :model="queryParams" :inline="true">
<el-form-item label="课题类型" prop="labelType"> <el-form-item label="课题类型" prop="labelType">
<el-select v-model="queryParams.labelType" placeholder="请选课题类型" clearable size="small"> <el-select v-model="queryParams.labelType" placeholder="请选课题类型" clearable size="small">
<el-option <el-option
v-for="dict in sortOptions" v-for="dict in sortOptions"
:key="dict.dictValue" :key="dict.dictValue"
:label="dict.dictLabel" :label="dict.dictLabel"
:value="dict.dictValue" :value="dict.dictValue"
/> />
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="状态" prop="flag"> <el-form-item label="状态" prop="flag">
<el-select v-model="queryParams.flag" placeholder="请选择状态" clearable size="small"> <el-select v-model="queryParams.flag" placeholder="请选择状态" clearable size="small">
<el-option <el-option
v-for="dict in statusOptions" v-for="dict in statusOptions"
:key="dict.dictValue" :key="dict.dictValue"
:label="dict.dictLabel" :label="dict.dictLabel"
:value="dict.dictValue" :value="dict.dictValue"
/>
</el-select>
</el-form-item>
<el-form-item label="关键字" prop="labelName">
<el-input
v-model="queryParams.labelName"
placeholder="课题号,课题名称,申请人,手机号"
clearable
:maxlength="255"
size="small"
style="width: 300px"
/> />
</el-select> </el-form-item>
</el-form-item> <div style="float: right">
<el-form-item label="关键字" prop="labelName"> <el-form-item>
<el-input <el-button
v-model="queryParams.labelName" :class="commonField.queryClass"
placeholder="课题号,课题名称,申请人,手机号" :type="commonField.typePrimary"
clearable :icon="commonField.queryIcon"
:maxlength="255" :size="commonField.smallSize"
size="small" @click="handleQuery"
style="width: 300px" >查询
/> </el-button>
</el-form-item> <el-button
<div style="float: right"> :class="commonField.resetClass"
<el-form-item> :type="commonField.typePrimary"
<el-button :icon="commonField.resetIcon"
:class="commonField.queryClass" :size="commonField.smallSize"
:type="commonField.typePrimary" @click="resetQuery"
:icon="commonField.queryIcon" >重置
:size="commonField.smallSize" </el-button>
@click="handleQuery"
>查询
</el-button>
<el-button
:class="commonField.resetClass"
:type="commonField.typePrimary"
:icon="commonField.resetIcon"
:size="commonField.smallSize"
@click="resetQuery"
>重置
</el-button>
<!-- <el-button--> <!-- <el-button-->
<!-- :class="commonField.addClass"--> <!-- :class="commonField.addClass"-->
<!-- :type="commonField.typePrimary"--> <!-- :type="commonField.typePrimary"-->
...@@ -80,9 +80,10 @@ ...@@ -80,9 +80,10 @@
<!-- @click="handleExport"--> <!-- @click="handleExport"-->
<!-- >导出--> <!-- >导出-->
<!-- </el-button>--> <!-- </el-button>-->
</el-form-item> </el-form-item>
</div> </div>
</el-form> </el-form>
</div>
</div> </div>
<div style="padding:5px 10px"> <div style="padding:5px 10px">
<div v-if="themeType !== '8'" class="tableTitle">标签管理列表</div> <div v-if="themeType !== '8'" class="tableTitle">标签管理列表</div>
...@@ -296,12 +297,24 @@ export default { ...@@ -296,12 +297,24 @@ export default {
// 状态菜单 // 状态菜单
statusOptions: [ statusOptions: [
{ {
dictLabel: '启用', dictLabel: '立项评审中',
dictValue: '0'
},
{
dictLabel: '项目申报中',
dictValue: '1' dictValue: '1'
}, },
{ {
dictLabel: '停用', dictLabel: '验收评审中',
dictValue: '0' dictValue: '2'
},
{
dictLabel: '验收申请中',
dictValue: '3'
},
{
dictLabel: '验收完成',
dictValue: '4'
} }
], ],
sortOptions: [ sortOptions: [
......
...@@ -16,7 +16,8 @@ ...@@ -16,7 +16,8 @@
<el-step title="步骤 3"> <el-step title="步骤 3">
<div slot="title"> <div slot="title">
<span v-if="active === 2" class="step-title">验收评审中<a style="color: #bc14ff;font-weight: normal;">(待本人评审)</a></span> <span v-if="active === 2" class="step-title">验收评审中<a style="color: #bc14ff;font-weight: normal;">(待本人评审)</a></span>
<span v-else class="step-title">验收评审完成<a style="color: #bc14ff">(本人已评审)</a></span> <span v-else-if="active ===3" class="step-title">验收评审完成<a style="color: #bc14ff">(本人已评审)</a></span>
<span v-else class="step-title">验收完成</span>
</div> </div>
</el-step> </el-step>
</el-steps> </el-steps>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment