You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
829 B
32 lines
829 B
10 months ago
|
define([
|
||
|
'require',
|
||
|
'helper',
|
||
|
'text!./index.html',
|
||
|
'css!./index.css',
|
||
|
], function(require, $h, html) {
|
||
|
return {
|
||
|
props: ['show', 'status', 'fail'],
|
||
|
data: function () {
|
||
|
return {
|
||
|
images: [
|
||
|
require.toUrl('./images/1.png'),
|
||
|
require.toUrl('./images/2.png'),
|
||
|
require.toUrl('./images/3.png')
|
||
|
],
|
||
|
page: window.location.href
|
||
|
};
|
||
|
},
|
||
|
methods: {
|
||
|
goApply: function () {
|
||
|
window.location.assign($h.U({
|
||
|
c: 'merchant',
|
||
|
a: 'index'
|
||
|
}));
|
||
|
},
|
||
|
goBack: function () {
|
||
|
window.history.back();
|
||
|
}
|
||
|
},
|
||
|
template: html
|
||
|
};
|
||
|
});
|