Commit 9c9ac7ff authored by zhengke's avatar zhengke

修改

parent 94f26039
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<div class="page-search row items-center"> <div class="page-search row items-center">
<div class="col row wrap q-mr-lg q-col-gutter-md"> <div class="col row wrap q-mr-lg q-col-gutter-md">
<div class="col-3"> <div class="col-3">
<q-input @input="resetSearch" clearable standout="bg-primary text-white" class="col-6 q-pr-lg q-pr-lg" <q-input @input="resetSearch" clearable standout="bg-primary text-white"
v-model="qMsg.ItemName" label="事项名称" maxlength="20" @clear="resetSearch" /> v-model="qMsg.ItemName" label="事项名称" maxlength="20" @clear="resetSearch" />
</div> </div>
<div class="col-3"> <div class="col-3">
...@@ -11,6 +11,10 @@ ...@@ -11,6 +11,10 @@
option-label="SName" v-model="qMsg.ItemSchools" :options="schoolOptions" emit-value map-options label="校区" option-label="SName" v-model="qMsg.ItemSchools" :options="schoolOptions" emit-value map-options label="校区"
@clear="resetSearch" /> @clear="resetSearch" />
</div> </div>
<div class="col-3">
<q-select @input="resetSearch" clearable stack-label v-model="qMsg.DutyCategory" :options="dutyCategoryList" color="primary" filled
label="分类" option-label="Name" option-value="Id" ref="DutyCategory" emit-value map-options @clear="resetSearch" />
</div>
</div> </div>
</div> </div>
<div class="page-content"> <div class="page-content">
...@@ -129,10 +133,24 @@ ...@@ -129,10 +133,24 @@
rowsPerPage: 10, rowsPerPage: 10,
ItemName: "", //事项名称 ItemName: "", //事项名称
ItemSchools: [], //所属校区 ItemSchools: [], //所属校区
DutyCategory:''
}, },
pageCount: 0, pageCount: 0,
isShowAdd: false, //是否显示添加事项弹窗 isShowAdd: false, //是否显示添加事项弹窗
itemObj: {}, //事项对象 itemObj: {}, //事项对象
dutyCategoryList: [{
Id: 1,
Name: "工作清单"
},
{
Id: 2,
Name: "突发事件"
},
{
Id: 3,
Name: "交接说明"
},
]
} }
}, },
created() { created() {
......
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