仲裁员接口调试

This commit is contained in:
Your Name
2023-10-12 20:25:40 +08:00
parent 04cfcc334f
commit 23677e626e
2 changed files with 42 additions and 25 deletions
@@ -38,16 +38,16 @@
<el-table-column
label="仲裁员姓名"
align="center"
prop="arbitratorName"
prop="nickName"
:show-overflow-tooltip="true"
/>
<el-table-column
label="专业分类"
label="介绍"
align="center"
prop="professiClassifi"
prop="remark"
:show-overflow-tooltip="true"
/>
<el-table-column
<!-- <el-table-column
label="当前案件数量"
align="center"
prop="currentCaseNum"
@@ -58,7 +58,7 @@
align="center"
prop="closedCaseNum"
:show-overflow-tooltip="true"
/>
/> -->
</el-table>
<pagination
v-show="total > 0"
@@ -110,7 +110,6 @@ export default {
formateCourtData: {
handler(val) {
if (val.arbitratorName == null) {
console.log("无仲裁员", val);
this.noArbitrator = true;
} else {
this.noArbitrator = false;
@@ -131,8 +130,8 @@ export default {
this.arbitrators = [];
val.forEach((item) => {
this.arbitrators.push({
id: item.id,
arbitratorName: item.arbitratorName,
id: item.userId,
arbitratorName: item.nickName,
});
});
},