123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <template>
- <view v-if="changjingType =='shenfenzheng'" class="admin-upload-btn-box" @click="showActionSheet">
- <text>+</text>
- </view>
- <view v-else class="upload-btn" @click="showActionSheet">
- <text>+</text>
- </view>
- <view v-if="bottomText" class="bottom-text">
- {{bottomText}}
- </view>
- </template>
- <script>
- import {
- getAliyunPolicy
- } from "@/api/jiazheng.js"
- export default {
- props: {
- bottomText: { // 试题序号
- type: String
- },
- changjingType:{
- type: String,
- default: ''
- }
- },
- methods: {
- showActionSheet() {
- uni.showActionSheet({
- itemList: ['拍照', '从相册选择'],
- success: (res) => {
- if (res.tapIndex === 0) {
- this.chooseImage('camera');
- } else if (res.tapIndex === 1) {
- this.chooseImage('album');
- }
- }
- });
- },
- chooseImage(sourceType) {
- uni.chooseImage({
- count: 1, // 只能选择一张图片
- sourceType: [sourceType], // 'camera' 或 'album'
- success: (res) => {
- const filePath = res.tempFilePaths[0];
- this.uploadFileToAliyun(filePath);
- }
- });
- },
- uploadFileToAliyun(filePath) {
- console.log('filePath', filePath);
- const loading = uni.showLoading({
- title: '上传中...',
- mask: true
- });
- try {
- const suffix = filePath.split('.').pop();
- let req = {
- prefix: 'resource/',
- suffix: suffix
- }
- getAliyunPolicy(req).then(res => {
- if (res.code == 0) {
- const policyData = res.data;
- console.log('policyData', policyData);
- const formData = {
- key: policyData.key,
- policy: policyData.policy,
- OSSAccessKeyId: policyData.accessid,
- signature: policyData.signature,
- success_action_status: '200',
- file: {
- name: policyData.key,
- uri: filePath
- }
- };
- uni.uploadFile({
- url: policyData.uploadUrl,
- filePath: filePath,
- name: 'file',
- formData: formData,
- header: {
- 'Content-Type': 'multipart/form-data'
- },
- success(uploadRes) {
- console.log('uploadRes', uploadRes);
- if (uploadRes.statusCode === 200) {
- const imageUrl = `${policyData.downloadUrl}/${policyData.key}`;
- uni.showToast({
- title: '上传成功',
- icon: 'success'
- });
- console.log('imageUrl', imageUrl);
- //this.$emit('getFileUrl', imageUrl);
- } else {
- uni.showToast({
- title: '上传失败',
- });
- return false
- }
- },
- fail(err) {
- console.log('err', err);
- }
- });
- } else {
- uni.showToast({
- title: '获取凭证失败',
- });
- return false
- }
- })
- } catch (error) {
- uni.showToast({
- title: '上传失败',
- icon: 'none'
- });
- console.error('上传失败:', error);
- } finally {
- uni.hideLoading();
- }
- },
- }
- };
- </script>
|