Commit 4a8d8a95 authored by 郑秀明's avatar 郑秀明

coding

parent f79d7486
......@@ -38,13 +38,32 @@
export default {
data() {
return {
list: []
}
},
components: {
uniCollapse,
uniCollapseItem,
TopBar
},
onLoad() {
this.loadData();
},
methods:{
async loadData() {
const value = uni.getStorageSync('installment');
uni.request({
url: `/uni/api/signcontract/GetContractField?equipment_id=${128}`,
method: 'GET',
dataType: 'json',
success: (res) => {
const {data} = res;
if(data.code == 0){
this.hot_list = data.data || [];
}
}
})
}
}
}
</script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment