123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- <script lang="ts">
- // 声明额外的选项
- export default {
- name: "Edit"
- };
- </script>
- <script setup lang="ts">
- import { inject, onMounted, reactive, ref, Uploadfile, UploadImg, Editor, useRenderIcon, ElMessage, ElMessageBox, Upload, Close, http, getGroupUrl, RegularVerification, verification } from "@/utils/importUsed"
- // 接口列表实例
- let UrlList = reactive(null)
- // 获取当前板块接口列表
- onMounted(async () => {
- UrlList = await getGroupUrl(["prizeSet"]);
- })
- const props = defineProps<{
- editVisible: {
- type: Boolean;
- default: false;
- };
- width: {
- type: Number;
- default: 50;
- };
- formData: {
- id: any;
- type: any;
- default: {};
- };
- }>();
- // 表单数据
- const UpdateForm: any = ref({
- id: null, //ID
- prizeName: "", //奖励名称
- prizePercent: "", //奖励比例
- prizeAmount: "", //奖励固定金额
- conditionMode: "", //条件模式
- recursionFlag: "", //是否递归
- prizeContent: "", //奖励内容
- });
- // 条件模式选项数据
- const conditionModeOptionList = [
- { id: 'all', label: '全部满足' },
- { id: 'one', label: '一个满足' },
- ]
- // 奖励内容选项数据
- const prizeContentOptionList = [
- { id: 'cash', label: '现金' },
- { id: 'recyc', label: '循环资格' },
- { id: 'coupon', label: '机具券' },
- ]
- // 表单实例
- const ruleFormRef = ref()
- // 选项卡参数(默认值为列表某项的id)
- const activeId = ref('1')
- // 提交函数
- const submit = async (formEl) => {
- // 表单校验拦截
- if (!formEl) return
- await formEl.validate(async (valid, fields) => {
- if (valid) {
- //表单校验成功回调
- console.log('submit!')
- // 需动态生成接口
- const { status, msg }: any = await http.Request({
- method: UrlList.prizeSet.priupdatePriList.method,
- url: UrlList.prizeSet.priupdatePriList.url,
- params: UpdateForm.value
- });
- if (status === 1) {
- //业务成功回调
- ElMessage({
- message: "修改成功",
- type: "success"
- });
- UpdateForm.value = {
- id: null, //ID
- prizeName: "", //奖励名称
- prizePercent: "", //奖励比例
- prizeAmount: "", //奖励固定金额
- conditionMode: "", //条件模式
- recursionFlag: "", //是否递归
- prizeContent: "", //奖励内容
- };
- // 关闭修改弹窗;
- closeUpdatePriListVisible();
- } else {
- //业务失败回调
- ElMessageBox.alert(msg, "提示", {
- confirmButtonText: "关闭",
- type: "warning"
- });
- }
- } else {
- //表单校验失败回调
- ElMessage({
- message: "请输入完整信息",
- type: "error"
- });
- }
- })
- };
- // 表单校验规则
- const rules = reactive({
- id: [
- { required: true, message: '请输入ID', trigger: 'blur' },
- ],
- prizeName: [
- { required: true, message: '请输入奖励名称', trigger: 'blur' },
- ],
- prizePercent: [
- { required: true, message: '请输入奖励比例', trigger: 'blur' },
- ],
- conditionMode: [
- { required: true, message: '请输入条件模式', trigger: 'blur' },
- ],
- })
- // 关闭弹窗回调函数
- const closeFn: any = inject('closeEditUpdatePriListVisible');
- const openVisible = async () => {
- //通过ID获取表格数据
- const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriListQuery.method, url: UrlList.prizeSet.prigetPriListQuery.url, params: { id: props.formData.id } });
- if (status === 1) {
- UpdateForm.value = data;
- }
- };
- // 关闭弹窗回调函数
- const closeUpdatePriListVisible = () => {
- UpdateForm.value = {
- id: null, //ID
- prizeName: "", //奖励名称
- prizePercent: "", //奖励比例
- prizeAmount: "", //奖励固定金额
- conditionMode: "", //条件模式
- recursionFlag: "", //是否递归
- prizeContent: "", //奖励内容
- };
- closeFn();
- };
- // 弹窗是否全屏
- const isFullscreen = ref(false)
- </script>
- <template lang="pug">
- .main
- el-dialog(v-model='props.editVisible' draggable width="50%" :fullscreen="isFullscreen" title="修改" @close="closeUpdatePriListVisible" @open="openVisible")
- el-form(:model='UpdateForm' label-position="right" ref="ruleFormRef" :rules="rules" label-width="100px")
- el-form-item(label='ID' prop="id")
- el-input-number(v-model='UpdateForm.id' :min="1" :max="1000"
- placeholder="请输入ID")
- el-form-item(label='奖励名称' prop="prizeName")
- el-input(v-model='UpdateForm.prizeName' autocomplete='off'
- placeholder="请输入奖励名称")
- el-form-item(label='奖励比例' prop="prizePercent")
- el-input-number(v-model='UpdateForm.prizePercent' :min="0" :max="1000"
- placeholder="请输入奖励比例")
- el-form-item(label='奖励固定金额' prop="prizeAmount")
- el-input-number(v-model='UpdateForm.prizeAmount' :min="0" :max="1000"
- placeholder="请输入奖励固定金额")
- el-form-item(label="条件模式", prop="conditionMode")
- el-select(
- v-model="UpdateForm.conditionMode",
- placeholder="请选择条件模式",
- clearable,
- )
- el-option(:label="item.label", :value="item.id" v-for="(item,index) in conditionModeOptionList")
- el-form-item(label='是否递归' prop="recursionFlag")
- el-switch(v-model="UpdateForm.recursionFlag")
- el-form-item(label="奖励内容", prop="prizeContent")
- el-select(
- v-model="UpdateForm.prizeContent",
- placeholder="请选择奖励内容",
- clearable,
- )
- el-option(:label="item.label", :value="item.id" v-for="(item,index) in prizeContentOptionList")
- .flex.justify-end
- el-button(
- :icon="useRenderIcon(Close)",
- :loading="loading",
- @click="closeUpdatePriListVisible()"
- ) 关闭
- el-button(
- type="primary",
- :icon="useRenderIcon(Upload)",
- @click="submit(ruleFormRef)"
- ) 确认提交
- </template>
- <style scoped lang="scss">
- :deep(.el-dropdown-menu__item i) {
- margin: 0;
- }
- :deep(.el-form-item__label) {
- font-weight: 700;
- }
- :deep(.el-pagination) {
- flex-flow: wrap;
- }
- :deep(.is-draggable) {
- max-height: 80vh;
- overflow: auto;
- }
- :deep(.el-dialog__header) {
- position: sticky;
- top: 0;
- z-index: 2;
- background: #fff;
- }
- .collapsedom {
- padding: 0 20px;
- background-color: #fff;
- }
- .ovh-x {
- height: 40vh;
- overflow-y: auto;
- }
- :deep(.el-descriptions__header) {
- margin: 16px 0 !important;
- }
- .el-select {
- width: 100%;
- }
- </style>
|