1234567891011121314151617181920212223242526272829303132 |
- Vue.component('appointment-info', {
- template: '<div><div class="c-f16 c-border-b pb5">预约信息</div>\
- <table class="table table-no-bordered">\
- <tbody>\
- <tr>\
- <td class="w150">预 约 人</td>\
- <td>{{appointinfo.callCode ? appointinfo.userName : appointinfo.dname}}</td>\
- </tr>\
- <tr>\
- <td class="w150">操作时间</td>\
- <td>{{appointinfo.cancelerTime ? appointinfo.cancelerTime : appointinfo.czrq}}</td>\
- </tr>\
- <tr>\
- <td class="w150">预约状态</td>\
- <td>{{appointinfo.status == 0 ? "已取消" : "预约成功"}}</td>\
- </tr>\
- </tbody>\
- </table>\
- </div>',
- props: ["appointinfo"],
- data: function() {
- return {
-
- }
- },
- mounted: function() {
-
- },
- methods: {
-
- }
- })
|