|
@@ -5,7 +5,7 @@ export default {
|
|
|
};
|
|
|
</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"
|
|
|
+import { JsonEditor, inject, onMounted, reactive, ref, Uploadfile, UploadImg, Editor, useRenderIcon, ElMessage, ElMessageBox, Upload, Close, http, getGroupUrl, RegularVerification, verification } from "@/utils/importUsed"
|
|
|
// 接口列表实例
|
|
|
let UrlList = reactive(null)
|
|
|
// 获取当前板块接口列表
|
|
@@ -36,6 +36,7 @@ const UpdateForm: any = ref({
|
|
|
prizeObjId: "", //发放对象
|
|
|
logSummary: "", //日志说明
|
|
|
batchNo: "", //批次号
|
|
|
+ stepList: "", //日志内容
|
|
|
|
|
|
});
|
|
|
// 配置ID选项数据
|
|
@@ -68,11 +69,12 @@ const submit = async (formEl) => {
|
|
|
type: "success"
|
|
|
});
|
|
|
UpdateForm.value = {
|
|
|
- id: null, //ID
|
|
|
- listId: null, //配置ID
|
|
|
- prizeObjId: "", //发放对象
|
|
|
- logSummary: "", //日志说明
|
|
|
- batchNo: "", //批次号
|
|
|
+ id: null, //ID
|
|
|
+ listId: null, //配置ID
|
|
|
+ prizeObjId: "", //发放对象
|
|
|
+ logSummary: "", //日志说明
|
|
|
+ batchNo: "", //批次号
|
|
|
+ stepList: "", //日志内容
|
|
|
|
|
|
};
|
|
|
// 关闭修改弹窗;
|
|
@@ -96,7 +98,7 @@ const submit = async (formEl) => {
|
|
|
|
|
|
//获取配置ID数据
|
|
|
const listIdQuery = async () => {
|
|
|
- const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriListDic.method, url: UrlList.prizeSet.prigetPriListDic.url, params: { } });
|
|
|
+ const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriListDic.method, url: UrlList.prizeSet.prigetPriListDic.url, params: {} });
|
|
|
if (status === 1) {
|
|
|
listIdOptionList.value = data.records;
|
|
|
}
|
|
@@ -115,9 +117,10 @@ const rules = reactive({
|
|
|
const closeFn: any = inject('closeEditUpdatePriLogVisible');
|
|
|
const openVisible = async () => {
|
|
|
//通过ID获取表格数据
|
|
|
- const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriLogQuery.method, url: UrlList.prizeSet.prigetPriLogQuery.url, params: { id: props.formData.id }});
|
|
|
+ const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriLogQuery.method, url: UrlList.prizeSet.prigetPriLogQuery.url, params: { id: props.formData.id } });
|
|
|
if (status === 1) {
|
|
|
UpdateForm.value = data;
|
|
|
+ UpdateForm.value.stepList = JSON.parse(data.stepList);
|
|
|
|
|
|
}
|
|
|
};
|
|
@@ -129,6 +132,7 @@ const closeUpdatePriLogVisible = () => {
|
|
|
prizeObjId: "", //发放对象
|
|
|
logSummary: "", //日志说明
|
|
|
batchNo: "", //批次号
|
|
|
+ stepList: "", //日志内容
|
|
|
|
|
|
};
|
|
|
closeFn();
|
|
@@ -140,27 +144,10 @@ const isFullscreen = ref(false)
|
|
|
|
|
|
<template lang="pug">
|
|
|
.main
|
|
|
- el-dialog(v-model='props.editVisible' draggable width="50%" :fullscreen="isFullscreen" title="修改" @close="closeUpdatePriLogVisible" @open="openVisible")
|
|
|
+ el-dialog(v-model='props.editVisible' draggable width="70%" :fullscreen="isFullscreen" title="日志" @close="closeUpdatePriLogVisible" @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="配置ID", prop="listId")
|
|
|
- el-select(
|
|
|
- v-model="UpdateForm.listId",
|
|
|
- placeholder="请选择配置ID",
|
|
|
- clearable,
|
|
|
- )
|
|
|
- el-option(:label="item.id", :value="item.prizeName" v-for="(item,index) in listIdOptionList")
|
|
|
- el-form-item(label='发放对象' prop="prizeObjId")
|
|
|
- el-input(v-model='UpdateForm.prizeObjId' autocomplete='off'
|
|
|
- placeholder="请输入发放对象")
|
|
|
- el-form-item(label='日志说明' prop="logSummary")
|
|
|
- el-input(v-model='UpdateForm.logSummary' autocomplete='off'
|
|
|
- placeholder="请输入日志说明")
|
|
|
- el-form-item(label='批次号' prop="batchNo")
|
|
|
- el-input(v-model='UpdateForm.batchNo' autocomplete='off'
|
|
|
- placeholder="请输入批次号")
|
|
|
+ el-form-item(label='奖励日志' prop="stepList")
|
|
|
+ JsonEditor(v-model:data="UpdateForm.stepList")
|
|
|
|
|
|
.flex.justify-end
|
|
|
el-button(
|
|
@@ -168,11 +155,11 @@ const isFullscreen = ref(false)
|
|
|
:loading="loading",
|
|
|
@click="closeUpdatePriLogVisible()"
|
|
|
) 关闭
|
|
|
- el-button(
|
|
|
- type="primary",
|
|
|
- :icon="useRenderIcon(Upload)",
|
|
|
- @click="submit(ruleFormRef)"
|
|
|
- ) 确认提交
|
|
|
+ //- el-button(
|
|
|
+ //- type="primary",
|
|
|
+ //- :icon="useRenderIcon(Upload)",
|
|
|
+ //- @click="submit(ruleFormRef)"
|
|
|
+ //- ) 确认提交
|
|
|
</template>
|
|
|
|
|
|
<style scoped lang="scss">
|