guanyuwe.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /*Workench*/
  2. /*上传报告*/
  3. <template>
  4. <el-dialog
  5. ref="userForm"
  6. class="user-form"
  7. label-width="120px"
  8. hide-required-asterisk
  9. title="关于我们"
  10. :visible.sync="gyisShow"
  11. width="1200px"
  12. >
  13. <div class="gy_top">
  14. <div class="bakga">
  15. <el-image :src="bakga"></el-image>
  16. </div>
  17. <div class="container guanyu">
  18. <div class="content" ref="obtain">
  19. <div class="guanyutext main_con" id="anchor">
  20. <h1>西安前沿动力</h1>
  21. <h5 class="h5">公司理念</h5>
  22. <p class="zctext">
  23. 为实现以顾客满意为目标,确保顾客的需求和期望得到满足,特制定本公司的质量方针为:
  24. “诚信经营、不断创新、优质服务、持续发展。”
  25. </p>
  26. <h5 class="h5">公司理念的内涵:</h5>
  27. <p class="zctext">
  28. &nbsp;&nbsp;诚信经营:在公司的发展历程中,诚信一直与我们相伴。前沿动力不仅对客户讲诚信,而且员工之间、上下级之间都在讲诚信。我们要求每个员工都做诚实的人,在企业是好员工,在家庭是好成员,在社会上是守法、有道德的好公民。
  29. <br />&nbsp;&nbsp;不断创新:不断创新使我们发展的根本。公司拥有经验丰富的开发队伍,产品技术与国际先进水平保持同步,技术创新是我们的追求及骄傲。
  30. <br />&nbsp;&nbsp;优质服务:让客户满意是我们的企业的宗旨,在提供高质量软件产品的同时,我们要求所有员工为每个客户提供最好的售前、售中及售后服务,不断提高客户满意度。
  31. <br />&nbsp;&nbsp;持续发展:持续改善是增强满足要求的能力的循环活动。为了改善企业的整体业绩,应不断改善软件产品和服务的质量,提高质量管理体系及过程的有效性和效率,以满足顾客和相关方日益增长和不断变化的需求和期望,实现公司的可持续发展
  32. </p>
  33. </div>
  34. </div>
  35. </div>
  36. </div>
  37. <span slot="footer" class="dialog-footer">
  38. <el-button size="small" type="primary" @click="cancel">取消</el-button>
  39. </span>
  40. </el-dialog>
  41. </template>
  42. <script>
  43. import { getImage } from '@/utils/request'
  44. import bakga from "@/assets/match//beijin1.png"
  45. export default {
  46. name: 'Workench',
  47. data(){
  48. return{
  49. gyisShow:false,
  50. bakga,
  51. }
  52. },
  53. props: {
  54. },
  55. methods: {
  56. // 点击关闭
  57. close() {
  58. this.$emit('putWorkbench', false)
  59. },
  60. },
  61. }
  62. </script>
  63. <style lang="scss" scoped>
  64. @import '@/styles/variables.scss';
  65. @import '@/styles/mixin.scss';
  66. /deep/ .el-dialog__body{
  67. background: #2f2f2f;
  68. }
  69. .gy_top {
  70. width: 100%;
  71. background: #2f2f2f;
  72. position: relative;
  73. /* z-index: -2; */
  74. }
  75. .bakga {
  76. position: absolute;
  77. z-index: 0;
  78. top: -24px;
  79. right: -20px;
  80. }
  81. .guanyu h1 {
  82. height: 100px;
  83. font-size: 50px;
  84. font-weight: bold;
  85. color: #ffffff;
  86. line-height: 100px;
  87. }
  88. .guanyutext {
  89. padding: 50px 0;
  90. }
  91. .guanyu .zctext {
  92. font-size: 16px;
  93. font-weight: 500;
  94. color: #ffffff;
  95. line-height: 2;
  96. }
  97. .main_con .icon7 {
  98. float: left;
  99. margin-top: 42px;
  100. }
  101. .guanyupadding {
  102. padding: 10px 0;
  103. }
  104. .zuzhi {
  105. margin-bottom: 20px;
  106. }
  107. .typefacexz p {
  108. color: #f45858;
  109. }
  110. .positionfixed {
  111. position: fixed;
  112. width: 58%;
  113. z-index: 1000;
  114. top: 0;
  115. left: 21%;
  116. }
  117. .guanyu {
  118. position: relative;
  119. }
  120. .main_con .gytitle {
  121. height: 100px;
  122. padding-left: 29px;
  123. font-size: 20px;
  124. font-weight: bold;
  125. color: #333333;
  126. margin-top: -4px;
  127. line-height: 100px;
  128. }
  129. .h5 {
  130. color: #fff;
  131. font-size: 20px;
  132. font-weight: bold;
  133. margin-top: 40px;
  134. }
  135. @media (max-width: 768px) {
  136. .guanyu h1 {
  137. font-size: 40px;
  138. }
  139. }
  140. </style>