修改新增运营商时上传logo功能

This commit is contained in:
JS-LM
2023-06-16 11:36:33 +08:00
parent 3f82905b11
commit 67dec00cf7

View File

@@ -1,428 +1,557 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<el-form <el-form
:model="queryParams" :model="queryParams"
ref="queryForm" ref="queryForm"
size="small" size="small"
:inline="true" :inline="true"
v-show="showSearch" v-show="showSearch"
label-width="110px" label-width="110px"
>
<el-form-item label="运营商名称" prop="merchantName">
<el-input
v-model="queryParams.merchantName"
placeholder="请输入运营商名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button
type="primary"
icon="el-icon-search"
size="mini"
@click="handleQuery"
>搜索</el-button
> >
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
>重置</el-button
>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['pile:merchant:add']"
>新增</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['pile:merchant:edit']"
>修改</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['pile:merchant:remove']"
>删除</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['pile:merchant:export']"
>导出</el-button
>
</el-col>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-table
v-loading="loading"
:data="merchantList"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" align="center" />
<!--<el-table-column label="" align="center" prop="id" />-->
<el-table-column label="运营商名称" align="center" prop="merchantName" >
<template slot-scope="scope">
<router-link
:to="'/merchant/detail/index/'+scope.row.id"
class="link-type"
>
<span>{{ scope.row.merchantName }}</span>
</router-link>
</template>
</el-table-column>
<el-table-column label="地址" align="center" prop="address" />
<el-table-column label="状态" align="center" prop="status" />
<el-table-column
label="组织机构代码"
align="center"
prop="organizationCode"
/>
<el-table-column label="负责人姓名" align="center" prop="managerName" />
<el-table-column
label="负责人电话号码"
align="center"
prop="managerPhone"
/>
<el-table-column
label="客服电话号码"
align="center"
prop="servicePhone"
/>
<el-table-column label="logo" align="center" prop="logoUrl" />
<el-table-column
label="操作"
align="center"
v-if="checkPermi(['pile:merchant:edit'])"
class-name="small-padding fixed-width"
>
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['pile:merchant:edit']"
>修改</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['pile:merchant:remove']"
>删除</el-button
>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改充电桩运营商信息对话框 -->
<el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="110px">
<el-row>
<el-col span="12">
<el-form-item label="运营商名称" prop="merchantName"> <el-form-item label="运营商名称" prop="merchantName">
<el-input <el-input
v-model="form.merchantName" v-model="queryParams.merchantName"
placeholder="请输入运营商名称" placeholder="请输入运营商名称"
/> clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item> </el-form-item>
</el-col> <el-form-item>
<el-col span="12"> <el-button
<el-form-item label="组织机构代码" prop="organizationCode"> type="primary"
<el-input icon="el-icon-search"
v-model="form.organizationCode" size="mini"
placeholder="请输入组织机构代码" @click="handleQuery"
/> >搜索</el-button
>
<el-button
icon="el-icon-refresh"
size="mini"
@click="resetQuery"
>重置</el-button
>
</el-form-item> </el-form-item>
</el-col> </el-form>
</el-row>
<el-row> <el-row :gutter="10" class="mb8">
<el-col span="24"> <el-col :span="1.5">
<el-form-item label="地址" prop="address"> <el-button
<el-input v-model="form.address" placeholder="请输入地址" /> type="primary"
</el-form-item> plain
</el-col> icon="el-icon-plus"
</el-row> size="mini"
<el-row> @click="handleAdd"
<el-col span="12"> v-hasPermi="['pile:merchant:add']"
<el-form-item label="负责人姓名" prop="managerName"> >新增</el-button
<el-input >
v-model="form.managerName" </el-col>
placeholder="请输入负责人姓名" <el-col :span="1.5">
/> <el-button
</el-form-item> type="success"
</el-col> plain
<el-col span="12"> icon="el-icon-edit"
<el-form-item label="负责人电话号码" prop="managerPhone"> size="mini"
<el-input :disabled="single"
v-model="form.managerPhone" @click="handleUpdate"
placeholder="请输入负责人电话号码" v-hasPermi="['pile:merchant:edit']"
/> >修改</el-button
</el-form-item> >
</el-col> </el-col>
</el-row> <el-col :span="1.5">
<el-row> <el-button
<el-col span="12"> type="danger"
<el-form-item label="客服电话号码" prop="servicePhone"> plain
<el-input icon="el-icon-delete"
v-model="form.servicePhone" size="mini"
placeholder="请输入客服电话号码" :disabled="multiple"
/> @click="handleDelete"
</el-form-item> v-hasPermi="['pile:merchant:remove']"
</el-col> >删除</el-button
<el-col span="12"> >
<el-form-item label="logo" prop="logoUrl"> </el-col>
<el-input v-model="form.logoUrl" placeholder="请输入logo" /> <el-col :span="1.5">
</el-form-item> <el-button
</el-col> type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['pile:merchant:export']"
>导出</el-button
>
</el-col>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row> </el-row>
<el-row> <el-table
<el-col span="12"> v-loading="loading"
<el-form-item label="小程序APPID" prop="appId"> :data="merchantList"
<el-input @selection-change="handleSelectionChange"
v-model="form.appId" >
placeholder="请输入小程序APPID" <el-table-column type="selection" width="55" align="center" />
/> <!--<el-table-column label="" align="center" prop="id" />-->
</el-form-item> <el-table-column
</el-col> label="运营商名称"
</el-row> align="center"
prop="merchantName"
>
<template slot-scope="scope">
<router-link
:to="'/merchant/detail/index/' + scope.row.id"
class="link-type"
>
<span>{{ scope.row.merchantName }}</span>
</router-link>
</template>
</el-table-column>
<el-table-column label="地址" align="center" prop="address" />
<el-table-column label="状态" align="center" prop="status" />
<el-table-column
label="组织机构代码"
align="center"
prop="organizationCode"
/>
<el-table-column
label="负责人姓名"
align="center"
prop="managerName"
/>
<el-table-column
label="负责人电话号码"
align="center"
prop="managerPhone"
/>
<el-table-column
label="客服电话号码"
align="center"
prop="servicePhone"
/>
<el-table-column label="logo" align="center" prop="logoUrl" >
<template slot-scope="scope">
<el-image style="width: 100px; height: 100px"
:src="scope.row.logoUrl"></el-image>
</template>
</el-table-column>
<el-table-column
label="操作"
align="center"
v-if="checkPermi(['pile:merchant:edit'])"
class-name="small-padding fixed-width"
>
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['pile:merchant:edit']"
>修改</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['pile:merchant:remove']"
>删除</el-button
>
</template>
</el-table-column>
</el-table>
<!--<el-form-item label="删除标识" prop="delFlag"> <pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改充电桩运营商信息对话框 -->
<el-dialog
:title="title"
:visible.sync="open"
width="50%"
append-to-body
:before-close="closeBefore"
>
<el-form
ref="form"
:model="form"
:rules="rules"
label-width="200px"
>
<el-row>
<el-col :span="12">
<el-form-item label="运营商名称" prop="merchantName">
<el-input
v-model="form.merchantName"
placeholder="请输入运营商名称"
/>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item
label="组织机构代码"
prop="organizationCode"
>
<el-input
v-model="form.organizationCode"
placeholder="请输入组织机构代码"
/>
</el-form-item>
</el-col>
</el-row>
<el-form-item label="地址" prop="address">
<el-input
v-model="form.address"
placeholder="请输入地址"
/>
</el-form-item>
<!-- <el-row>
<el-col span="24">
</el-col>
</el-row> -->
<el-row>
<el-col :span="12">
<el-form-item label="负责人姓名" prop="managerName">
<el-input
v-model="form.managerName"
placeholder="请输入负责人姓名"
/>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item
label="负责人电话号码"
prop="managerPhone"
>
<el-input
v-model="form.managerPhone"
placeholder="请输入负责人电话号码"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="客服电话号码" prop="servicePhone">
<el-input
v-model="form.servicePhone"
placeholder="请输入客服电话号码"
/>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="小程序APPID" prop="appId">
<el-input
v-model="form.appId"
placeholder="请输入小程序APPID"
/>
</el-form-item>
</el-col>
</el-row>
<el-form-item label="logo" prop="logoUrl">
<el-upload
class="upload-demo"
:action="actionUrl"
:headers="headers"
:on-success="handleSuccess"
:on-preview="handlePreview"
:on-remove="handleRemove"
:file-list="fileList"
list-type="picture"
:limit="1"
:on-exceed="handleExceed"
>
<el-button size="small" type="primary"
>点击上传</el-button
>
<div slot="tip" class="el-upload__tip">
只能上传jpg/png文件且不超过500kb
</div>
</el-upload>
<!-- <el-input v-model="form.logoUrl" placeholder="" /> -->
</el-form-item>
<!-- <el-row>
<el-col span="12">
</el-col>
</el-row> -->
<!--<el-form-item label="删除标识" prop="delFlag">
<el-input v-model="form.delFlag" placeholder="请输入删除标识" /> <el-input v-model="form.delFlag" placeholder="请输入删除标识" />
</el-form-item>--> </el-form-item>-->
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button> <el-button type="primary" @click="submitForm" > </el-button>
<el-button @click="cancel"> </el-button> <el-button @click="cancel"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
</div> </div>
</template> </template>
<script> <script>
import { import {
listMerchant, listMerchant,
getMerchant, getMerchant,
delMerchant, delMerchant,
addMerchant, addMerchant,
updateMerchant, updateMerchant,
} from "@/api/pile/merchant"; } from "@/api/pile/merchant";
import {checkPermi} from "@/utils/permission"; import { checkPermi } from "@/utils/permission";
import { getToken } from "@/utils/auth";
export default { export default {
name: "Merchant", name: "Merchant",
data() { data() {
return { return {
// 遮罩层 actionUrl: process.env.VUE_APP_BASE_API + "/common/uploadOSS",
loading: true, dialogImageUrl: "",
// 选中数组 headers: {
ids: [], Authorization: "Bearer " + getToken(),
// 非单个禁用 },
single: true, imageUrl: null,
// 非多个禁用 fileList: [],
multiple: true, // 遮罩层
// 显示搜索条件 loading: true,
showSearch: true, // 选中数组
// 总条数 ids: [],
total: 0, // 非单个禁用
// 充电桩运营商信息表格数据 single: true,
merchantList: [], // 非多个禁用
// 弹出层标题 multiple: true,
title: "", // 显示搜索条件
// 是否显示弹出层 showSearch: true,
open: false, // 总条数
// 查询参数 total: 0,
queryParams: { // 充电桩运营商信息表格数据
pageNum: 1, merchantList: [],
pageSize: 10, // 弹出层标题
merchantName: null, title: "",
address: null, // 是否显示弹出层
status: null, open: false,
organizationCode: null, // 查询参数
managerName: null, queryParams: {
managerPhone: null, pageNum: 1,
servicePhone: null, pageSize: 10,
logoUrl: null, merchantName: null,
}, address: null,
// 表单参数 status: null,
form: {}, organizationCode: null,
// 表单校验 managerName: null,
rules: { managerPhone: null,
merchantName: [ servicePhone: null,
{ required: true, message: "请输入运营商名称", trigger: "blur" }, logoUrl: null,
], },
organizationCode: [ // 表单参数
{ required: true, message: "请输入组织机构代码", trigger: "blur" }, form: {},
], // 表单校验
address: [{ required: true, message: "请输入地址", trigger: "blur" }], rules: {
managerName: [ merchantName: [
{ required: true, message: "请输入负责人姓名", trigger: "blur" }, {
], required: true,
managerPhone: [ message: "请输入运营商名称",
{ required: true, message: "请输入负责人电话号码", trigger: "blur" }, trigger: "blur",
], },
servicePhone: [ ],
{ required: true, message: "请输入客服电话号码", trigger: "blur" }, organizationCode: [
], {
logoUrl: [{ required: true, message: "请输入logo", trigger: "blur" }], required: true,
}, message: "请输入组织机构代码",
}; trigger: "blur",
}, },
created() { ],
this.getList(); address: [
}, { required: true, message: "请输入地址", trigger: "blur" },
methods: { ],
checkPermi, managerName: [
/** 查询充电桩运营商信息列表 */ {
getList() { required: true,
this.loading = true; message: "请输入负责人姓名",
listMerchant(this.queryParams).then((response) => { trigger: "blur",
this.merchantList = response.rows; },
this.total = response.total; ],
this.loading = false; managerPhone: [
}); {
required: true,
message: "请输入负责人电话号码",
trigger: "blur",
},
],
servicePhone: [
{
required: true,
message: "请输入客服电话号码",
trigger: "blur",
},
],
logoUrl: [
{ required: true, message: "请输入logo", trigger: "blur" },
],
},
};
}, },
// 取消按钮 created() {
cancel() { this.getList();
this.open = false;
this.reset();
}, },
// 表单重置 methods: {
reset() { checkPermi,
this.form = { closeBefore(){
id: null, this.open = false
merchantName: null, this.fileList = []
address: null, },
status: "0", handleExceed(files, fileList) {
organizationCode: null, this.$message.warning(
managerName: null, `当前限制选择 1 个文件,本次选择了 ${
managerPhone: null, files.length
servicePhone: null, } 个文件,共选择了 ${files.length + fileList.length} 个文件`
logoUrl: null, );
createBy: null, },
createTime: null, handleSuccess(res, file) {
updateBy: null, this.imageUrl = URL.createObjectURL(file.raw);
updateTime: null, console.log("图片上传成功 url", this.imageUrl);
delFlag: null, console.log("图片上传成功 res", res);
}; this.fileList.push({ url: res.url });
this.resetForm("form"); this.form.logoUrl = res.url
}, },
/** 搜索按钮操作 */ handleRemove(file, fileList) {
handleQuery() { console.log("移除图片", file, fileList);
this.queryParams.pageNum = 1; // 从pics数组中找到图片对应的索引值
this.getList(); const i = this.fileList.findIndex((x) => x.uid === file.uid);
}, // 调用splice方法移除图片信息
/** 重置按钮操作 */ this.fileList.splice(i, 1);
resetQuery() { },
this.resetForm("queryForm"); handlePreview(file) {
this.handleQuery(); // console.log(file);
}, this.dialogImageUrl = file.url;
// 多选框选中数据 console.log(this.dialogImageUrl);
handleSelectionChange(selection) { this.dialogVisible = true;
this.ids = selection.map((item) => item.id); },
this.single = selection.length !== 1; /** 查询充电桩运营商信息列表 */
this.multiple = !selection.length; getList() {
}, this.loading = true;
/** 新增按钮操作 */ listMerchant(this.queryParams).then((response) => {
handleAdd() { this.merchantList = response.rows;
this.reset(); console.log('this.merchantList',this.merchantList)
this.open = true; this.total = response.total;
this.title = "添加运营商信息"; this.loading = false;
}, });
/** 修改按钮操作 */ },
handleUpdate(row) { // 取消按钮
this.reset(); cancel() {
const id = row.id || this.ids; this.open = false;
getMerchant(id).then((response) => { this.fileList = []
this.form = response.data; this.reset();
this.open = true; },
this.title = "修改运营商信息"; // 表单重置
}); reset() {
}, this.form = {
/** 提交按钮 */ id: null,
submitForm() { merchantName: null,
this.$refs["form"].validate((valid) => { address: null,
if (valid) { status: "0",
if (this.form.id != null) { organizationCode: null,
updateMerchant(this.form).then((response) => { managerName: null,
this.$modal.msgSuccess("修改成功"); managerPhone: null,
this.open = false; servicePhone: null,
this.getList(); logoUrl: null,
}); createBy: null,
} else { createTime: null,
addMerchant(this.form).then((response) => { updateBy: null,
this.$modal.msgSuccess("新增成功"); updateTime: null,
this.open = false; delFlag: null,
this.getList(); };
}); this.resetForm("form");
} },
} /** 搜索按钮操作 */
}); handleQuery() {
}, this.queryParams.pageNum = 1;
/** 删除按钮操作 */ this.getList();
handleDelete(row) { },
const ids = row.id || this.ids; /** 重置按钮操作 */
this.$modal resetQuery() {
.confirm('是否确认删除充电桩运营商信息编号为"' + ids + '"的数据项?') this.resetForm("queryForm");
.then(function () { this.handleQuery();
return delMerchant(ids); },
}) // 多选框选中数据
.then(() => { handleSelectionChange(selection) {
this.getList(); this.ids = selection.map((item) => item.id);
this.$modal.msgSuccess("删除成功"); this.single = selection.length !== 1;
}) this.multiple = !selection.length;
.catch(() => {}); },
}, /** 新增按钮操作 */
/** 导出按钮操作 */ handleAdd() {
handleExport() { this.reset();
this.download( this.open = true;
"pile/merchant/export", this.title = "添加运营商信息";
{ },
...this.queryParams, /** 修改按钮操作 */
handleUpdate(row) {
this.fileList = []
this.fileList.push({"url": row.logoUrl});
this.reset();
const id = row.id || this.ids;
getMerchant(id).then((response) => {
this.form = response.data;
this.open = true;
this.title = "修改运营商信息";
});
},
/** 提交按钮 */
submitForm() {
console.log('this.form',this.form,this.form.logoUrl )
this.$refs["form"].validate((valid) => {
if (valid) {
if (this.form.id != null) {
updateMerchant(this.form).then((response) => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addMerchant(this.form).then((response) => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal
.confirm(
'是否确认删除充电桩运营商信息编号为"' + ids + '"的数据项?'
)
.then(function () {
return delMerchant(ids);
})
.then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
})
.catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download(
"pile/merchant/export",
{
...this.queryParams,
},
`merchant_${new Date().getTime()}.xlsx`
);
}, },
`merchant_${new Date().getTime()}.xlsx`
);
}, },
},
}; };
</script> </script>