定义数组
接着就是在接口里面把数据拿出来,push进数组里面,你想要怎么样的数据,你就定义什么类型的数据
这里我想要[{text:""},{desc:""}]的数据类型
// 获取物流信息
checkLogistics(){
var _this = this;
let information = [];
let information1=[];
util.request({
url: app.globalData.baseUrl + "/EPAY/GeneralProServlet",
code: "EPAY_CLL_1009",
login: ["10.192.111.79", "hhs", "hhs"],
sql: [_this.data.o_id],
order: [1, 20],
type: 'GET'
}, function (flg, result) {
if (flg) {
if (result.data.length != 0) {
result.data.forEach((item, index) => {
let temp={
text: item.INFO,
desc: item.OPERATE_TIME
}
information.push(temp)
})
}else{
let temp = {
text: "请耐心等待商品!",
desc: ""
}
information.push(temp)
}
console.log(result)
_this.setData({
informationData: information,
})
console.log(_this.data.informationData)
}
}, false, true);
}
这里就是定义类型,然后就是把你定义的数据push进数组里面就好了
就可以得到vant-weapp框架里面的Steps 步骤条效果了
Steps :