|
|
@ -5,8 +5,8 @@ |
|
|
|
<el-select slot="prepend" v-model="query.isType" class="filter-item" style="width: 130px;height:30px;margin-right:10px" @change="initData"> |
|
|
|
<el-option v-for="item in typeOptions" :key="item.value" :label="item.label" :value="item.value" /> |
|
|
|
</el-select> |
|
|
|
<el-input v-model="query[inputSelect]" clearable size="small" placeholder="请输入关键词" style="width: 200px;" class="input-prepend filter-item" @keyup.enter.native="initData"> |
|
|
|
<el-select slot="prepend" v-model="inputSelect" style="width: 80px"> |
|
|
|
<el-input v-model="query[inputSelect]" clearable size="small" placeholder="请输入关键词" style="width: 250px;" class="input-prepend filter-item" @keyup.enter.native="initData"> |
|
|
|
<el-select slot="prepend" v-model="inputSelect" style="width: 100px;"> |
|
|
|
<el-option v-for="item in queryOptions" :key="item.value" :label="item.label" :value="item.value" /> |
|
|
|
</el-select> |
|
|
|
</el-input> |
|
|
@ -15,7 +15,8 @@ |
|
|
|
<div class="archives-handler-btn"> |
|
|
|
<!-- iconfont icon-weibiaoti-2 --> |
|
|
|
<el-button class="lending-btn" type="primary" :loading="unbindBtnLoading" @click="unbind()"> |
|
|
|
<svg-icon icon-class="remove_bind" class-name="svg-style" style="margin-right:8px" />解除绑定</el-button> |
|
|
|
<svg-icon icon-class="remove_bind" class-name="svg-style" style="margin-right:8px" />解除绑定 |
|
|
|
</el-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<el-table ref="table" v-loading="loading" :data="bindTagList" style="width: 100%;" height="calc(100vh - 357px)" @row-click="clickRowHandler" @selection-change="selectionChangeHandler"> |
|
|
@ -97,7 +98,7 @@ export default { |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '标签名称', |
|
|
|
value: 'tagName' |
|
|
|
value: 'query' |
|
|
|
} |
|
|
|
], |
|
|
|
unbindVisible: false, |
|
|
@ -177,23 +178,26 @@ export default { |
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|
@import "~@/assets/styles/archives-manage.scss"; |
|
|
|
.header{ |
|
|
|
.header { |
|
|
|
display: flex; |
|
|
|
justify-content: space-between; |
|
|
|
padding-top: 0; |
|
|
|
margin-top: -10px; |
|
|
|
.head-left{ |
|
|
|
.el-button{ |
|
|
|
margin-left:-10px ; |
|
|
|
background-color: #3A99FD; |
|
|
|
&:hover{ |
|
|
|
background-color: #02255F; |
|
|
|
.head-left { |
|
|
|
.el-button { |
|
|
|
margin-left: -10px; |
|
|
|
background-color: #3a99fd; |
|
|
|
&:hover { |
|
|
|
background-color: #02255f; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
.archives-handler-btn .el-button{ |
|
|
|
.archives-handler-btn .el-button { |
|
|
|
height: 30px; |
|
|
|
width: 106px; |
|
|
|
} |
|
|
|
::v-deep .input-prepend .el-input__inner { |
|
|
|
padding-left: 100px; |
|
|
|
} |
|
|
|
</style> |