mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-18 17:05:54 +08:00
- 将iView组件统一替换为TDesign组件 - 优化表单、表格、弹窗等交互样式 - 修复路由重复添加问题 - 更新依赖版本 - 调整布局间距与响应式 - 修复表单重置方法兼容性 - 统一消息提示组件
204 lines
5.3 KiB
Vue
204 lines
5.3 KiB
Vue
<template>
|
|
<div>
|
|
<div style="display:flex;">
|
|
<t-input
|
|
v-model="currentValue"
|
|
@change="handleChange"
|
|
v-show="showInput"
|
|
:placeholder="placeholder"
|
|
:disabled="disabled"
|
|
:readonly="readonly"
|
|
:maxlength="maxlength"
|
|
>
|
|
<template #suffix>
|
|
<a style="margin-left:8px" @click="viewImage=true">预览</a>
|
|
</template>
|
|
</t-input>
|
|
<t-button @click="handleCLickImg('storeLogo')">选择图片</t-button>
|
|
<!--<Upload-->
|
|
<!--:action="uploadFileUrl"-->
|
|
<!--:headers="accessToken"-->
|
|
<!--:on-success="handleSuccess"-->
|
|
<!--:on-error="handleError"-->
|
|
<!--:format="['jpg','jpeg','png','gif','bmp']"-->
|
|
<!--accept=".jpg, .jpeg, .png, .gif, .bmp"-->
|
|
<!--:max-size="1024"-->
|
|
<!--:on-format-error="handleFormatError"-->
|
|
<!--:on-exceeded-size="handleMaxSize"-->
|
|
<!--:before-upload="beforeUpload"-->
|
|
<!--:show-upload-list="false"-->
|
|
<!--ref="up"-->
|
|
<!--class="upload"-->
|
|
<!-->-->
|
|
<!--<Button :loading="loading" :size="size" :disabled="disabled">上传图片</Button>-->
|
|
<!--</Upload>-->
|
|
</div>
|
|
|
|
<t-dialog header="图片预览" :visible.sync="viewImage" :width="500" @close="viewImage=false">
|
|
<img :src="currentValue" alt="该资源不存在" style="max-width: 300px;margin: 0 auto;display: block;" />
|
|
<template #footer>
|
|
<t-button variant="text" @click="viewImage=false">关闭</t-button>
|
|
</template>
|
|
</t-dialog>
|
|
|
|
<t-dialog :width="1200" header="选择图片" :visible.sync="picModalFlag" @close="picModalFlag=false">
|
|
<ossManage @callback="callbackSelected" ref="ossManage" :isComponent="true" :initialize="picModalFlag" />
|
|
<template #footer>
|
|
<t-button variant="text" @click="picModalFlag=false">关闭</t-button>
|
|
</template>
|
|
</t-dialog>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { uploadFile } from "@/api/index";
|
|
import ossManage from "@/views/sys/oss-manage/ossManage";
|
|
import { MessagePlugin } from "tdesign-vue";
|
|
export default {
|
|
name: "uploadPicInput",
|
|
components: {
|
|
ossManage,
|
|
},
|
|
props: {
|
|
value: String,
|
|
size: {
|
|
default: 'default',
|
|
type: String
|
|
},
|
|
placeholder: {
|
|
type: String,
|
|
default: "图片链接"
|
|
},
|
|
showInput: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
readonly: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
maxlength: Number,
|
|
icon: {
|
|
type: String,
|
|
default: "ios-cloud-upload-outline"
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
accessToken: {}, // 验证token
|
|
currentValue: this.value, // 当前值
|
|
loading: false, // 加载状态
|
|
viewImage: false, // 预览图片modal
|
|
uploadFileUrl: uploadFile, // 上传地址
|
|
picModalFlag: false, // 图片选择器
|
|
selectedFormBtnName: "", // 点击图片绑定form
|
|
picIndex: "", // 存储身份证图片下标,方便赋值
|
|
};
|
|
},
|
|
methods: {
|
|
// 选择图片modal
|
|
handleCLickImg(val, index) {
|
|
this.$refs.ossManage.selectImage = true;
|
|
this.picModalFlag = true;
|
|
this.selectedFormBtnName = val;
|
|
this.picIndex = index;
|
|
},
|
|
// 图片回显
|
|
callbackSelected(val) {
|
|
this.picModalFlag = false;
|
|
this.currentValue = val.url;
|
|
this.picIndex = "";
|
|
this.$emit("input", this.currentValue);
|
|
this.$emit("on-change", this.currentValue);
|
|
},
|
|
// 初始化
|
|
init() {
|
|
this.accessToken = {
|
|
accessToken: this.getStore("accessToken")
|
|
};
|
|
},
|
|
// 格式校验
|
|
handleFormatError(file) {
|
|
this.loading = false;
|
|
this.$Notice.warning({
|
|
title: "不支持的文件格式",
|
|
desc:
|
|
"所选文件‘ " +
|
|
file.name +
|
|
" ’格式不正确, 请选择 .jpg .jpeg .png .gif .bmp格式文件"
|
|
});
|
|
},
|
|
// 大小校验
|
|
handleMaxSize(file) {
|
|
this.loading = false;
|
|
this.$Notice.warning({
|
|
title: "文件大小过大",
|
|
desc: "所选文件大小过大, 不得超过1M."
|
|
});
|
|
},
|
|
// 上传前
|
|
beforeUpload() {
|
|
this.loading = true;
|
|
return true;
|
|
},
|
|
// 上传成功
|
|
handleSuccess(res, file) {
|
|
this.loading = false;
|
|
if (res.success) {
|
|
this.currentValue = res.result;
|
|
this.$emit("input", this.currentValue);
|
|
this.$emit("on-change", this.currentValue);
|
|
} else {
|
|
// this.$Message.error(res.message);
|
|
}
|
|
},
|
|
// 上传失败
|
|
handleError(error, file, fileList) {
|
|
this.loading = false;
|
|
MessagePlugin.error(error.toString());
|
|
},
|
|
// 上传成功回显
|
|
handleChange(v) {
|
|
this.$emit("input", this.currentValue);
|
|
this.$emit("on-change", this.currentValue);
|
|
this.$attrs.rollback && this.$attrs.rollback()
|
|
},
|
|
// 初始值
|
|
setCurrentValue(value) {
|
|
if (value === this.currentValue) {
|
|
return;
|
|
}
|
|
this.currentValue = value;
|
|
this.$emit("input", this.currentValue);
|
|
this.$emit("on-change", this.currentValue);
|
|
}
|
|
},
|
|
watch: {
|
|
value(val) {
|
|
this.setCurrentValue(val);
|
|
}
|
|
},
|
|
created() {
|
|
this.init();
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.see-icon {
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.upload {
|
|
display: inline-block;
|
|
margin-left: 10px;
|
|
}
|
|
</style>
|
|
|