|
|
|
@ -1,7 +1,7 @@ |
|
|
|
<template> |
|
|
|
<div class="box"> |
|
|
|
<div style="width: 150%"> |
|
|
|
<el-card> |
|
|
|
<el-card class="elcard" style="border-radius: 15px"> |
|
|
|
<div class="publiccss">项目结果匹配</div> |
|
|
|
<el-table |
|
|
|
:data="tableData" |
|
|
|
@ -9,6 +9,7 @@ |
|
|
|
row-key="id" |
|
|
|
class="el-table__body-wrapper tbody" |
|
|
|
@row-click="rowclick" |
|
|
|
height="500" |
|
|
|
highlight-current-row |
|
|
|
> |
|
|
|
<el-table-column prop="id" label="编号" width="300"> |
|
|
|
@ -114,29 +115,34 @@ |
|
|
|
</div> |
|
|
|
<!-- 按钮区域 --> |
|
|
|
<div style="margin-left: 10px; margin-top: 5%"> |
|
|
|
<el-button type="primary" @click="add">新增</el-button> |
|
|
|
<el-button type="" @click="add" class="commonbutton" |
|
|
|
>新增</el-button |
|
|
|
> |
|
|
|
<el-button |
|
|
|
type="primary" |
|
|
|
type="" |
|
|
|
@click="editpopup" |
|
|
|
style="margin-left: 0; margin-top: 10px" |
|
|
|
class="commonbutton" |
|
|
|
>编辑</el-button |
|
|
|
> |
|
|
|
<div style="margin-top: 10px"> |
|
|
|
<el-button type="danger" @click="delets">删除</el-button> |
|
|
|
<el-button type="" @click="delets" class="commonbutton" |
|
|
|
>删除</el-button |
|
|
|
> |
|
|
|
</div> |
|
|
|
<div style="margin-top: 10px"> |
|
|
|
<el-button type="primary" @click="topping">置顶</el-button> |
|
|
|
<el-button type="" @click="topping" class="commonbutton">置顶</el-button> |
|
|
|
</div> |
|
|
|
<div style="margin-top: 10px"> |
|
|
|
<el-button type="primary" @click="toppings">置底</el-button> |
|
|
|
<el-button type="" @click="toppings" class="commonbutton">置底</el-button> |
|
|
|
</div> |
|
|
|
<div style="margin-top: 10px"> |
|
|
|
<el-button type="primary" :disabled="isshow" @click="assertion" |
|
|
|
<el-button type="" :disabled="isshow" @click="assertion" class="commonbutton" |
|
|
|
>排序</el-button |
|
|
|
> |
|
|
|
</div> |
|
|
|
<div style="margin-top: 5px"> |
|
|
|
<el-button type="primary" :disabled="isshow" @click="cancellation" |
|
|
|
<div style="margin-top: 10px"> |
|
|
|
<el-button type="" :disabled="isshow" @click="cancellation" class="commonbutton" |
|
|
|
>取消</el-button |
|
|
|
> |
|
|
|
</div> |
|
|
|
@ -416,6 +422,11 @@ export default { |
|
|
|
}; |
|
|
|
</script> |
|
|
|
<style scoped> |
|
|
|
::v-deep .el-table__header th { |
|
|
|
/* font-size: px; */ |
|
|
|
background-color: rgb(245, 245, 245); /* 设置表头背景颜色 */ |
|
|
|
color: rgb(113, 113, 113); /* 设置表头文字颜色 */ |
|
|
|
} |
|
|
|
.box { |
|
|
|
display: flex; |
|
|
|
} |
|
|
|
|