193 lines
6.4 KiB
Vue
193 lines
6.4 KiB
Vue
<template>
|
||
<a-spin :spinning="confirmLoading">
|
||
<a-card >
|
||
<!-- <div v-show="total==1"> -->
|
||
<div>
|
||
<div style="font-size: 18px;font-weight: 600;">1.选择订阅类型</div>
|
||
<a-form ref="formRef" class="antd-modal-form" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||
<a-row style="line-height: 50px;font-size: 16px;font-weight: 600;">
|
||
<a-col :span="24">
|
||
<!-- <a-form-item label="课前15分钟提醒"> -->
|
||
<a-checkbox-group v-model:value="formData.kqtx">
|
||
<a-checkbox value="1"/>
|
||
</a-checkbox-group>
|
||
课前15分钟提醒
|
||
<!-- <j-checkbox type="checkbox" v-model:value="formData.kqtx" dictCode="skzc" placeholder="请选择开课周次"/> -->
|
||
<!-- </a-form-item> -->
|
||
</a-col>
|
||
<a-col :span="24">
|
||
<!-- <a-form-item label="每天下午4点提醒明日课程"> -->
|
||
<a-checkbox-group v-model:value="formData.mrkctx">
|
||
<a-checkbox value="1"/>
|
||
</a-checkbox-group>
|
||
每天下午4点提醒明日课程
|
||
<!-- <j-checkbox type="checkbox" v-model:value="formData.mrkctx" dictCode="skzc" placeholder="请选择开课周次"/> -->
|
||
<!-- </a-form-item> -->
|
||
</a-col>
|
||
</a-row>
|
||
|
||
</a-form>
|
||
</div>
|
||
<!-- <div v-show="total==0" style="text-align: center;width:100%;">
|
||
<div style="font-size: 600;">请先关注公众号后进行提醒设置!</div>
|
||
<div style="text-align: center;width:100%;">
|
||
<img style="border-radius: 10px 10px 0 0;margin-bottom: 8px;width:200px;margin-left: 30%;" src="/resource/img/kc/dswjx.jpg" height="170px"/>
|
||
</div>
|
||
</div> -->
|
||
|
||
</a-card>
|
||
</a-spin>
|
||
</template>
|
||
|
||
<script lang="ts" setup>
|
||
import { ref, reactive, defineExpose, nextTick, defineProps, computed, onMounted, watch, createVNode,h } from 'vue';
|
||
import { defHttp } from '/@/utils/http/axios';
|
||
import { useMessage } from '/@/hooks/web/useMessage';
|
||
// import JCheckbox from "/@/components/Form/src/jeecg/components/JCheckbox.vue";
|
||
import { getValueType } from '/@/utils';
|
||
import { Form } from 'ant-design-vue';
|
||
|
||
import { getUserId } from '/@/views/site/utils/index';
|
||
import { Modal } from 'ant-design-vue';
|
||
import { ExclamationCircleOutlined,CheckOutlined } from '@ant-design/icons-vue';
|
||
|
||
const formRef = ref();
|
||
const useForm = Form.useForm;
|
||
const emit = defineEmits(['register', 'ok']);
|
||
const formData = reactive<Record<string, any>>({
|
||
userid: '',
|
||
kqtx: '1',
|
||
mrkctx: '1',
|
||
});
|
||
|
||
const { createMessage } = useMessage();
|
||
const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 5 } });
|
||
const wrapperCol = ref<any>({ xs: { span: 24 }, sm: { span: 16 } });
|
||
const confirmLoading = ref<boolean>(false);
|
||
const total = ref<any>(0);
|
||
//表单验证
|
||
const validatorRules = {
|
||
};
|
||
const { resetFields, validate, validateInfos } = useForm(formData, validatorRules, { immediate: true });
|
||
|
||
/**
|
||
* 新增
|
||
*/
|
||
function add() {
|
||
// getOpenId();
|
||
edit({});
|
||
}
|
||
function getOpenId(){
|
||
let params = { userid: getUserId(), pageSize: 1 };//没有ID,用list查吧,,
|
||
defHttp.get({ url: '/KcBdgxbcopy/kcBdgxbcopy/list', params }).then(res => {
|
||
console.log(`🚀 ~ file: baseForm.vue:77 ~ defHttp.get ~ res:`, res)
|
||
total.value = res.total
|
||
if(total.value>0){
|
||
var STATE = window.location.search.replace('?', '');
|
||
STATE = encodeURIComponent(STATE)
|
||
window.location.href = 'https://open.weixin.qq.com/connect/oauth2/authorize?'+
|
||
'appid=wxafdbb51ba3aa614d&redirect_uri=http://wxts.jlslxzn.com/jeecg-boot/wxpay/weixinoauth'+
|
||
'&response_type=code&scope=snsapi_base&state='+ getUserId() +'&userid='+getUserId()+'#wechat_redirect'
|
||
}
|
||
})
|
||
}
|
||
/**
|
||
* 编辑
|
||
*/
|
||
function edit( record ) {
|
||
nextTick(() => {
|
||
resetFields();
|
||
//查询数据
|
||
let recordData = {};
|
||
let params = { userid: getUserId(), pageSize: 1 };//没有ID,用list查吧,,
|
||
defHttp.get({ url: '/kcKechengtixingdingyue/kcKechengtixingdingyue/list', params }).then(res => {
|
||
recordData = ((res?.records) ?? [])[0]
|
||
// recordData = {} //DEBUG
|
||
Object.assign(formData, recordData);
|
||
})
|
||
//赋值
|
||
});
|
||
}
|
||
|
||
|
||
|
||
/**
|
||
* 提交数据
|
||
*/
|
||
async function submitForm() {
|
||
// 触发表单验证
|
||
await validate();
|
||
confirmLoading.value = true;
|
||
const isUpdate = ref<boolean>(false);
|
||
//时间格式化
|
||
// let model = Object.assign({},formData);
|
||
let model = formData;
|
||
|
||
if (model.userid) {
|
||
isUpdate.value = true;
|
||
}
|
||
//循环数据
|
||
for (let data in model) {
|
||
//如果该数据是数组并且是字符串类型
|
||
if (model[data] instanceof Array) {
|
||
let valueType = getValueType(formRef.value.getProps, data);
|
||
//如果是字符串类型的需要变成以逗号分割的字符串
|
||
if (valueType === 'string') {
|
||
model[data] = model[data].join(',');
|
||
}
|
||
}
|
||
}
|
||
model.kqtx = model.kqtx || 0;
|
||
model.mrkctx = model.mrkctx || 0;
|
||
let url = '';
|
||
if(isUpdate.value){
|
||
url = '/kcKechengtixingdingyue/kcKechengtixingdingyue/edit';
|
||
}else{
|
||
url = '/kcKechengtixingdingyue/kcKechengtixingdingyue/add';
|
||
//新增补充用户ID
|
||
model.userid = getUserId();
|
||
}
|
||
|
||
await defHttp.post({ url: url, params: model }, { isTransformResponse: false }).then((res) => {
|
||
if (res.success) {
|
||
|
||
Modal.success({
|
||
icon: createVNode({}),
|
||
content: h('div', {style:'height:200px;text-align:center;'}, [
|
||
h('icon', {style:'font-size:100px;font-weight:600;color:green;'}, createVNode(CheckOutlined)),
|
||
h('p',{style:'font-size:36px;font-weight:600;color:black;'}, '操作成功'),
|
||
]),
|
||
okText: 'OK',
|
||
width:'500px',
|
||
});
|
||
|
||
emit('ok');
|
||
} else {
|
||
if(total == 0){
|
||
emit('ok');
|
||
}else{
|
||
createMessage.warning(res.message);
|
||
}
|
||
}
|
||
})
|
||
.finally(() => {
|
||
confirmLoading.value = false;
|
||
});
|
||
}
|
||
|
||
|
||
defineExpose({
|
||
add,
|
||
edit,
|
||
submitForm,
|
||
});
|
||
</script>
|
||
|
||
<style lang="less" scoped>
|
||
.antd-modal-form {
|
||
// min-height: 500px !important;
|
||
overflow-y: auto;
|
||
padding: 24px 24px 24px 24px;
|
||
}
|
||
</style>
|