Commit da40979b authored by 姬鋆屾's avatar 姬鋆屾

提交

parent c5c089f7
......@@ -57,7 +57,9 @@
placeholder="请输入评分标准关键字搜索"
style="width: 200px;margin: 0 10px;"
></el-input>
<el-button type="primary"> 搜索 </el-button>
<el-button type="primary" @click="handleSearch">
搜索
</el-button>
</div>
</div>
<div class="mid_table">
......@@ -99,7 +101,9 @@
placeholder="请输入评分标准关键字搜索"
style="width: 200px;margin: 0 10px;"
></el-input>
<el-button type="primary"> 搜索 </el-button>
<el-button type="primary" @click="handleSearch">
搜索
</el-button>
</div>
</div>
<div class="mid_table">
......@@ -141,7 +145,9 @@
placeholder="请输入评分标准关键字搜索"
style="width: 200px;margin: 0 10px;"
></el-input>
<el-button type="primary"> 搜索 </el-button>
<el-button type="primary" @click="handleSearch">
搜索
</el-button>
</div>
</div>
<div class="mid_table">
......@@ -183,7 +189,9 @@
placeholder="请输入评分标准关键字搜索"
style="width: 200px;margin: 0 10px;"
></el-input>
<el-button type="primary"> 搜索 </el-button>
<el-button type="primary" @click="handleSearch">
搜索
</el-button>
</div>
</div>
<div class="mid_table">
......@@ -225,7 +233,9 @@
placeholder="请输入评分标准关键字搜索"
style="width: 200px;margin: 0 10px;"
></el-input>
<el-button type="primary"> 搜索 </el-button>
<el-button type="primary" @click="handleSearch">
搜索
</el-button>
</div>
</div>
<div class="mid_table">
......@@ -386,6 +396,9 @@ export default {
};
},
methods: {
handleSearch() {
this.getKaoQin(this.type);
},
handleRowClick(val) {
val.check = !val.check;
val.check
......@@ -405,7 +418,7 @@ export default {
this.$forceUpdate(this.tableData.data);
},
typeSelect(val) {
this.getKaoQin(val);
this.type = val;
},
async getData() {
await this.$post("/perform/rules/category/list", {
......@@ -426,7 +439,7 @@ export default {
page: this.query.page,
size: -1,
orderColList: this.typeArr,
name: this.searchValue,
content: this.keywords ? "%" + this.keywords + "%" : "",
}).then((res) => {
if (res.code == 1) {
this.tableData = res.data;
......
......@@ -52,7 +52,9 @@
placeholder="请输入评分标准关键字搜索"
style="width: 200px;margin: 0 10px;"
></el-input>
<el-button type="primary"> 搜索 </el-button>
<el-button type="primary" @click="handleSearch">
搜索
</el-button>
</div>
</div>
<div class="mid_table">
......@@ -94,7 +96,9 @@
placeholder="请输入评分标准关键字搜索"
style="width: 200px;margin: 0 10px;"
></el-input>
<el-button type="primary"> 搜索 </el-button>
<el-button type="primary" @click="handleSearch">
搜索
</el-button>
</div>
</div>
<div class="mid_table">
......@@ -136,7 +140,9 @@
placeholder="请输入评分标准关键字搜索"
style="width: 200px;margin: 0 10px;"
></el-input>
<el-button type="primary"> 搜索 </el-button>
<el-button type="primary" @click="handleSearch">
搜索
</el-button>
</div>
</div>
<div class="mid_table">
......@@ -178,7 +184,9 @@
placeholder="请输入评分标准关键字搜索"
style="width: 200px;margin: 0 10px;"
></el-input>
<el-button type="primary"> 搜索 </el-button>
<el-button type="primary" @click="handleSearch">
搜索
</el-button>
</div>
</div>
<div class="mid_table">
......@@ -220,7 +228,9 @@
placeholder="请输入评分标准关键字搜索"
style="width: 200px;margin: 0 10px;"
></el-input>
<el-button type="primary"> 搜索 </el-button>
<el-button type="primary" @click="handleSearch">
搜索
</el-button>
</div>
</div>
<div class="mid_table">
......@@ -426,6 +436,9 @@ export default {
},
methods: {
handleSearch() {
this.getKaoQin(this.type);
},
handleDialog() {
this.dialog = true;
this.$nextTick(() => {
......@@ -451,7 +464,8 @@ export default {
this.$forceUpdate(this.tableData.data);
},
typeSelect(val) {
this.getKaoQin(val);
this.type = val;
// this.getKaoQin(val);
},
async getData() {
await this.$post("/perform/rules/category/list", {
......@@ -472,7 +486,7 @@ export default {
page: this.query.page,
size: -1,
orderColList: this.typeArr,
name: this.searchValue,
content: this.keywords ? "%" + this.keywords + "%" : "",
}).then((res) => {
if (res.code == 1) {
this.tableData = res.data;
......
......@@ -25,19 +25,35 @@
</p>
<p>
<el-tag style="margin: 0 5px 5px 0"
>考勤绩效指标:{{ val.attendCount }}</el-tag
>考勤绩效指标:{{
val.attendCount < 0
? (val.attendCount = 0)
: val.attendCount
}}</el-tag
>
<el-tag style="margin: 0 5px 5px 0"
>评价绩效指标:{{ val.assessCount }}</el-tag
>评价绩效指标:{{
val.assessCount < 0
? (val.assessCount = 0)
: val.assessCount
}}</el-tag
>
<el-tag style="margin: 0 5px 5px 0"
>办件绩效指标:{{ val.workCount }}</el-tag
>办件绩效指标:{{
val.workCount < 0 ? (val.workCount = 0) : val.workCount
}}</el-tag
>
<el-tag style="margin: 0 5px 5px 0"
>效能绩效指标:{{ val.effectCount }}</el-tag
>效能绩效指标:{{
val.effectCount < 0
? (val.effectCount = 0)
: val.effectCount
}}</el-tag
>
<el-tag style="margin: 0 5px 5px 0"
>其他绩效指标:{{ val.otherCount }}</el-tag
>其他绩效指标:{{
val.otherCount < 0 ? (val.otherCount = 0) : val.otherCount
}}</el-tag
>
</p>
<p class="goal_txt">
......
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