xjc 4 anos atrás
pai
commit
f1bf6c4c26
2 arquivos alterados com 14 adições e 1 exclusões
  1. 13 0
      src/views/message/OutSurvey.vue
  2. 1 1
      vue.config.js

+ 13 - 0
src/views/message/OutSurvey.vue

@@ -26,6 +26,7 @@ a {
   border-radius: 20px;
   .el-form.over_y {
     max-height: calc(100vh - 340px);
+    overflow: auto;
   }
   /deep/.el-form-item__label {
     float: none;
@@ -83,6 +84,17 @@ a {
     width: 100%;
   }
 }
+.survey_dialog{
+  .el-dialog{
+    // width:25%;
+    width: 400px;
+    height: 750px;
+    margin-top: 20px !important;
+    background: url("../../assets/survey_bg.png") no-repeat;
+    background-size:100% 100%;
+    border-radius: 60px;
+  }
+}
 </style>
 <template>
   <section>
@@ -246,6 +258,7 @@ a {
       :title="dialogTitle"
       :close-on-click-modal="false"
       :visible.sync="dialogVisible1"
+      class="survey_dialog" width="400px" 
     >
       <div class="item-main">
         <img src="../../assets/survey_logo.png" alt="" class="survey_logo" />

+ 1 - 1
vue.config.js

@@ -2,7 +2,7 @@ module.exports={
     devServer:{
         proxy:{
             '/api':{
-                target:'https://test.scxjc.club',
+                target:'http://39.107.246.59:81',
                 changeOrigin: true,
             }
         }