6774ae4f by tianhaohao@pashanhoo.com

修改批量解封对应的问题

1 parent 0f908d24
...@@ -53,6 +53,10 @@ ...@@ -53,6 +53,10 @@
53 prop: "yg", 53 prop: "yg",
54 label: "原告" 54 label: "原告"
55 }, 55 },
56 {
57 prop: "cfjg",
58 label: "查封机关"
59 },
56 { 60 {
57 prop: "cfwh", 61 prop: "cfwh",
58 label: "查封文号" 62 label: "查封文号"
......
...@@ -62,11 +62,11 @@ ...@@ -62,11 +62,11 @@
62 <div class="triangle"></div> 62 <div class="triangle"></div>
63 <cfBdcdyTable :tableData="ruleForm.ztQlxxList" /> 63 <cfBdcdyTable :tableData="ruleForm.ztQlxxList" />
64 </div> 64 </div>
65 <div class="slxx_title title-block"> 65 <div class="slxx_title title-block" v-if="!ruleForm.slsq.djywbm.includes('400')">
66 批量查封信息 66 批量查封信息
67 <div class="triangle"></div> 67 <div class="triangle"></div>
68 </div> 68 </div>
69 <el-row :gutter="10"> 69 <el-row :gutter="10" v-if="!ruleForm.slsq.djywbm.includes('400')">
70 <el-col :span="8"> 70 <el-col :span="8">
71 <el-form-item :class="flag ? 'marginBot0' : ''" label="原告:"> 71 <el-form-item :class="flag ? 'marginBot0' : ''" label="原告:">
72 <el-input v-model="ruleForm.cfdj.yg" :disabled="!ableOperation|| isJfOperation"></el-input> 72 <el-input v-model="ruleForm.cfdj.yg" :disabled="!ableOperation|| isJfOperation"></el-input>
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
83 </el-form-item> 83 </el-form-item>
84 </el-col> 84 </el-col>
85 </el-row> 85 </el-row>
86 <el-row :gutter="10"> 86 <el-row :gutter="10" v-if="!ruleForm.slsq.djywbm.includes('400')">
87 <el-col :span="8"> 87 <el-col :span="8">
88 <el-form-item :class="flag ? 'marginBot0' : ''" label="查封期限:"> 88 <el-form-item :class="flag ? 'marginBot0' : ''" label="查封期限:">
89 <el-input v-model="ruleForm.cfdj.cfqx" :disabled="!ableOperation|| isJfOperation"></el-input> 89 <el-input v-model="ruleForm.cfdj.cfqx" :disabled="!ableOperation|| isJfOperation"></el-input>
...@@ -103,7 +103,7 @@ ...@@ -103,7 +103,7 @@
103 </el-form-item> 103 </el-form-item>
104 </el-col> 104 </el-col>
105 </el-row> 105 </el-row>
106 <el-row :gutter="10"> 106 <el-row :gutter="10" v-if="!ruleForm.slsq.djywbm.includes('400')">
107 <el-col :span="8"> 107 <el-col :span="8">
108 <el-form-item :class="flag ? 'marginBot0' : ''" label="查封文件:"> 108 <el-form-item :class="flag ? 'marginBot0' : ''" label="查封文件:">
109 <el-input v-model="ruleForm.cfdj.cfwj" :disabled="!ableOperation|| isJfOperation"></el-input> 109 <el-input v-model="ruleForm.cfdj.cfwj" :disabled="!ableOperation|| isJfOperation"></el-input>
...@@ -115,7 +115,7 @@ ...@@ -115,7 +115,7 @@
115 </el-form-item> 115 </el-form-item>
116 </el-col> 116 </el-col>
117 </el-row> 117 </el-row>
118 <el-row :gutter="10"> 118 <el-row :gutter="10" v-if="!ruleForm.slsq.djywbm.includes('400')">
119 <el-col> 119 <el-col>
120 <el-form-item :class="flag ? 'marginBot0' : ''" label="附记:"> 120 <el-form-item :class="flag ? 'marginBot0' : ''" label="附记:">
121 <el-input class="textArea" type="textarea" v-model="ruleForm.cfdj.fj" 121 <el-input class="textArea" type="textarea" v-model="ruleForm.cfdj.fj"
...@@ -123,7 +123,7 @@ ...@@ -123,7 +123,7 @@
123 </el-form-item> 123 </el-form-item>
124 </el-col> 124 </el-col>
125 </el-row> 125 </el-row>
126 <el-row :gutter="10"> 126 <el-row :gutter="10" v-if="!ruleForm.slsq.djywbm.includes('400')">
127 <el-col> 127 <el-col>
128 <el-form-item :class="flag ? 'marginBot0' : ''" label="登记原因:" prop="cfdj.djyy"> 128 <el-form-item :class="flag ? 'marginBot0' : ''" label="登记原因:" prop="cfdj.djyy">
129 <el-input class="textArea" type="textarea" v-model="ruleForm.cfdj.djyy" 129 <el-input class="textArea" type="textarea" v-model="ruleForm.cfdj.djyy"
......