|
@@ -413,6 +413,7 @@ export default {
|
|
|
],
|
|
|
},
|
|
|
trackList: [],
|
|
|
+ creatloginNameStr:"",//发起人name
|
|
|
// 顶部form
|
|
|
table_form: [
|
|
|
{
|
|
@@ -694,6 +695,8 @@ export default {
|
|
|
},
|
|
|
// 编辑按钮
|
|
|
handleEdit(row) {
|
|
|
+ console.log(row.loginNameStr)
|
|
|
+ this.creatloginNameStr=row.loginNameStr
|
|
|
this.visible = true;
|
|
|
this.edit_visible = true;
|
|
|
this.edit_form = row;
|
|
@@ -967,7 +970,7 @@ export default {
|
|
|
}).then(({ data }) => {
|
|
|
this.transfer_list_orgin = data
|
|
|
.filter((el) => {
|
|
|
- return el.loginNoStr !== loginNoStr;
|
|
|
+ return el.loginNoStr !== loginNoStr&&el.loginNameStr !== this.creatloginNameStr;
|
|
|
})
|
|
|
.map((el) => ({
|
|
|
...el,
|