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

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

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

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