guanyuwe.vue 3.8 KB

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