a1b75d76 by xiaomiao

抵押权人信息

1 parent a9ee7796
...@@ -256,15 +256,7 @@ ...@@ -256,15 +256,7 @@
256 * @author: renchao 256 * @author: renchao
257 */ 257 */
258 deleClick (index, row) { 258 deleClick (index, row) {
259 this.$confirm("确定要删除吗, 是否继续?", "提示", {
260 confirmButtonText: "确定",
261 cancelButtonText: "取消",
262 type: "warning",
263 })
264 .then(() => {
265 this.tableData.splice(index, 1); 259 this.tableData.splice(index, 1);
266 })
267 .catch(() => { });
268 }, 260 },
269 261
270 // 身份证读取 262 // 身份证读取
......
...@@ -255,15 +255,7 @@ ...@@ -255,15 +255,7 @@
255 * @author: renchao 255 * @author: renchao
256 */ 256 */
257 deleClick (index, row) { 257 deleClick (index, row) {
258 this.$confirm("确定要删除吗, 是否继续?", "提示", {
259 confirmButtonText: "确定",
260 cancelButtonText: "取消",
261 type: "warning",
262 })
263 .then(() => {
264 this.tableData.splice(index, 1); 258 this.tableData.splice(index, 1);
265 })
266 .catch(() => { });
267 }, 259 },
268 260
269 // 身份证读取 261 // 身份证读取
......
...@@ -42,8 +42,8 @@ ...@@ -42,8 +42,8 @@
42 </el-form-item> 42 </el-form-item>
43 </el-col> 43 </el-col>
44 <el-col :span="8"> 44 <el-col :span="8">
45 <el-form-item label="份数" prop="qlbl"> 45 <el-form-item label="权利比例" prop="qlbl">
46 <el-input v-model="ruleForm.qlbl" :disabled="!showButton" maxlength="8" oninput="value=value.replace(/[^\d]/g,'')"></el-input> 46 <el-input v-model="ruleForm.qlbl" :disabled="!showButton||this.ruleForm.gyfs==1"></el-input>
47 </el-form-item> 47 </el-form-item>
48 </el-col> 48 </el-col>
49 49
...@@ -67,16 +67,12 @@ ...@@ -67,16 +67,12 @@
67 </el-row> 67 </el-row>
68 68
69 <el-row> 69 <el-row>
70 <el-col :span="16"> 70 <el-col :span="24">
71 <el-form-item label="地址" prop="txdz"> 71 <el-form-item label="地址" prop="txdz">
72 <el-input v-model="ruleForm.txdz" :disabled="!showButton"></el-input> 72 <el-input v-model="ruleForm.txdz" :disabled="!showButton"></el-input>
73 </el-form-item> 73 </el-form-item>
74 </el-col> 74 </el-col>
75 <el-col :span="8"> 75
76 <el-form-item label="邮编" prop="yb">
77 <el-input v-model="ruleForm.yb" :disabled="!showButton"></el-input>
78 </el-form-item>
79 </el-col>
80 </el-row> 76 </el-row>
81 77
82 <el-row> 78 <el-row>
...@@ -91,10 +87,11 @@ ...@@ -91,10 +87,11 @@
91 </el-form-item> 87 </el-form-item>
92 </el-col> 88 </el-col>
93 <el-col :span="8"> 89 <el-col :span="8">
94 <el-form-item label="权利比例" prop="qlbl"> 90 <el-form-item label="邮编" prop="yb">
95 <el-input v-model="ruleForm.qlbl" :disabled="!showButton"></el-input> 91 <el-input v-model="ruleForm.yb" :disabled="!showButton"></el-input>
96 </el-form-item> 92 </el-form-item>
97 </el-col> 93 </el-col>
94
98 </el-row> 95 </el-row>
99 96
100 <el-row> 97 <el-row>
......
...@@ -145,7 +145,7 @@ ...@@ -145,7 +145,7 @@
145 </template> 145 </template>
146 </el-table-column> 146 </el-table-column>
147 <el-table-column 147 <el-table-column
148 label="环节名称" 148 label="环节状态"
149 prop="name" 149 prop="name"
150 minWidth="100" 150 minWidth="100"
151 align="center" /> 151 align="center" />
...@@ -440,6 +440,9 @@ ...@@ -440,6 +440,9 @@
440 item.comments[item.comments.length - 1].message; 440 item.comments[item.comments.length - 1].message;
441 // 操作方式 441 // 操作方式
442 let controls = ""; 442 let controls = "";
443 // 正在办理
444 // 已完结
445 // 已退回
443 switch (type) { 446 switch (type) {
444 case "COMPLETE": 447 case "COMPLETE":
445 controls = "完成"; 448 controls = "完成";
......
...@@ -124,12 +124,12 @@ ...@@ -124,12 +124,12 @@
124 let that = this 124 let that = this
125 this.$nextTick(() => { 125 this.$nextTick(() => {
126 if (val.length == 0 || !val) { 126 if (val.length == 0 || !val) {
127 // that.tableDataList = _.cloneDeep([{ 127 that.tableDataList = _.cloneDeep([{
128 // sqrmc: '', 128 sqrmc: '',
129 // dlrzjlx: '', 129 dlrzjlx: '',
130 // dlrzjh: '', 130 dlrzjh: '',
131 // fr: '' 131 fr: ''
132 // }]) 132 }])
133 } else { 133 } else {
134 that.tableDataList = _.cloneDeep(val) 134 that.tableDataList = _.cloneDeep(val)
135 } 135 }
...@@ -205,14 +205,7 @@ ...@@ -205,14 +205,7 @@
205 * @author: renchao 205 * @author: renchao
206 */ 206 */
207 deleClick (index, row) { 207 deleClick (index, row) {
208 this.$confirm('确定要删除吗, 是否继续?', '提示', {
209 confirmButtonText: '确定',
210 cancelButtonText: '取消',
211 type: 'warning'
212 }).then(() => {
213 this.tableData.splice(index, 1) 208 this.tableData.splice(index, 1)
214 }).catch(() => {
215 });
216 }, 209 },
217 210
218 /** 211 /**
...@@ -250,9 +243,12 @@ ...@@ -250,9 +243,12 @@
250 * @author: renchao 243 * @author: renchao
251 */ 244 */
252 editClick (index, row) { 245 editClick (index, row) {
246 this.details = row
247 this.details.gyfs=this.gyfs
253 this.dataIndex = index 248 this.dataIndex = index
254 this.dialog = true 249 this.dialog = true
255 this.details = row 250
251
256 this.isaddupdate = false 252 this.isaddupdate = false
257 }, 253 },
258 /** 254 /**
...@@ -262,8 +258,10 @@ ...@@ -262,8 +258,10 @@
262 * @author: renchao 258 * @author: renchao
263 */ 259 */
264 queryViewClick (index, row) { 260 queryViewClick (index, row) {
265 this.dialog = true 261 // this.details.gyfs=this.gyfs
266 this.details = row 262 this.details = row
263 this.dialog = true
264
267 } 265 }
268 } 266 }
269 } 267 }
......
1 import { log } from "bpmn-js-token-simulation"
2 1
3 /* 2 /*
4 * @Description: 3 * @Description:
...@@ -13,7 +12,6 @@ export default { ...@@ -13,7 +12,6 @@ export default {
13 watch: { 12 watch: {
14 'ruleForm.sldy.gyfs': { 13 'ruleForm.sldy.gyfs': {
15 handler: function (val, oldVal) { 14 handler: function (val, oldVal) {
16 console.log("单独所有",val,oldVal);
17 if (val == '0' && this.ruleForm.qlrList.length > 1 && oldVal) { 15 if (val == '0' && this.ruleForm.qlrList.length > 1 && oldVal) {
18 this.ruleForm.sldy.gyfs = oldVal 16 this.ruleForm.sldy.gyfs = oldVal
19 this.$message({ 17 this.$message({
......