10 changed files with 109 additions and 8 deletions
@ -0,0 +1,45 @@ |
|||||
|
import { HTTP } from '../utils/http.js' |
||||
|
|
||||
|
class ArticeModel extends HTTP { |
||||
|
constructor() { |
||||
|
super() |
||||
|
} |
||||
|
// 文章详情
|
||||
|
getDetail(aId, success) { |
||||
|
let params = { |
||||
|
url: '', |
||||
|
sucess: success, |
||||
|
method: 'POST', |
||||
|
data: { |
||||
|
id: aId |
||||
|
} |
||||
|
} |
||||
|
this.request(params) |
||||
|
} |
||||
|
// 设置收藏还是取消
|
||||
|
setCollect(aId, type, success) { |
||||
|
let params = { |
||||
|
url: '', |
||||
|
success: success, |
||||
|
method: 'POST', |
||||
|
data: { |
||||
|
|
||||
|
} |
||||
|
} |
||||
|
this.request(params) |
||||
|
} |
||||
|
// 在线报名
|
||||
|
onlineSign (aId, type, success) { |
||||
|
let params = { |
||||
|
url: '', |
||||
|
success: success, |
||||
|
method: 'POST', |
||||
|
data: { |
||||
|
|
||||
|
} |
||||
|
} |
||||
|
this.request(params) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
export { ArticeModel } |
@ -0,0 +1,9 @@ |
|||||
|
import {HTTP} from '../utils/http.js' |
||||
|
|
||||
|
class BillboardModel extends HTTP { |
||||
|
constructor () { |
||||
|
super() |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
export {BillboardModel} |
@ -0,0 +1,10 @@ |
|||||
|
import {HTTP} from '../utils/http.js' |
||||
|
|
||||
|
class TopicModel extends HTTP { |
||||
|
constructor () { |
||||
|
super() |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
export {TopicModel} |
||||
|
|
@ -0,0 +1,9 @@ |
|||||
|
import {HTTP} from '../utils/http.js' |
||||
|
|
||||
|
class UserModel extends HTTP { |
||||
|
constructor () { |
||||
|
super() |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
export { UserModel } |
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@ |
|||||
|
!function (r, t) { "object" == typeof exports && "undefined" != typeof module ? module.exports = t() : "function" == typeof define && define.amd ? define(t) : r.dayjs_plugin_relativeTime = t() }(this, function () { "use strict"; return function (r, t, e) { var n = t.prototype; e.en.relativeTime = { future: "%s", past: "%s", s: "刚刚", m: "一分钟前", mm: "%d分钟前", h: "1小时前", hh: "%d小时前", d: "1天前", dd: "%d天前", M: "1个月前", MM:"%d月前",y:"1年前",yy:"%d年前"};var o=function(r,t,n,o){for(var d,i,u=n.$locale().relativeTime,a=[{l:"s",r:44,d:"second"},{l:"m",r:89},{l:"mm",r:44,d:"minute"},{l:"h",r:89},{l:"hh",r:21,d:"hour"},{l:"d",r:35},{l:"dd",r:25,d:"day"},{l:"M",r:45},{l:"MM",r:10,d:"month"},{l:"y",r:17},{l:"yy",d:"year"}],f=a.length,s=0;s<f;s+=1){var l=a[s];l.d&&(d=o?e(r).diff(n,l.d,!0):n.diff(r,l.d,!0));var h=Math.round(Math.abs(d));if(h<=l.r||!l.r){1===h&&s>0&&(l=a[s-1]),i=u[l.l].replace("%d",h);break}}return t?i:(d>0?u.future:u.past).replace("%s",i)};n.to=function(r,t){return o(r,t,this,!0)},n.from=function(r,t){return o(r,t,this)};var d=function(r){return r.$u?e.utc():e()};n.toNow=function(r){return this.to(d(this),r)},n.fromNow=function(r){return this.from(d(this),r)}}}); |
Loading…
Reference in new issue