2023-04-08 10:52:46 +08:00
|
|
|
|
<template>
|
|
|
|
|
<a-spin :spinning="confirmLoading">
|
2023-04-16 14:15:48 +08:00
|
|
|
|
<a-card >
|
2023-06-13 16:47:57 +08:00
|
|
|
|
<!-- <div v-show="total==1"> -->
|
|
|
|
|
<div>
|
2023-05-18 16:40:52 +08:00
|
|
|
|
<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>
|
2023-06-13 16:47:57 +08:00
|
|
|
|
<!-- <div v-show="total==0" style="text-align: center;width:100%;">
|
2023-05-18 16:40:52 +08:00
|
|
|
|
<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>
|
2023-06-13 16:47:57 +08:00
|
|
|
|
</div> -->
|
2023-05-18 16:40:52 +08:00
|
|
|
|
|
2023-04-08 12:07:10 +08:00
|
|
|
|
</a-card>
|
2023-04-08 10:52:46 +08:00
|
|
|
|
</a-spin>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-04-16 14:15:48 +08:00
|
|
|
|
import { ref, reactive, defineExpose, nextTick, defineProps, computed, onMounted, watch, createVNode,h } from 'vue';
|
2023-04-08 10:52:46 +08:00
|
|
|
|
import { defHttp } from '/@/utils/http/axios';
|
|
|
|
|
import { useMessage } from '/@/hooks/web/useMessage';
|
2023-04-08 18:44:10 +08:00
|
|
|
|
// import JCheckbox from "/@/components/Form/src/jeecg/components/JCheckbox.vue";
|
2023-04-08 10:52:46 +08:00
|
|
|
|
import { getValueType } from '/@/utils';
|
|
|
|
|
import { Form } from 'ant-design-vue';
|
|
|
|
|
|
|
|
|
|
import { getUserId } from '/@/views/site/utils/index';
|
2023-04-16 14:15:48 +08:00
|
|
|
|
import { Modal } from 'ant-design-vue';
|
|
|
|
|
import { ExclamationCircleOutlined,CheckOutlined } from '@ant-design/icons-vue';
|
2023-04-08 10:52:46 +08:00
|
|
|
|
|
|
|
|
|
const formRef = ref();
|
|
|
|
|
const useForm = Form.useForm;
|
|
|
|
|
const emit = defineEmits(['register', 'ok']);
|
|
|
|
|
const formData = reactive<Record<string, any>>({
|
|
|
|
|
userid: '',
|
2023-04-15 09:45:50 +08:00
|
|
|
|
kqtx: '1',
|
|
|
|
|
mrkctx: '1',
|
2023-04-08 10:52:46 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
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);
|
2023-05-18 16:40:52 +08:00
|
|
|
|
const total = ref<any>(0);
|
2023-04-08 10:52:46 +08:00
|
|
|
|
//表单验证
|
|
|
|
|
const validatorRules = {
|
|
|
|
|
};
|
|
|
|
|
const { resetFields, validate, validateInfos } = useForm(formData, validatorRules, { immediate: true });
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 新增
|
|
|
|
|
*/
|
|
|
|
|
function add() {
|
2023-06-13 16:47:57 +08:00
|
|
|
|
// getOpenId();
|
|
|
|
|
edit({});
|
2023-04-08 10:52:46 +08:00
|
|
|
|
}
|
2023-05-15 21:27:51 +08:00
|
|
|
|
function getOpenId(){
|
2023-06-13 16:47:57 +08:00
|
|
|
|
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'
|
|
|
|
|
}
|
|
|
|
|
})
|
2023-05-15 21:27:51 +08:00
|
|
|
|
}
|
2023-04-08 10:52:46 +08:00
|
|
|
|
/**
|
|
|
|
|
* 编辑
|
|
|
|
|
*/
|
|
|
|
|
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) {
|
2023-04-16 14:15:48 +08:00
|
|
|
|
|
|
|
|
|
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',
|
|
|
|
|
});
|
|
|
|
|
|
2023-04-08 10:52:46 +08:00
|
|
|
|
emit('ok');
|
|
|
|
|
} else {
|
2023-05-18 16:40:52 +08:00
|
|
|
|
if(total == 0){
|
|
|
|
|
emit('ok');
|
|
|
|
|
}else{
|
|
|
|
|
createMessage.warning(res.message);
|
|
|
|
|
}
|
2023-04-08 10:52:46 +08:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.finally(() => {
|
|
|
|
|
confirmLoading.value = false;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
defineExpose({
|
|
|
|
|
add,
|
|
|
|
|
edit,
|
|
|
|
|
submitForm,
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.antd-modal-form {
|
2023-04-08 12:07:10 +08:00
|
|
|
|
// min-height: 500px !important;
|
2023-04-08 10:52:46 +08:00
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding: 24px 24px 24px 24px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|