Commit 9a02d8a3 by Kyle_Li

选项更改

parent ac3ac10e
......@@ -29,7 +29,7 @@
</ul>
<span slot="footer">
<el-button @click="dialogVisible = false">取消</el-button>
<el-button type="primary" @click="doClean" :disabled="delTime">{{ delTime ? getDelTime() : '一键清除' }}</el-button>
<el-button type="primary" @click="doClean" :disabled="delTime || !trashList.length">{{ delTime ? getDelTime() : '一键清除' }}</el-button>
</span>
</el-dialog>
</div>
......
......@@ -26,6 +26,7 @@
<!-- 实时和非实时 -->
<el-select v-model="isRealTime" @change="realTimeStatus" placeholder="请选择" class="w-220 m-l-0">
<el-option key="" label="全部" value=""> </el-option>
<el-option :key="0" label="非实时" :value="0"> </el-option>
<el-option :key="1" label="实时" :value="1"> </el-option>
</el-select>
......@@ -289,7 +290,7 @@ export default {
data() {
return {
countGroupText: '',
isRealTime: 1,
isRealTime: '',
operateNumber: -1,
batchVisiable: false,
dialogVisible: true,
......@@ -877,7 +878,7 @@ export default {
groupName: this.tagSearch,
pageSize: 20,
pageNum: 1,
isRealTime: 1,
isRealTime: '',
effectiveStatus: this.statusSelect,
requestProject: 'gic-member-tag-web',
memberTagGroupClassifyId: ''
......
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