lxf
2025-04-19 87ac0ed86b97cc547d49fcc871410dc120cbd9ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<template>
  <div class="account-settings-info-view">
 
    <a-form layout="vertical" :form="addUserform" ref="addUserform">
      <a-row :gutter="16" type="flex" justify="center">
        <a-col :order="isMobile ? 2 : 1" :md="24" :lg="16">
 
          <a-form-item label="网站名称">
            <a-input
              placeholder="请输入您的网站名称"
              v-decorator="['siteName', { rules: [{ required: true, message: '请输入您的网站名称', }] }]" />
          </a-form-item>
 
          <a-form-item label="在线客服链接">
            <a-input
              placeholder="请输入您的在线客服链接"
              v-decorator="['onlineService', { rules: [{ required: true, message: '请输入您的在线客服链接', }] }]" />
          </a-form-item>
 
          <a-form-item label="网站logo">
            <a-upload
              name="avatar"
              list-type="picture-card"
              accept=".jpg,.jpeg,.png"
              class="avatar-uploader"
              v-decorator="['siteLogo', { valuePropName: 'file', rules: [{ required: true, message: '请上传网站logo', }] }]"
              :showUploadList="false"
              :customRequest="customRequest">
              <img v-if="siteLogo" :src="siteLogo" alt="avatar" />
              <div v-else>
                <a-icon :type="imgloading ? 'loading' : 'plus'" />
              </div>
            </a-upload>
          </a-form-item>
          <a-form-item>
            <a-button type="primary" @click="saveinfo">保存基本信息</a-button>
          </a-form-item>
 
        </a-col>
        <!-- <a-col :order="1" :md="24" :lg="8" :style="{ minHeight: '180px' }">
          <div class="ant-upload-preview" @click="$refs.modal.edit(1)">
            <a-icon type="cloud-upload-o" class="upload-icon" />
            <div class="mask">
              <a-icon type="plus" />
            </div>
            <img :src="option.img" />
          </div>
        </a-col> -->
      </a-row>
    </a-form>
 
    <avatar-modal ref="modal" @ok="setavatar" />
 
  </div>
</template>
 
<script>
import AvatarModal from './AvatarModal'
import { baseMixin } from '@/store/app-mixin'
import { sitegetInfo, adminupload, infoupdate } from '@/api/allsetting'
import pick from 'lodash.pick'
export default {
  mixins: [baseMixin],
  components: {
    AvatarModal
  },
  data () {
    return {
      // cropper
      preview: {},
      option: {
        img: '/avatar2.jpg',
        info: true,
        size: 1,
        outputType: 'jpeg',
        canScale: false,
        autoCrop: true,
        // 只有自动截图开启 宽度高度才生效
        autoCropWidth: 180,
        autoCropHeight: 180,
        fixedBox: true,
        // 开启宽度和高度比例
        fixed: true,
        fixedNumber: [1, 1]
      },
      settingdetail: {},
      addUserform: this.$form.createForm(this),
      fields: ['siteName', 'onlineService', 'siteLogo'],
      siteLogo: '',
      imgloading: false
    }
  },
  mounted () {
    this.getsetting()
  },
  methods: {
    setavatar (url) {
      this.option.img = url
    },
    saveinfo () {
      const form = this.$refs.addUserform.form
      form.validateFields((errors, values) => {
        if (!errors) {
          values.id = this.settingdetail.id
          infoupdate(values).then(res => {
            if (res.status == 0) {
              this.$message.success({ content: '修改成功', duration: 2 })
              form.resetFields()
              this.getsetting()
            } else {
              this.$message.error(res.msg)
            }
          })
        }
      })
    },
    customRequest (data) {
      this.imgloading = true
      var formData = new FormData()
      formData.append('upload_file', data.file)
      adminupload(formData).then(res => {
        if (res.status == 0) {
          this.siteLogo = res.data.url
          this.addUserform.setFieldsValue(({
            siteLogo: res.data.url
          }))
        } else {
          this.$message.error({ content: '上传失败请检查图片类型!' })
        }
        this.imgloading = false
      })
    },
    getsetting () {
      sitegetInfo().then(res => {
        if (res.status == 0) {
          this.settingdetail = res.data
          this.siteLogo = this.settingdetail.siteLogo
          this.fields.forEach(v => this.addUserform.getFieldDecorator(v))
          this.addUserform.setFieldsValue(pick(this.settingdetail, this.fields))
        }
      })
    }
  }
}
</script>
 
<style lang="less" scoped>
.avatar-upload-wrapper {
  height: 200px;
  width: 100%;
}
 
.ant-upload-preview {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 180px;
  border-radius: 50%;
  box-shadow: 0 0 4px #ccc;
 
  .upload-icon {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 1.4rem;
    padding: 0.5rem;
    background: rgba(222, 221, 221, 0.7);
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
 
  .mask {
    opacity: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: opacity 0.4s;
 
    &:hover {
      opacity: 1;
    }
 
    i {
      font-size: 2rem;
      position: absolute;
      top: 50%;
      left: 50%;
      margin-left: -1rem;
      margin-top: -1rem;
      color: #d6d6d6;
    }
  }
 
  img,
  .mask {
    width: 100%;
    max-width: 180px;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
  }
}
</style>