articleThree.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template>
  2. <div class="article_three">
  3. <div class="get_business">
  4. <a @click="showRemindBox = true">查看 &nbsp; 》</a>
  5. </div>
  6. <!--弹出框-->
  7. <el-dialog
  8. :visible.sync="showRemindBox"
  9. width="1190px">
  10. <span>这是一段信息</span>
  11. <span slot="footer" class="dialog-footer">
  12. <el-button type="primary" @click="showRemindBox = false">去维护个人产品 》</el-button>
  13. </span>
  14. </el-dialog>
  15. </div>
  16. </template>
  17. <script>
  18. export default {
  19. data () {
  20. return {
  21. showRemindBox: false
  22. }
  23. },
  24. mounted () {
  25. },
  26. methods: {
  27. }
  28. }
  29. </script>
  30. <style lang="scss">
  31. .article_three{
  32. position:relative;
  33. border-radius:5px;
  34. border:1px solid #d2d2d2;
  35. margin-bottom:20px;
  36. .get_business{
  37. padding-top:275px;
  38. height:340px;
  39. background: url(/images/applyPurchase/business_banner.png)no-repeat center;
  40. > a{
  41. width: 130px;
  42. height: 30px;
  43. line-height: 30px;
  44. background: #2496f1;
  45. color: #fdfdfd;
  46. font-size: 14px;
  47. display: block;
  48. border-radius: 3px;
  49. cursor: pointer;
  50. text-align: center;
  51. margin:0 auto;
  52. }
  53. }
  54. }
  55. </style>