|
@@ -0,0 +1,571 @@
|
|
|
+<template>
|
|
|
+ <div class="tenant">
|
|
|
+ <!-- <Banner /> -->
|
|
|
+ <div class="content">
|
|
|
+ <byTable
|
|
|
+ :source="sourceList.data"
|
|
|
+ :pagination="sourceList.pagination"
|
|
|
+ :config="config"
|
|
|
+ :loading="loading"
|
|
|
+ highlight-current-row
|
|
|
+ :selectConfig="selectConfig"
|
|
|
+ :table-events="{
|
|
|
+ //element talbe事件都能传
|
|
|
+ select: select,
|
|
|
+ }"
|
|
|
+ :action-list="[
|
|
|
+ {
|
|
|
+ text: '邮箱域名管理',
|
|
|
+ action: () => openModalOne(),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ text: '添加邮箱',
|
|
|
+ action: () => openModal('10'),
|
|
|
+ },
|
|
|
+ ]"
|
|
|
+ @get-list="getList"
|
|
|
+ >
|
|
|
+ <template #slotName="{ item }">
|
|
|
+ {{ item.createTime }}
|
|
|
+ </template>
|
|
|
+ </byTable>
|
|
|
+ </div>
|
|
|
+ <el-dialog
|
|
|
+ :title="titleText"
|
|
|
+ v-model="dialogVisible"
|
|
|
+ width="400"
|
|
|
+ v-loading="loading"
|
|
|
+ >
|
|
|
+ <byForm
|
|
|
+ :formConfig="formConfig"
|
|
|
+ :formOption="formOption"
|
|
|
+ v-model="formData.data"
|
|
|
+ :rules="rules"
|
|
|
+ ref="byform"
|
|
|
+ >
|
|
|
+ <template #mailAddress>
|
|
|
+ <el-row style="width: 100%">
|
|
|
+ <el-col :span="11">
|
|
|
+ <el-input
|
|
|
+ v-model="formData.data.contactPerson"
|
|
|
+ placeholder="请输入"
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="2" style="text-align: center"> @ </el-col>
|
|
|
+ <el-col :span="11">
|
|
|
+ <el-input
|
|
|
+ v-model="formData.data.contactPerson"
|
|
|
+ placeholder="请输入"
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <template #rSlot>
|
|
|
+ <el-row style="width: 100%">
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-select
|
|
|
+ v-model="formData.data.countryId"
|
|
|
+ placeholder="收件协议"
|
|
|
+ disabled
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in countryData"
|
|
|
+ :label="item.chineseName"
|
|
|
+ :value="item.id"
|
|
|
+ >
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-input
|
|
|
+ v-model="formData.data.contactPerson"
|
|
|
+ placeholder="请输入"
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </template>
|
|
|
+ <template #sSlot>
|
|
|
+ <el-row style="width: 100%">
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-select
|
|
|
+ v-model="formData.data.countryId"
|
|
|
+ placeholder="发件协议"
|
|
|
+ disabled
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in countryData"
|
|
|
+ :label="item.chineseName"
|
|
|
+ :value="item.id"
|
|
|
+ >
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-input
|
|
|
+ v-model="formData.data.contactPerson"
|
|
|
+ placeholder="请输入"
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </template>
|
|
|
+ </byForm>
|
|
|
+ <template #footer>
|
|
|
+ <el-button @click="dialogVisible = false" size="large">取 消</el-button>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ @click="submitForm('byform')"
|
|
|
+ size="large"
|
|
|
+ :loading="submitLoading"
|
|
|
+ >
|
|
|
+ 确 定
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ </el-dialog>
|
|
|
+
|
|
|
+ <el-dialog
|
|
|
+ title="邮箱域名管理"
|
|
|
+ v-model="dialogVisibleOne"
|
|
|
+ width="800"
|
|
|
+ v-loading="loading"
|
|
|
+ >
|
|
|
+ <div style="width: 100%">
|
|
|
+ <div style="padding: 0px 20px">
|
|
|
+ <el-button type="primary" @click="openModal('20')">
|
|
|
+ 添加域名
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
+ <byTable
|
|
|
+ :source="sourceListOne.data"
|
|
|
+ :config="configOne"
|
|
|
+ :loading="loading"
|
|
|
+ highlight-current-row
|
|
|
+ :hidePagination="true"
|
|
|
+ :hideSearch="true"
|
|
|
+ >
|
|
|
+ </byTable>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup>
|
|
|
+/* eslint-disable vue/no-unused-components */
|
|
|
+import { ElMessage, ElMessageBox } from "element-plus";
|
|
|
+import byTable from "@/components/byTable/index";
|
|
|
+import byForm from "@/components/byForm/index";
|
|
|
+import { computed, defineComponent, ref } from "vue";
|
|
|
+const loading = ref(false);
|
|
|
+const submitLoading = ref(false);
|
|
|
+const sourceList = ref({
|
|
|
+ data: [],
|
|
|
+ pagination: {
|
|
|
+ total: 3,
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ },
|
|
|
+});
|
|
|
+const sourceListOne = ref({
|
|
|
+ data: [],
|
|
|
+});
|
|
|
+let dialogVisible = ref(false);
|
|
|
+let dialogVisibleOne = ref(false);
|
|
|
+let roomDialogVisible = ref(false);
|
|
|
+let modalType = ref("add");
|
|
|
+let submitType = ref("");
|
|
|
+let titleText = ref("");
|
|
|
+let rules = ref({
|
|
|
+ name: [{ required: true, message: "请输入平台名称", trigger: "blur" }],
|
|
|
+ endPoint: [{ required: true, message: "请输入EndPoint", trigger: "blur" }],
|
|
|
+ accessKey: [{ required: true, message: "请输入access_key", trigger: "blur" }],
|
|
|
+ accessCode: [
|
|
|
+ { required: true, message: "请输入access_code", trigger: "blur" },
|
|
|
+ ],
|
|
|
+ accessKeyId: [
|
|
|
+ { required: true, message: "请输入Access Key Id", trigger: "blur" },
|
|
|
+ ],
|
|
|
+ secretAccessKey: [
|
|
|
+ { required: true, message: "请输入Secret Access Key", trigger: "blur" },
|
|
|
+ ],
|
|
|
+ productId: [{ required: true, message: "请输入项目 ID", trigger: "blur" }],
|
|
|
+});
|
|
|
+const { proxy } = getCurrentInstance();
|
|
|
+const selectConfig = [];
|
|
|
+const config = computed(() => {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "邮箱地址",
|
|
|
+ prop: "type",
|
|
|
+ },
|
|
|
+ render(type) {
|
|
|
+ return "华为";
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "授权码",
|
|
|
+ prop: "name",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "绑定用户",
|
|
|
+ prop: "endPoint",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "收件协议",
|
|
|
+ prop: "accessKeyId",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "收件端口号",
|
|
|
+ prop: "secretAccessKey",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "发件协议",
|
|
|
+ prop: "productId",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "发件端口号",
|
|
|
+ prop: "fa",
|
|
|
+ },
|
|
|
+ },
|
|
|
+
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "操作",
|
|
|
+ width: "200",
|
|
|
+ align: "right",
|
|
|
+ },
|
|
|
+ // 渲染 el-button,一般用在最后一列。
|
|
|
+ renderHTML(row) {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "修改",
|
|
|
+ type: "primary",
|
|
|
+ text: true,
|
|
|
+ },
|
|
|
+ el: "button",
|
|
|
+ click() {
|
|
|
+ getDtl(row);
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "删除",
|
|
|
+ type: "danger",
|
|
|
+ text: true,
|
|
|
+ },
|
|
|
+ el: "button",
|
|
|
+ click() {
|
|
|
+ // 弹窗提示是否删除
|
|
|
+ ElMessageBox.confirm(
|
|
|
+ "此操作将永久删除该数据, 是否继续?",
|
|
|
+ "提示",
|
|
|
+ {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ }
|
|
|
+ ).then(() => {
|
|
|
+ // 删除
|
|
|
+ proxy
|
|
|
+ .post("/supplierInfo/delete", {
|
|
|
+ id: row.id,
|
|
|
+ })
|
|
|
+ .then((res) => {
|
|
|
+ ElMessage({
|
|
|
+ message: "删除成功",
|
|
|
+ type: "success",
|
|
|
+ });
|
|
|
+ getList();
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ];
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ];
|
|
|
+});
|
|
|
+const configOne = computed(() => {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "邮箱域名",
|
|
|
+ prop: "type",
|
|
|
+ },
|
|
|
+ render(type) {
|
|
|
+ return "华为";
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "海外邮箱",
|
|
|
+ prop: "name",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "收件协议",
|
|
|
+ prop: "endPoint",
|
|
|
+ },
|
|
|
+ },
|
|
|
+
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "收件端口号",
|
|
|
+ prop: "secretAccessKey",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "发件协议",
|
|
|
+ prop: "productId",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "发件端口号",
|
|
|
+ prop: "fa",
|
|
|
+ },
|
|
|
+ },
|
|
|
+
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "操作",
|
|
|
+ width: "150",
|
|
|
+ align: "right",
|
|
|
+ },
|
|
|
+ // 渲染 el-button,一般用在最后一列。
|
|
|
+ renderHTML(row) {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "修改",
|
|
|
+ type: "primary",
|
|
|
+ text: true,
|
|
|
+ },
|
|
|
+ el: "button",
|
|
|
+ click() {
|
|
|
+ getDtl(row);
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "删除",
|
|
|
+ type: "danger",
|
|
|
+ text: true,
|
|
|
+ },
|
|
|
+ el: "button",
|
|
|
+ click() {
|
|
|
+ // 弹窗提示是否删除
|
|
|
+ ElMessageBox.confirm(
|
|
|
+ "此操作将永久删除该数据, 是否继续?",
|
|
|
+ "提示",
|
|
|
+ {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ }
|
|
|
+ ).then(() => {
|
|
|
+ // 删除
|
|
|
+ proxy
|
|
|
+ .post("/supplierInfo/delete", {
|
|
|
+ id: row.id,
|
|
|
+ })
|
|
|
+ .then((res) => {
|
|
|
+ ElMessage({
|
|
|
+ message: "删除成功",
|
|
|
+ type: "success",
|
|
|
+ });
|
|
|
+ getList();
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ];
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ];
|
|
|
+});
|
|
|
+let formData = reactive({
|
|
|
+ data: {
|
|
|
+ type: "1",
|
|
|
+ },
|
|
|
+ treeData: [],
|
|
|
+});
|
|
|
+const formOption = reactive({
|
|
|
+ inline: true,
|
|
|
+ labelWidth: 100,
|
|
|
+ itemWidth: 100,
|
|
|
+ rules: [],
|
|
|
+});
|
|
|
+const byform = ref(null);
|
|
|
+const treeData = ref([]);
|
|
|
+const formConfig = ref({});
|
|
|
+const configData = [
|
|
|
+ [
|
|
|
+ {
|
|
|
+ type: "slot",
|
|
|
+ slotName: "mailAddress",
|
|
|
+ label: "邮箱地址",
|
|
|
+ required: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "input",
|
|
|
+ prop: "type",
|
|
|
+ label: "授权码",
|
|
|
+ required: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "select",
|
|
|
+ prop: "name",
|
|
|
+ label: "绑定用户",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ [
|
|
|
+ {
|
|
|
+ type: "input",
|
|
|
+ prop: "type",
|
|
|
+ label: "邮箱域名",
|
|
|
+ required: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "radio",
|
|
|
+ prop: "type",
|
|
|
+ label: "是否海外邮箱",
|
|
|
+ required: true,
|
|
|
+ border: true,
|
|
|
+ data: [
|
|
|
+ { label: "是", value: "1" },
|
|
|
+ { label: "否", value: "2" },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "input",
|
|
|
+ prop: "type",
|
|
|
+ label: "收件服务器地址",
|
|
|
+ required: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "slot",
|
|
|
+ slotName: "rSlot",
|
|
|
+ label: "收件协议",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "input",
|
|
|
+ prop: "type",
|
|
|
+ label: "发件服务器地址",
|
|
|
+ required: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "slot",
|
|
|
+ slotName: "sSlot",
|
|
|
+ label: "发件协议",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+];
|
|
|
+
|
|
|
+const getList = async (req) => {
|
|
|
+ sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
|
|
|
+ loading.value = true;
|
|
|
+ proxy.post("/tdaConfig/page", sourceList.value.pagination).then((message) => {
|
|
|
+ console.log(message);
|
|
|
+ sourceList.value.data = message.rows;
|
|
|
+ sourceList.value.pagination.total = message.total;
|
|
|
+ setTimeout(() => {
|
|
|
+ loading.value = false;
|
|
|
+ }, 200);
|
|
|
+ });
|
|
|
+};
|
|
|
+
|
|
|
+const openModal = (type) => {
|
|
|
+ formData.data = {};
|
|
|
+ dialogVisible.value = true;
|
|
|
+ modalType.value = "add";
|
|
|
+ submitType.value = type;
|
|
|
+ if (type === "10") {
|
|
|
+ titleText.value = "添加邮箱";
|
|
|
+ formConfig.value = configData[0];
|
|
|
+ } else if (type === "20") {
|
|
|
+ titleText.value = "添加域名";
|
|
|
+ formConfig.value = configData[1];
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+const openModalOne = () => {
|
|
|
+ dialogVisibleOne.value = true;
|
|
|
+ modalType.value = "add";
|
|
|
+ formData.data = {};
|
|
|
+};
|
|
|
+const selection = ref({
|
|
|
+ data: [],
|
|
|
+});
|
|
|
+const select = (_selection, row) => {
|
|
|
+ selection.value.data = _selection;
|
|
|
+ console.log(_selection.length);
|
|
|
+};
|
|
|
+const submitForm = () => {
|
|
|
+ console.log(byform.value);
|
|
|
+ byform.value.handleSubmit((valid) => {
|
|
|
+ if (submitType.value === "10") {
|
|
|
+ submitLoading.value = true;
|
|
|
+ proxy.post("/tdaConfig/" + modalType.value, formData.data).then(
|
|
|
+ (res) => {
|
|
|
+ ElMessage({
|
|
|
+ message: modalType.value == "add" ? "添加成功" : "编辑成功",
|
|
|
+ type: "success",
|
|
|
+ });
|
|
|
+ dialogVisible.value = false;
|
|
|
+ submitLoading.value = false;
|
|
|
+ getList();
|
|
|
+ },
|
|
|
+ (err) => (submitLoading.value = false)
|
|
|
+ );
|
|
|
+ } else if (submitType.value === "20") {
|
|
|
+ }
|
|
|
+ });
|
|
|
+};
|
|
|
+
|
|
|
+const getDtl = (row) => {
|
|
|
+ modalType.value = "edit";
|
|
|
+ formData.data = {
|
|
|
+ supplierPriceList: [],
|
|
|
+ };
|
|
|
+ dialogVisible.value = true;
|
|
|
+ // proxy.post("/tdaConfig/detail", { id: row.id }).then((res) => {
|
|
|
+ // formData.data = res;
|
|
|
+ // console.log(formData);
|
|
|
+ // dialogVisible.value = true;
|
|
|
+ // });
|
|
|
+};
|
|
|
+
|
|
|
+const addRow = () => {
|
|
|
+ formData.data.supplierPriceList.push({
|
|
|
+ price: "",
|
|
|
+ pricea: "",
|
|
|
+ });
|
|
|
+};
|
|
|
+
|
|
|
+getList();
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.tenant {
|
|
|
+ padding: 20px;
|
|
|
+}
|
|
|
+</style>
|