Browse Source

优化第三方审核

master
ltlzx 5 years ago
parent
commit
30580fb034
  1. 19
      src/components/page/AccountManagement/thirdAudit.vue

19
src/components/page/AccountManagement/thirdAudit.vue

@ -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() {

Loading…
Cancel
Save