|
@@ -19,7 +19,7 @@
|
|
|
<span style="display: block; min-width: 250px;">{{ form.realName }}</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="性别:">
|
|
|
- <span style="display: block;min-width: 250px;">{{ form.sex }}</span>
|
|
|
+ <dict-tag :options="dict.type.tourism_memberInformation_sex" :value="form.sex"/>
|
|
|
</el-form-item>
|
|
|
</div>
|
|
|
<div style="display: flex;">
|
|
@@ -73,13 +73,11 @@
|
|
|
<script>
|
|
|
import {
|
|
|
getTableDeatilsByIdApi,
|
|
|
- updateTableApi,
|
|
|
- addTableApi
|
|
|
} from '@/api/CURD'
|
|
|
|
|
|
export default {
|
|
|
name: "addAndEdit",
|
|
|
- dicts: [],
|
|
|
+ dicts: ['tourism_memberInformation_sex'],
|
|
|
data() {
|
|
|
return {
|
|
|
title: "",
|
|
@@ -96,40 +94,8 @@ export default {
|
|
|
form: {
|
|
|
id: undefined,
|
|
|
},
|
|
|
- rules: {
|
|
|
- name: [{ required: false, message: "请输入等级名称", trigger: ["change","blur"] }],
|
|
|
- imgUrl: [{ required: false, message: "选上传图片", trigger: ["change","blur"] }],
|
|
|
- openDate: [{ required: false, message: "选择开/闭园时间范围", trigger: ["change","blur"] }],
|
|
|
- goodId: [{ required: false, message: "请输入景点产品", trigger: ["change","blur"] }],
|
|
|
- status: [{ required: false, message: "请输入开放状态", trigger: ["change","blur"] }],
|
|
|
- content: [{ required: false, message: "请输入开放状态", trigger: ["change","blur"] }],
|
|
|
- },
|
|
|
+ rules: {},
|
|
|
scenicAreaProducts: [],// 景点产品关联
|
|
|
- // 富文本编辑器配置
|
|
|
- editorOption: {
|
|
|
- modules: {
|
|
|
- toolbar: [
|
|
|
- ['bold', 'italic', 'underline', 'strike'], // 加粗 斜体 下划线 删除线
|
|
|
- ['blockquote', 'code-block'], // 引用 代码块
|
|
|
- [{ header: 1 }, { header: 2 }], // 1、2 级标题
|
|
|
- [{ list: 'ordered' }, { list: 'bullet' }], // 有序、无序列表
|
|
|
- [{ script: 'sub' }, { script: 'super' }], // 上标/下标
|
|
|
- [{ indent: '-1' }, { indent: '+1' }], // 缩进
|
|
|
- [{ direction: 'rtl' }], // 文本方向
|
|
|
- [{ size: ['12', '14', '16', '18', '20', '22', '24', '28', '32', '36'] }], // 字体大小
|
|
|
- [{ header: [1, 2, 3, 4, 5, 6] }], // 标题
|
|
|
- [{ color: [] }, { background: [] }], // 字体颜色、字体背景颜色
|
|
|
- // [{ font: ['songti'] }], // 字体种类
|
|
|
- [{ align: [] }], // 对齐方式
|
|
|
- ['clean'], // 清除文本格式
|
|
|
- ['image', 'video'] // 链接、图片、视频
|
|
|
- ]
|
|
|
- },
|
|
|
- placeholder: '请输入正文'
|
|
|
- },
|
|
|
- // 上传文件
|
|
|
- actionUrl: process.env.VUE_APP_BASE_API + process.env.VUE_APP_UPLOAD_IMAGE,
|
|
|
- actionUrlLoading: false,
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -188,47 +154,6 @@ export default {
|
|
|
this.open = false;
|
|
|
}
|
|
|
},
|
|
|
- /**
|
|
|
- * 保存
|
|
|
- * @date 2023-11-22
|
|
|
- * @returns {any}
|
|
|
- */
|
|
|
- submitForm() {
|
|
|
- this.$refs["form"].validate(valid => {
|
|
|
- if (valid) {
|
|
|
- this.loadingText = "提交数据中..."
|
|
|
- this.loading = true
|
|
|
- if (this.model != 'ADD') {
|
|
|
- addTableApi(
|
|
|
- this.configUrl.edit,{
|
|
|
- ...this.form,
|
|
|
- imgUrl: this.form.imgUrl ? this.form.imgUrl.join(','):''
|
|
|
- }).then(response => {
|
|
|
- this.$modal.msgSuccess("修改成功");
|
|
|
- this.loading = false
|
|
|
- this.open = false;
|
|
|
- this.$emit('refresh')
|
|
|
- }).catch(()=>{
|
|
|
- this.$message.error("修改失败!!!");
|
|
|
- this.loading = false
|
|
|
- })
|
|
|
- } else {
|
|
|
- addTableApi(this.configUrl.edit,{
|
|
|
- ...this.form,
|
|
|
- imgUrl: this.form.imgUrl ? this.form.imgUrl.join(','):''
|
|
|
- }).then(response => {
|
|
|
- this.$modal.msgSuccess("新增成功");
|
|
|
- this.loading = false
|
|
|
- this.open = false;
|
|
|
- this.$emit('refresh')
|
|
|
- }).catch(()=>{
|
|
|
- this.$message.error("新增失败!!!");
|
|
|
- this.loading = false
|
|
|
- })
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
/**
|
|
|
* 重置
|
|
|
* @date 2023-11-22
|
|
@@ -248,37 +173,6 @@ export default {
|
|
|
this.reset();
|
|
|
this.open = false;
|
|
|
},
|
|
|
-
|
|
|
- /** 上传图片 单张 */
|
|
|
- handleAvatarSuccess(response, file, fileList) {
|
|
|
- console.log("res, file",response, file, fileList)
|
|
|
- this.actionUrlLoading = false
|
|
|
- if(response.code == 200) {
|
|
|
- this.form.imgUrl.push(response.data.url)
|
|
|
- }
|
|
|
- },
|
|
|
- beforeAvatarUpload(file) {
|
|
|
- const isLt2M = file.size / 1024 / 1024 < 1;
|
|
|
- let testmsg = file.name.substring(file.name.lastIndexOf('.')+1)
|
|
|
- let typeList = ['png','jepg','jpg']
|
|
|
- const isJPG = typeList.includes(testmsg);
|
|
|
- if (!isJPG) {
|
|
|
- this.$message.error(`上传头像图片只能是 ${typeList} 格式!`);
|
|
|
- }
|
|
|
- if (!isLt2M) {
|
|
|
- this.$message.error('上传头像图片大小不能超过 1MB!');
|
|
|
- }
|
|
|
- return isJPG && isLt2M;
|
|
|
- },
|
|
|
- handleAvatarProgress(){
|
|
|
- this.actionUrlLoading = true
|
|
|
- },
|
|
|
- handleAvatarError() {
|
|
|
- this.actionUrlLoading = false
|
|
|
- },
|
|
|
- handleRemove(index) {
|
|
|
- this.form.imgUrl.splice(index,1)
|
|
|
- },
|
|
|
},
|
|
|
};
|
|
|
</script>
|