1234567891011121314151617181920212223242526272829303132333435 |
- new Vue({
- el: "#app",
- data: {
- // code: "record",
- // records: [{
- // time: "2017年11月11日 13:13:13",
- // photo: "../image/touxiang.jpg",
- // doctor: "张三",
- // zhiwu: "主任医生",
- // keshi: "骨科",
- // yiyuan: "上饶医院",
- // othertime: "2018-04-04上午",
- // othertime1: "第2号,07:50",
- // bingren: "李花花",
- // id: "1",
- // }, {
- // time: "2017年11月11日 13:13:13",
- // photo: "../image/touxiang.jpg",
- // doctor: "张三",
- // zhiwu: "主任医生",
- // keshi: "骨科",
- // yiyuan: "上饶医院",
- // othertime: "2018-04-04上午",
- // othertime1: "第2号,07:50",
- // bingren: "李花花",
- // id: "1",
- // }, ]
- },
- mounted: function() {
-
- },
- methods: {
- }
- });
|