refund-status.page.js 408 Bytes
const Vue = require('vue');
const Status = require('home/refund/refund-status.vue');
const yohoApp = require('yoho-app');

require('plugin/vue-filter')(Vue);

// 取消 Mars APP 头部的提交按钮
if (yohoApp && yohoApp.isMarsApp) {
    yohoApp.ready(function() {
        yohoApp.invokeMethod('set.removeTopRightButton');
    });
}

new Vue({
    el: '#status',
    components: {
        Status
    }
});