You've already forked qlg.frontend
顺带件初步
This commit is contained in:
45
js/shundaijian.js
Normal file
45
js/shundaijian.js
Normal file
@ -0,0 +1,45 @@
|
||||
mui.plusReady(function(){
|
||||
|
||||
})
|
||||
|
||||
const app = new Vue({
|
||||
el: '#app',
|
||||
data() {
|
||||
return {
|
||||
orderList: [
|
||||
],
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
loadData() {
|
||||
// $.ajax({
|
||||
// url: qlgUrl("app/note/index"),
|
||||
// method: "GET",
|
||||
// dataType: 'json',
|
||||
// success: (res) => {
|
||||
// if(res.status == 1){
|
||||
// this.noteData = res.data;
|
||||
// }else{
|
||||
// mui.alert(res.msg);
|
||||
// }
|
||||
// },
|
||||
// error: function(err){
|
||||
// mui.alert("请求失败");
|
||||
// self.back();
|
||||
// }
|
||||
// });
|
||||
this.orderList = [
|
||||
{
|
||||
from_address: '测试dizhi 测试地址测试地址测试地址测试地址测试地址测试地址',
|
||||
to_address: '测试地址测试地址测试地址测试地址测试地址测试地址',
|
||||
deliver_fee: '8.00',
|
||||
fee: '18.00',
|
||||
before: '2020/20/20 11:20'
|
||||
}
|
||||
]
|
||||
},
|
||||
},
|
||||
created() {
|
||||
this.loadData();
|
||||
},
|
||||
})
|
Reference in New Issue
Block a user