diff --git a/api/wallet.js b/api/wallet.js index f980836..4996c59 100644 --- a/api/wallet.js +++ b/api/wallet.js @@ -191,6 +191,12 @@ class Wallet { static financial_redemption(data){ return Serve.get('/financial/financial_redemption',data) } + static financial_wlog(data){ + return Serve.post('/financial/financial_wlog',data,{loading:true}) + } + static financial_vip(data){ + return Serve.get('/financial/financial_vip ',data) + } } export default Wallet; \ No newline at end of file diff --git a/assets/img/vipIco.png b/assets/img/vipIco.png new file mode 100644 index 0000000..fb01dc4 Binary files /dev/null and b/assets/img/vipIco.png differ diff --git a/element/index.js b/element/index.js index 68f6e7b..e52e639 100644 --- a/element/index.js +++ b/element/index.js @@ -1,6 +1,6 @@ // 导入自己需要的组件 -import { Slider,Collapse,CollapseItem } from 'element-ui' -const components = [Slider,Collapse,CollapseItem] +import { Slider,Collapse,CollapseItem,Progress } from 'element-ui' +const components = [Slider,Collapse,CollapseItem,Progress] const element = { install: function (Vue) { // Vue.use(Slider) diff --git a/i18n/lang/en.json b/i18n/lang/en.json index 98a9d80..32135bc 100644 --- a/i18n/lang/en.json +++ b/i18n/lang/en.json @@ -3,6 +3,10 @@ "D": "Day", "M": "Month", "Y": "Year", + "grade": "It is already the highest level", + "distance": "You are far", + "week": "week", + "today": "today", "add": "Add", "address": "Address", "all": "All", diff --git a/i18n/lang/zh-TW.json b/i18n/lang/zh-TW.json index 2bf6a6e..ac5e771 100644 --- a/i18n/lang/zh-TW.json +++ b/i18n/lang/zh-TW.json @@ -3,6 +3,10 @@ "D": "日", "M": "月", "Y": "年", + "grade": "已是最高等級", + "distance": "你距離", + "week": "周", + "today": "今天", "add": "添加", "address": "地址", "all": "所有", diff --git a/pages/assets/userfeedback.vue b/pages/assets/userfeedback.vue index a22af49..269fc0f 100644 --- a/pages/assets/userfeedback.vue +++ b/pages/assets/userfeedback.vue @@ -1,9 +1,9 @@