Browse Source

修改网站管理的图片比例

lcmxs 1 year ago
parent
commit
22bb75bc37
1 changed files with 6 additions and 4 deletions
  1. 6 4
      src/views/WEBSITE/index.vue

+ 6 - 4
src/views/WEBSITE/index.vue

@@ -80,10 +80,10 @@
           </el-col>
         </el-row>
         <el-form-item label="顶部背景图" prop="topPicture">
-          <cropper v-model="form.topPicture" :fixed_number="[4, 2]"></cropper>
+          <cropper v-model="form.topPicture" :fixed_number="[5, 1]"></cropper>
         </el-form-item>
         <el-form-item label="底部背景图" prop="bottomPicture">
-          <cropper v-model="form.bottomPicture" :fixed_number="[34, 2]"></cropper>
+          <cropper v-model="form.bottomPicture" :fixed_number="[160, 9]"></cropper>
         </el-form-item>
 <!--        <el-form-item label="顶部背景图" prop="websiteUrl">-->
 <!--          <el-upload action="#" list-type="picture-card" :limit="1" :auto-upload="true" :http-request="httprequest" :before-upload="beforeupload" :file-list="fileList">-->
@@ -255,6 +255,8 @@ export default {
       this.form = {
         websiteUrl: null,
         websiteName: null,
+        topPicture: null,
+        bottomPicture: null,
         id: null
       };
       this.fileList = [];
@@ -290,8 +292,8 @@ export default {
         this.form = response.data;
         this.open = true;
         this.title = '修改网站管理';
-        this.fileList.push({ name: 'xxx', url: this.baseUrl+response.data.topPicture});
-        this.fileList2.push({ name: 'xxx', url: this.baseUrl+response.data.bottomPicture});
+        // this.fileList.push({ name: 'xxx', url: this.baseUrl + response.data.topPicture});
+        // this.fileList2.push({ name: 'xxx', url: this.baseUrl + response.data.bottomPicture});
       });
     },
     /** 提交按钮 */