归档详情显示修复
This commit is contained in:
@@ -28,12 +28,10 @@ export default {
|
|||||||
noData: false,
|
noData: false,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
watch: {
|
created() {
|
||||||
caselogDataArr: {
|
if (this.caselogDataArr && this.caselogDataArr.length > 0) {
|
||||||
handler(val) {
|
|
||||||
if (val && val.length > 0) {
|
|
||||||
this.noData = false;
|
this.noData = false;
|
||||||
this.activities = val;
|
this.activities = this.caselogDataArr;
|
||||||
this.activities.forEach((item) => {
|
this.activities.forEach((item) => {
|
||||||
item.content = item.content;
|
item.content = item.content;
|
||||||
});
|
});
|
||||||
@@ -41,8 +39,6 @@ export default {
|
|||||||
this.noData = true;
|
this.noData = true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
cancel() {
|
cancel() {
|
||||||
this.$emit("cancelcaseLog");
|
this.$emit("cancelcaseLog");
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
clearable
|
clearable
|
||||||
@keyup.enter.native="handleQuery"
|
@keyup.enter.native="handleQuery"
|
||||||
/> -->
|
/> -->
|
||||||
<el-cascader :options="options" @change="changeDept" :props="{ checkStrictly: true }" clearable></el-cascader>
|
<el-cascader v-model="queryParams.nameId" :options="options" @change="changeDept" :props="{ checkStrictly: true }" clearable></el-cascader>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="案件状态" prop="caseStatus">
|
<el-form-item label="案件状态" prop="caseStatus">
|
||||||
<el-select v-model="queryParams.caseStatus" placeholder="请选择案件状态" clearable @keyup.enter.native="handleQuery">
|
<el-select v-model="queryParams.caseStatus" placeholder="请选择案件状态" clearable @keyup.enter.native="handleQuery">
|
||||||
@@ -97,10 +97,11 @@
|
|||||||
v-if="scope.row.caseStatus == 7" v-hasPermi="['caseManagement:list:checkarbitrationway']">审核仲裁方式</el-button>
|
v-if="scope.row.caseStatus == 7" v-hasPermi="['caseManagement:list:checkarbitrationway']">审核仲裁方式</el-button>
|
||||||
<el-button size="mini" type="text" icon="el-icon-edit-outline" @click="adjudicaterecordRow(scope.row)"
|
<el-button size="mini" type="text" icon="el-icon-edit-outline" @click="adjudicaterecordRow(scope.row)"
|
||||||
v-if="scope.row.caseStatus == 9 && scope.row.arbitratMethod == 2"
|
v-if="scope.row.caseStatus == 9 && scope.row.arbitratMethod == 2"
|
||||||
v-hasPermi="['caseManagement:list:hear']">书面审理</el-button>
|
>书面审理</el-button>
|
||||||
|
<!-- v-hasPermi="['caseManagement:list:hear']" -->
|
||||||
<el-button size="mini" type="text" icon="el-icon-service" @click="trialcourtRow(scope.row)"
|
<el-button size="mini" type="text" icon="el-icon-service" @click="trialcourtRow(scope.row)"
|
||||||
v-if="scope.row.caseStatus == 8 && scope.row.arbitratMethod == 1"
|
v-if="scope.row.caseStatus == 8 && scope.row.arbitratMethod == 1"
|
||||||
v-hasPermi="['caseManagement:list:hear']">开庭审理</el-button>
|
>开庭审理</el-button>
|
||||||
<el-button size="mini" type="text" icon="el-icon-document" @click="generateawardRow(scope.row)"
|
<el-button size="mini" type="text" icon="el-icon-document" @click="generateawardRow(scope.row)"
|
||||||
v-if="scope.row.caseStatus == 10" v-hasPermi="['caseManagement:list:createaward']">生成裁决书</el-button>
|
v-if="scope.row.caseStatus == 10" v-hasPermi="['caseManagement:list:createaward']">生成裁决书</el-button>
|
||||||
<!-- <el-button
|
<!-- <el-button
|
||||||
@@ -207,9 +208,10 @@ export default {
|
|||||||
caseNum: undefined,
|
caseNum: undefined,
|
||||||
// caseStatusList: [0, 1, 2, 5, 6, 7, 8, 9, 10, 16],
|
// caseStatusList: [0, 1, 2, 5, 6, 7, 8, 9, 10, 16],
|
||||||
caseStatusList: [0, 1, 2, 5, 6, 7, 8, 9, 10],
|
caseStatusList: [0, 1, 2, 5, 6, 7, 8, 9, 10],
|
||||||
hearDate: "",
|
// hearDate: "",
|
||||||
caseStatus: null,
|
caseStatus: null,
|
||||||
applicantName: "",
|
applicantName: "",
|
||||||
|
nameId: '',
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
},
|
},
|
||||||
@@ -295,6 +297,8 @@ export default {
|
|||||||
resetQuery() {
|
resetQuery() {
|
||||||
this.resetForm("queryForm");
|
this.resetForm("queryForm");
|
||||||
(this.queryParams.caseStatusList = [0, 1, 2, 5, 6, 7, 8, 9, 10]),
|
(this.queryParams.caseStatusList = [0, 1, 2, 5, 6, 7, 8, 9, 10]),
|
||||||
|
this.queryParams.applicantName = '',
|
||||||
|
this.queryParams.nameId = '',
|
||||||
this.getcaseApply(this.queryParams);
|
this.getcaseApply(this.queryParams);
|
||||||
},
|
},
|
||||||
// 案件录入
|
// 案件录入
|
||||||
|
|||||||
@@ -21,20 +21,20 @@
|
|||||||
>
|
>
|
||||||
<p></p>
|
<p></p>
|
||||||
<!-- <el-form ref="form"> -->
|
<!-- <el-form ref="form"> -->
|
||||||
|
<!-- v-if="isAgreePendTral == 0 || noArbitrator" -->
|
||||||
<div
|
<div
|
||||||
v-if="isAgreePendTral == 0 || noArbitrator"
|
|
||||||
style="display: inline-flex; margin-bottom: 8px"
|
style="display: inline-flex; margin-bottom: 8px"
|
||||||
>
|
>
|
||||||
<div class="infoIcon"></div>
|
<div class="infoIcon"></div>
|
||||||
<div>仲裁员信息列表</div>
|
<div><span v-if="isAgreePendTral == 1">当前案件</span>仲裁员信息列表</div>
|
||||||
</div>
|
</div>
|
||||||
<el-table
|
<el-table
|
||||||
:data="dataList"
|
:data="dataList"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
@selection-change="handleSelectionChange"
|
@selection-change="handleSelectionChange"
|
||||||
v-if="isAgreePendTral == 0 || noArbitrator"
|
|
||||||
>
|
>
|
||||||
<el-table-column type="selection" width="55"> </el-table-column>
|
<!-- v-if="isAgreePendTral == 0 || noArbitrator" -->
|
||||||
|
<el-table-column type="selection" width="55" v-if="isAgreePendTral == 0"> </el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="仲裁员姓名"
|
label="仲裁员姓名"
|
||||||
align="center"
|
align="center"
|
||||||
|
|||||||
+4
-4
@@ -2,11 +2,11 @@
|
|||||||
<div class="app-container home">
|
<div class="app-container home">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<div class="iconTitle"></div>
|
<div class="iconTitle"></div>
|
||||||
<div class="headerMain">我的代办事项</div>
|
<div class="headerMain">我的待办事项</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="homeMain">
|
<div class="homeMain">
|
||||||
<div class="cardList">
|
<div class="cardList">
|
||||||
<div class="badge">32</div>
|
<!-- <div class="badge">32</div> -->
|
||||||
<div class="cardMain" style="margin-top: 50px;">
|
<div class="cardMain" style="margin-top: 50px;">
|
||||||
<img class="iconImg" src="@/assets/images/daishencha.png" alt="">
|
<img class="iconImg" src="@/assets/images/daishencha.png" alt="">
|
||||||
</div>
|
</div>
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="cardList">
|
<div class="cardList">
|
||||||
<div class="badge">32</div>
|
<!-- <div class="badge">32</div> -->
|
||||||
<div class="cardMain" style="margin-top: 50px;">
|
<div class="cardMain" style="margin-top: 50px;">
|
||||||
<img class="iconImg" src="@/assets/images/daijiaofei.png" alt="">
|
<img class="iconImg" src="@/assets/images/daijiaofei.png" alt="">
|
||||||
</div>
|
</div>
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="cardList">
|
<div class="cardList">
|
||||||
<div class="badge">32</div>
|
<!-- <div class="badge">32</div> -->
|
||||||
<div class="cardMain" style="margin-top: 50px;">
|
<div class="cardMain" style="margin-top: 50px;">
|
||||||
<img class="iconImg" src="@/assets/images/peisongzhong.png" alt="">
|
<img class="iconImg" src="@/assets/images/peisongzhong.png" alt="">
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
+2
-2
@@ -72,8 +72,8 @@ export default {
|
|||||||
return {
|
return {
|
||||||
codeUrl: "",
|
codeUrl: "",
|
||||||
loginForm: {
|
loginForm: {
|
||||||
username: "admin",
|
username: "",
|
||||||
password: "admin123",
|
password: "",
|
||||||
rememberMe: false,
|
rememberMe: false,
|
||||||
code: "",
|
code: "",
|
||||||
uuid: ""
|
uuid: ""
|
||||||
|
|||||||
+2
-2
@@ -11,8 +11,8 @@ const name = process.env.VUE_APP_TITLE || '智慧仲裁管理系统' // 网页
|
|||||||
|
|
||||||
const port = process.env.port || process.env.npm_config_port || 80 // 端口
|
const port = process.env.port || process.env.npm_config_port || 80 // 端口
|
||||||
|
|
||||||
const API = 'http://121.40.189.20:9001' //测试
|
// const API = 'http://121.40.189.20:9001' //测试
|
||||||
// const API = 'http://192.168.3.18:9001' //B
|
const API = 'http://192.168.3.18:9001' //B
|
||||||
// const API = 'http://192.168.3.77:8080' //Q
|
// const API = 'http://192.168.3.77:8080' //Q
|
||||||
|
|
||||||
// vue.config.js 配置说明
|
// vue.config.js 配置说明
|
||||||
|
|||||||
Reference in New Issue
Block a user