提交代码
parent
1c107346dc
commit
a77cfd4b41
|
@ -126,7 +126,7 @@
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="欠薪金额">
|
<el-form-item label="欠薪金额">
|
||||||
{{ dataInfo.laborNumber }} <el-tag size="small">元</el-tag>
|
{{ dataInfo.laborAmount }} <el-tag size="small">元</el-tag>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
|
@ -125,7 +125,7 @@
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="欠薪金额">
|
<el-form-item label="欠薪金额">
|
||||||
{{ dataInfo.laborNumber }} <el-tag size="small">元</el-tag>
|
{{ dataInfo.laborAmount }} <el-tag size="small">元</el-tag>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
|
@ -176,11 +176,19 @@
|
||||||
<span>{{ parseTime(scope.row.createTime, "{y}-{m}-{d} {h}:{i}") }}</span>
|
<span>{{ parseTime(scope.row.createTime, "{y}-{m}-{d} {h}:{i}") }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="原因说明"
|
||||||
|
align="center"
|
||||||
|
prop="laborReason"
|
||||||
|
width="120"
|
||||||
|
show-overflow-tooltip
|
||||||
|
/>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="操作"
|
label="操作"
|
||||||
align="center"
|
align="center"
|
||||||
width="120"
|
width="120"
|
||||||
class-name="small-padding fixed-width"
|
class-name="small-padding fixed-width"
|
||||||
|
fixed="right"
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button
|
<el-button
|
||||||
|
@ -354,7 +362,11 @@ export default {
|
||||||
if (this.myMinRoles.includes("lc_jfdb")) {
|
if (this.myMinRoles.includes("lc_jfdb")) {
|
||||||
this.jdsp = true;
|
this.jdsp = true;
|
||||||
}
|
}
|
||||||
if (this.myMinRoles.includes("admin") ||this.myMinRoles.includes("super") || this.myMinRoles.includes("jtgs")) {
|
if (
|
||||||
|
this.myMinRoles.includes("admin") ||
|
||||||
|
this.myMinRoles.includes("super") ||
|
||||||
|
this.myMinRoles.includes("jtgs")
|
||||||
|
) {
|
||||||
this.jtsp = true;
|
this.jtsp = true;
|
||||||
}
|
}
|
||||||
this.getList();
|
this.getList();
|
||||||
|
|
Loading…
Reference in New Issue