Blame view

public/js/home/refund-status.page.js 416 Bytes
郭成尧 authored
1
const Vue = require('vue');
王水玲 authored
2
const Status = require('home/refund/refund-status.vue').default;
3
const yohoApp = require('yoho-app');
郭成尧 authored
4 5 6

require('plugin/vue-filter')(Vue);
7 8 9 10 11 12 13
// 取消 Mars APP 头部的提交按钮
if (yohoApp && yohoApp.isMarsApp) {
    yohoApp.ready(function() {
        yohoApp.invokeMethod('set.removeTopRightButton');
    });
}
郭成尧 authored
14 15 16 17 18 19
new Vue({
    el: '#status',
    components: {
        Status
    }
});