根据状态控制按钮权限
This commit is contained in:
@@ -143,6 +143,7 @@
|
||||
type="text"
|
||||
icon="el-icon-edit"
|
||||
@click="editRow(scope.row)"
|
||||
v-if="scope.row.caseStatus == 0"
|
||||
v-hasPermi="['monitor:online:forceLogout']"
|
||||
>修改</el-button
|
||||
>
|
||||
@@ -151,6 +152,7 @@
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="deleteRow(scope.row)"
|
||||
v-if="scope.row.caseStatus == 0"
|
||||
v-hasPermi="['monitor:online:forceLogout']"
|
||||
>删除</el-button
|
||||
>
|
||||
@@ -159,6 +161,7 @@
|
||||
type="text"
|
||||
icon="el-icon-zoom-in"
|
||||
@click="filingreviewRow(scope.row)"
|
||||
v-if="scope.row.caseStatus == 1"
|
||||
v-hasPermi="['monitor:online:forceLogout']"
|
||||
>立案审查</el-button
|
||||
>
|
||||
@@ -167,6 +170,7 @@
|
||||
type="text"
|
||||
icon="el-icon-tickets"
|
||||
@click="viewpaymentRow(scope.row)"
|
||||
v-if="scope.row.caseStatus == 2"
|
||||
v-hasPermi="['monitor:online:forceLogout']"
|
||||
>查看缴费</el-button
|
||||
>
|
||||
@@ -183,6 +187,7 @@
|
||||
type="text"
|
||||
icon="el-icon-s-check"
|
||||
@click="courtconfirmationRow(scope.row)"
|
||||
v-if="scope.row.caseStatus == 6"
|
||||
v-hasPermi="['monitor:online:forceLogout']"
|
||||
>组庭确认</el-button
|
||||
>
|
||||
@@ -191,6 +196,7 @@
|
||||
type="text"
|
||||
icon="el-icon-check"
|
||||
@click="courtreviewRow(scope.row)"
|
||||
v-if="scope.row.caseStatus == 5"
|
||||
v-hasPermi="['monitor:online:forceLogout']"
|
||||
>组庭审核</el-button
|
||||
>
|
||||
@@ -199,6 +205,7 @@
|
||||
type="text"
|
||||
icon="el-icon-sort"
|
||||
@click="choosetrialmethodRow(scope.row)"
|
||||
v-if="scope.row.caseStatus == 7"
|
||||
v-hasPermi="['monitor:online:forceLogout']"
|
||||
>选择开庭方式</el-button
|
||||
>
|
||||
@@ -207,6 +214,7 @@
|
||||
type="text"
|
||||
icon="el-icon-edit-outline"
|
||||
@click="adjudicaterecordRow(scope.row)"
|
||||
v-if="scope.row.caseStatus == 9"
|
||||
v-hasPermi="['monitor:online:forceLogout']"
|
||||
>书面审理</el-button
|
||||
>
|
||||
@@ -215,6 +223,7 @@
|
||||
type="text"
|
||||
icon="el-icon-service"
|
||||
@click="trialcourtRow(scope.row)"
|
||||
v-if="scope.row.caseStatus == 8"
|
||||
v-hasPermi="['monitor:online:forceLogout']"
|
||||
>开庭审理</el-button
|
||||
>
|
||||
@@ -223,6 +232,7 @@
|
||||
type="text"
|
||||
icon="el-icon-document"
|
||||
@click="generateawardRow(scope.row)"
|
||||
v-if="scope.row.caseStatus == 10"
|
||||
v-hasPermi="['monitor:online:forceLogout']"
|
||||
>生成裁决书</el-button
|
||||
>
|
||||
@@ -231,6 +241,7 @@
|
||||
type="text"
|
||||
icon="el-icon-receiving"
|
||||
@click="fileRow(scope.row)"
|
||||
v-if="scope.row.caseStatus == 16"
|
||||
v-hasPermi="['monitor:online:forceLogout']"
|
||||
>归档</el-button
|
||||
>
|
||||
@@ -285,6 +296,7 @@
|
||||
<adjudicaterecordDialog
|
||||
:showadjudicaterecord="showadjudicaterecord"
|
||||
:form="form"
|
||||
:adjudicatename="adjudicatename"
|
||||
@canceladjudicaterecord="canceladjudicaterecord"
|
||||
@getcaseApply="getcaseApply"
|
||||
></adjudicaterecordDialog>
|
||||
@@ -356,6 +368,7 @@ export default {
|
||||
showchoosetrialmethod: false, //选择仲裁方式页面
|
||||
choosetrialmethodata:{},
|
||||
showadjudicaterecord: false, //书面审理弹框
|
||||
adjudicatename: {},//书面仲裁(被)申请人姓名
|
||||
showtrialincourt: false, //开庭审理
|
||||
};
|
||||
},
|
||||
@@ -524,7 +537,7 @@ export default {
|
||||
// console.log(row, "书面审理");
|
||||
this.showadjudicaterecord = true;
|
||||
this.form = row;
|
||||
// this.getInfo(row)
|
||||
this.getInfo(row)
|
||||
},
|
||||
canceladjudicaterecord() {
|
||||
this.showadjudicaterecord = false;
|
||||
@@ -549,8 +562,15 @@ export default {
|
||||
getInfo(row) {
|
||||
const id = row.id;
|
||||
selectCaseApply({ id }).then((res) => {
|
||||
this.visible = true;
|
||||
this.formData = res.data;
|
||||
console.log(res,'nnnnnnnnnnnn');
|
||||
// this.visible = true;
|
||||
// this.formData = res.data;
|
||||
this.adjudicatename = {
|
||||
applicantName: res.data.applicantName,
|
||||
respondentName: res.data.respondentName,
|
||||
feePayable: res.data.feePayable,
|
||||
hearDate: res.data.hearDate
|
||||
}
|
||||
this.initpaymentArr = [];
|
||||
this.initpaymentArr1 = [];
|
||||
res.data.caseAffiliates.forEach((item) => {
|
||||
|
||||
Reference in New Issue
Block a user