马宇豪
2023-05-09 a7e74dc7ed58459d23384fc9061aad9a09d7cbcd
图片上传
已修改1个文件
149 ■■■■■ 文件已修改
src/views/system/user/component/userDialog.vue 149 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/user/component/userDialog.vue
@@ -63,6 +63,16 @@
                            <el-input v-model.trim="userForm.idSerial" placeholder="证件号码" clearable></el-input>
                        </el-form-item>
                    </el-col>
                  <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20" v-if="userForm.identityStatus == 0">
                    <el-form-item label="资质证书" prop="">
                      <el-upload accept="image/*" :action="uploadUrl" :headers="header" method="post" :data="{module: 'accountPath'}" :on-success="handleAvatarSuccess" :on-exceed="showTip" :on-preview="handlePictureCardPreview" :limit='imgLimit' v-model:file-list="fileList" list-type="picture-card" :before-upload="picSize" :on-remove="handleRemove" :before-remove="beforeRemove">
                        <el-icon><Plus /></el-icon>
                        <template #tip>
                          <div class="el-upload__tip">上传jpg/png图片尺寸小于500KB,最多可上传1张</div>
                        </template>
                      </el-upload>
                    </el-form-item>
                  </el-col>
                </el-row>
            </el-form>
            <template #footer>
@@ -72,6 +82,9 @@
                </span>
            </template>
        </el-dialog>
        <el-dialog v-model="dialogVisible">
          <el-image style="width: 100%; height: 100%" :src="dialogImageUrl"/>
        </el-dialog>
    </div>
</template>
@@ -80,7 +93,13 @@
import { ElMessageBox, ElMessage } from 'element-plus';
import { userApi } from '/@/api/systemManage/user';
import {checkChineseName, verifyFullName, verifyIdCard, verifyPhone} from "/@/utils/toolsValidate";
import axios from 'axios';
import Cookies from "js-cookie";
import {useUserInfo} from "/@/stores/userInfo";
import {storeToRefs} from "pinia";
const userInfo = useUserInfo();
const { userInfos } = storeToRefs(userInfo);
import type { UploadProps } from 'element-plus'
// 定义接口来定义对象的类型
interface DeptData {}
interface roleData {}
@@ -98,14 +117,23 @@
        pwd: string;
        idType: number | null;
        idSerial: string;
      qualificationAttId: number | null;
    };
    userFormRules:{
    },
    userFormRules:{},
    departmentData: Array<DeptData>;
    roleData: Array<roleData>;
    expData: Array<roleData>;
    isAdd:boolean
    dialogVisible: Boolean,
    dialogImageUrl: string | null,
  fileList: Array<file>,
  imgLimit: number,
  uploadUrl: string,
  isOverSize: boolean,
  header:{}
}
interface file {
  url: string;
}
export default defineComponent({
@@ -126,6 +154,7 @@
                identityIds: [],
                idType: 1,
                idSerial: '',
              qualificationAttId: null
            },
            userFormRules:{
                name: [{ required: true, message: '请填写用户名', trigger: 'blur' }],
@@ -141,7 +170,17 @@
            departmentData: [], // 部门数据
            roleData: [], //角色数据
            expData: [],
            isAdd: true
            isAdd: true,
          dialogImageUrl: null,
          dialogVisible: false,
          fileList: [],
          imgLimit: 1,
          uploadUrl: import.meta.env.VITE_API_URL + '/attachment/upload/detail',
          isOverSize: false,
          header: {
            uid: Number(userInfos.value.uid),
            tk: Cookies.get('token')
          }
        });
        // 打开弹窗
        const openDialog = (type: string, value: any, departmentList: [], roleList: [],expList: []) => {
@@ -162,7 +201,8 @@
                    identityIds: [],
                    idType: 1,
                    idSerial: '',
                    pwd: ''
                    pwd: '',
                  qualificationAttId: null
                };
            } else {
                state.title = '修改用户';
@@ -203,6 +243,7 @@
                    }
                    if(state.userForm.identityStatus == 1){
                      state.userForm.identityIds = []
                      state.userForm.qualificationAttId = null
                    }
                    if (state.title === '新增用户') {
                        let res = await userApi().addUser(state.userForm);
@@ -221,8 +262,8 @@
                            });
                        }
                    } else {
                        const {name, realName, roleIds, depId, phone, idType, idSerial, id, identityStatus, identityIds } = state.userForm
                        const data = {name, realName, roleIds, depId, phone, idType, idSerial,id, identityStatus, identityIds}
                        const {name, realName, roleIds, depId, phone, idType, idSerial, id, identityStatus, identityIds, qualificationAttId} = state.userForm
                        const data = {name, realName, roleIds, depId, phone, idType, idSerial,id, identityStatus, identityIds, qualificationAttId}
                        let res = await userApi().modUser(data);
                        if (res.data.code === 100) {
                            ElMessage({
@@ -249,6 +290,93 @@
        };
        // 图片上传
        const showTip =()=>{
          ElMessage({
            type: 'warning',
            message: '超出文件上传数量'
          });
        }
      const picSize = async (rawFile: any) => {
        if(rawFile.size / 1024 / 1024 > 5){
          ElMessage({
            type: 'warning',
            message: '文件大小不能超过5M。'
          });
          return false
        }
      };
      const handlePictureCardPreview = (uploadFile: { url: string }) => {
        state.dialogImageUrl = uploadFile.url!;
        state.dialogVisible = true;
      };
      const upload = async (params: any) => {
        // const formData = new FormData();
        // formData.append('file', state.fileList[0].raw);
        let reader = new FileReader();
        reader.readAsArrayBuffer(params.file);
        reader.onload = async () => {
          axios.post(state.uploadUrl, reader.result, {
                headers: { uid: Number(userInfos.value.uid),tk: Cookies.get('token') }
              }).then(res => {
                if(res.data.code === 100){
                  console.log(res.data.data)
                }
              });
        };
      };
      const handleAvatarSuccess: UploadProps['onSuccess'] = (
          res,
          uploadFile
      ) => {
        if(res.code == 100){
          state.userForm.qualificationAttId = res.data.id
        }
      }
      // const beforeRemove = (file: {}, fileList: []) => {
      //   const result = new Promise((resolve, reject) => {
      //     if(!state.isOverSize){
      //       ElMessageBox.confirm('此操作将删除该图片, 是否继续?', '提示', {
      //         confirmButtonText: '确定',
      //         cancelButtonText: '取消',
      //         type: 'warning'
      //       })
      //           .then(() => {
      //             // console.log(state.workDetail.gbPath,'path')
      //             const list = JSON.parse(JSON.stringify(state.form.workDetail.gbPath))
      //             fileList.map((item,index)=>{
      //               if(item.uid === file.uid){
      //                 fileList.splice(index,1)
      //                 state.form.workDetail.gbPath.splice(index,1)
      //                 // 请求删除接口
      //                 deletePic(false,list[index])
      //               }
      //             })
      //           })
      //           .catch(() => {
      //             reject(false);
      //           });
      //     }else{
      //       const list = JSON.parse(JSON.stringify(state.form.workDetail.gbPath))
      //       fileList.map((item,index)=>{
      //         if(item.uid === file.uid){
      //           fileList.splice(index,1)
      //           state.form.workDetail.gbPath.splice(index,1)
      //           deletePic(true,list[index])
      //         }
      //       })
      //       state.isOverSize = false
      //     }
      //   });
      //   return result;
      // };
        // 页面加载时
        onMounted(() => {
@@ -256,6 +384,11 @@
        return {
            userRef,
            openDialog,
          picSize,
            showTip,
          handlePictureCardPreview,
          upload,
          handleAvatarSuccess,
            onSubmit,
            ...toRefs(state)
        };