|
|
@ -90,7 +90,9 @@ |
|
|
></el-pagination> |
|
|
></el-pagination> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<whyDialog v-if="editVisible" :isshow="editVisible" :dialogID="dialogID" |
|
|
|
|
|
:dialogType="dialogType" @MisShow="MisShow" @getData="getData" :isexamine="true" :account_type="query.type"> |
|
|
|
|
|
</whyDialog> |
|
|
</div> |
|
|
</div> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
@ -100,6 +102,8 @@ import moment from 'moment' |
|
|
export default { |
|
|
export default { |
|
|
data() { |
|
|
data() { |
|
|
return { |
|
|
return { |
|
|
|
|
|
dialogType:1, |
|
|
|
|
|
dialogID:'', |
|
|
query: { |
|
|
query: { |
|
|
firm_name: '', |
|
|
firm_name: '', |
|
|
phone: '', |
|
|
phone: '', |
|
|
@ -110,7 +114,8 @@ export default { |
|
|
audit_status: '', |
|
|
audit_status: '', |
|
|
time: '', |
|
|
time: '', |
|
|
page: 1, |
|
|
page: 1, |
|
|
limit: 10 |
|
|
limit: 10, |
|
|
|
|
|
type:'third_party' |
|
|
}, |
|
|
}, |
|
|
tableData: [], |
|
|
tableData: [], |
|
|
multipleSelection: [], |
|
|
multipleSelection: [], |
|
|
@ -150,10 +155,16 @@ export default { |
|
|
}, |
|
|
}, |
|
|
}; |
|
|
}; |
|
|
}, |
|
|
}, |
|
|
|
|
|
components:{ |
|
|
|
|
|
whyDialog: () => import('../../common/dialog/insex.vue') |
|
|
|
|
|
}, |
|
|
created() { |
|
|
created() { |
|
|
this.getData(); |
|
|
this.getData(); |
|
|
}, |
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
|
|
|
|
MisShow(){ |
|
|
|
|
|
this.editVisible=false |
|
|
|
|
|
}, |
|
|
// 重置方法 |
|
|
// 重置方法 |
|
|
reset(){ |
|
|
reset(){ |
|
|
Object.keys(this.query).forEach(key => { |
|
|
Object.keys(this.query).forEach(key => { |
|
|
@ -184,9 +195,9 @@ export default { |
|
|
}, |
|
|
}, |
|
|
// 编辑操作 |
|
|
// 编辑操作 |
|
|
handleEdit(index, row) { |
|
|
handleEdit(index, row) { |
|
|
this.idx = index; |
|
|
|
|
|
this.form = row; |
|
|
|
|
|
this.editVisible = true; |
|
|
this.editVisible = true; |
|
|
|
|
|
this.dialogID=row.id; |
|
|
|
|
|
this.dialogType=1 |
|
|
}, |
|
|
}, |
|
|
// 保存编辑 |
|
|
// 保存编辑 |
|
|
saveEdit() { |
|
|
saveEdit() { |
|
|
|