Commit 9ffe3482 by caoyanzhi

update: 弹窗计划ui调整

parent f68906ce
......@@ -2,16 +2,16 @@
<section class="dm-wrap" v-loading="loading">
<div class="clearfix pb22">
<el-input v-model="listParams.keyword" style="width:239px;" placeholder="请输入内容" clearable @change="refresh"><i slot="prefix" class="el-input__icon el-icon-search"></i></el-input>
<el-select class="dm-select" clearable v-model="listParams.activeStatus" placeholder="全部状态" @change="refresh">
<el-date-picker style="width: 327px" v-model="listParams.dateTime" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" @change="refresh"></el-date-picker>
<el-select style="width: 135px" clearable v-model="listParams.activeStatus" placeholder="全部状态" @change="refresh">
<el-option v-for="item in activeStatusOpt" :key="item.value" :label="item.label" :value="item.value"></el-option>
</el-select>
<el-select class="dm-select" clearable v-model="listParams.putonType" placeholder="全部内容" @change="refresh">
<el-select style="width: 135px" clearable v-model="listParams.putonType" placeholder="全部内容" @change="refresh">
<el-option v-for="item in putonTypeOpt" :key="item.value" :label="item.label" :value="item.value"></el-option>
</el-select>
<el-date-picker class="w300" v-model="listParams.dateTime" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" @change="refresh"></el-date-picker>
<el-checkbox v-model="listParams.onlySelf" :true-label="1" :false-label="0" @change="refresh">仅看本人</el-checkbox>
<div class="fr">
<el-button type="primary" :disabled="tableList.length >= 30" @click="goForm({}, 'add')">新建计划{{ tableList.length }}/30)</el-button>
<el-button type="primary" :disabled="tableList.length >= 30" @click="goForm({}, 'add')">新建计划 ({{ tableList.length }}/30)</el-button>
</div>
</div>
<el-table tooltipEffect="light" style="width: 100%" :class="{ emptyTable: Array.isArray(tableList) && tableList.length > 0 }">
......
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