1
This commit is contained in:
@@ -153,7 +153,7 @@
|
||||
dlzh: '',
|
||||
dlmm: '',
|
||||
code: '',
|
||||
creditCode:''
|
||||
creditCode: ''
|
||||
}
|
||||
};
|
||||
},
|
||||
@@ -347,26 +347,11 @@
|
||||
}, 2000);
|
||||
}
|
||||
},
|
||||
onShowdata() {
|
||||
uni.request({
|
||||
url: uni.conf.baseUrl + 'szzpy/getprovinceno',
|
||||
data: this.form,
|
||||
method: 'POST', //请求方式,必须为大写
|
||||
success: res => {
|
||||
if (res.data.data) {
|
||||
this.columns = [res.data.data]
|
||||
}
|
||||
},
|
||||
fail(res) {
|
||||
uni.showToast({
|
||||
title: res.data.message || res.data.msg,
|
||||
icon: 'none',
|
||||
success: () => {
|
||||
uni.pro.hideLoading();
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
async onShowdata() {
|
||||
let res = await this.api.szzpygetprovinceno(this.form)
|
||||
if (res) {
|
||||
this.columns = [res.data]
|
||||
}
|
||||
},
|
||||
confirm(e) {
|
||||
console.log('confirm', e)
|
||||
|
||||
Reference in New Issue
Block a user