|
@ -153,6 +153,7 @@ |
|
|
type="text" |
|
|
type="text" |
|
|
icon="el-icon-edit" |
|
|
icon="el-icon-edit" |
|
|
@click="handleUpdate(scope.row)" |
|
|
@click="handleUpdate(scope.row)" |
|
|
|
|
|
:disabled="scope.row.type == 1" |
|
|
>修改</el-button |
|
|
>修改</el-button |
|
|
> |
|
|
> |
|
|
<el-button |
|
|
<el-button |
|
@ -160,6 +161,7 @@ |
|
|
type="text" |
|
|
type="text" |
|
|
icon="el-icon-delete" |
|
|
icon="el-icon-delete" |
|
|
@click="handleDelete(scope.row)" |
|
|
@click="handleDelete(scope.row)" |
|
|
|
|
|
:disabled="scope.row.type == 1" |
|
|
>删除</el-button |
|
|
>删除</el-button |
|
|
> |
|
|
> |
|
|
</template> |
|
|
</template> |
|
@ -357,7 +359,7 @@ export default { |
|
|
followupQuery(this.queryParams).then((res) => { |
|
|
followupQuery(this.queryParams).then((res) => { |
|
|
let commonQueue = JSON.parse(localStorage.getItem('commonQueue')) |
|
|
let commonQueue = JSON.parse(localStorage.getItem('commonQueue')) |
|
|
this.listDat = res.data.list; |
|
|
this.listDat = res.data.list; |
|
|
commonQueue.forEach(i=>{ |
|
|
commonQueue?.forEach(i=>{ |
|
|
this.listDat.unshift(i) |
|
|
this.listDat.unshift(i) |
|
|
}) |
|
|
}) |
|
|
this.total = res.data.total; |
|
|
this.total = res.data.total; |
|
|