Commit 66f9bc452d26dabb49911d9110fd0c4b4265cd26
1 parent
0fac75fd
文案修改
Showing
1 changed file
with
23 additions
and
23 deletions
src/pages/notYetOpened/notYetOpened.vue
| @@ -3,10 +3,10 @@ | @@ -3,10 +3,10 @@ | ||
| 3 | <div class="box"> | 3 | <div class="box"> |
| 4 | <img src="static/img/Computer.png" alt=""/> | 4 | <img src="static/img/Computer.png" alt=""/> |
| 5 | <div class="title"> | 5 | <div class="title"> |
| 6 | - 商城/餐厅入驻手机端尚未开通 | 6 | + 商城/餐厅入驻仅限PC端申请 |
| 7 | </div> | 7 | </div> |
| 8 | <div class="desc"> | 8 | <div class="desc"> |
| 9 | - 请前往网家家电商平台进行入驻申请,网址: <span :title="teamLink" class="invitLink pull-left ellipsis" v-text="teamLink" ></span> | 9 | + 请使用PC端前往网家家电商平台进行入驻申请, 网址: <span :title="teamLink" class="invitLink pull-left ellipsis" v-text="teamLink" ></span> |
| 10 | </div> | 10 | </div> |
| 11 | <div class="copy" type="primary" v-clipboard:error="onError" | 11 | <div class="copy" type="primary" v-clipboard:error="onError" |
| 12 | v-clipboard:copy="teamLink" v-clipboard:success="onCopy"> | 12 | v-clipboard:copy="teamLink" v-clipboard:success="onCopy"> |
| @@ -17,32 +17,32 @@ | @@ -17,32 +17,32 @@ | ||
| 17 | </template> | 17 | </template> |
| 18 | 18 | ||
| 19 | <script> | 19 | <script> |
| 20 | - // 引入组件 | ||
| 21 | - import { Toast } from "mint-ui"; | ||
| 22 | - export default { | ||
| 23 | - name: 'notYetOpened', | ||
| 24 | - data () { | ||
| 25 | - return { | ||
| 26 | - teamLink:'http://seller.mall.cnlive.com' | ||
| 27 | - } | 20 | +// 引入组件 |
| 21 | +import { Toast } from "mint-ui"; | ||
| 22 | +export default { | ||
| 23 | + name: 'notYetOpened', | ||
| 24 | + data () { | ||
| 25 | + return { | ||
| 26 | + teamLink: 'http://seller.mall.cnlive.com' | ||
| 27 | + } | ||
| 28 | + }, | ||
| 29 | + created () { | ||
| 30 | + document.title = "尚未开通" | ||
| 31 | + }, | ||
| 32 | + methods: { | ||
| 33 | + // 复制成功 | ||
| 34 | + onCopy (e) { | ||
| 35 | + Toast('复制成功'); | ||
| 28 | }, | 36 | }, |
| 29 | - created(){ | ||
| 30 | - document.title = "尚未开通" | 37 | + // 复制失败 |
| 38 | + onError (e) { | ||
| 39 | + Toast('复制失败'); | ||
| 31 | }, | 40 | }, |
| 32 | - methods: { | ||
| 33 | - // 复制成功 | ||
| 34 | - onCopy(e){ | ||
| 35 | - Toast('复制成功'); | ||
| 36 | - }, | ||
| 37 | - // 复制失败 | ||
| 38 | - onError(e){ | ||
| 39 | - Toast('复制失败'); | ||
| 40 | - }, | ||
| 41 | - } | ||
| 42 | } | 41 | } |
| 42 | +} | ||
| 43 | </script> | 43 | </script> |
| 44 | 44 | ||
| 45 | <!-- Add "scoped" attribute to limit CSS to this component only --> | 45 | <!-- Add "scoped" attribute to limit CSS to this component only --> |
| 46 | <style rel="stylesheet/less" lang="less" scoped> | 46 | <style rel="stylesheet/less" lang="less" scoped> |
| 47 | - @import "NotYetOpened"; | 47 | +@import 'NotYetOpened'; |
| 48 | </style> | 48 | </style> |