Compare commits

..

No commits in common. "ae9fcf8996a7e63f0111ad8c17a75c8ff28dfeac" and "af0a5039eb988b7dd572dece0e8b3453c0ef5fd8" have entirely different histories.

11 changed files with 261 additions and 264 deletions

View File

@ -11,9 +11,9 @@
:rules="rules" :rules="rules"
ref="ruleFormRef" ref="ruleFormRef"
> >
<el-form-item label="规则标题:" prop="title"> <el-form-item label="规则标题:" prop="name">
<el-input <el-input
v-model="addForm.title" v-model="addForm.name"
placeholder="请输入规则标题" placeholder="请输入规则标题"
clearable clearable
:disabled="type === 'I' ? false: true" :disabled="type === 'I' ? false: true"
@ -46,12 +46,9 @@ export default {
setup(props, ctx) { setup(props, ctx) {
const ruleFormRef = ref(null); const ruleFormRef = ref(null);
const state = reactive({ const state = reactive({
addForm: { addForm: {},
title: '',
description: ''
},
rules: { rules: {
title: [ name: [
{ required: true, message: "请输入规则标题", trigger: "blur" } { required: true, message: "请输入规则标题", trigger: "blur" }
], ],
description: [ description: [
@ -66,7 +63,7 @@ export default {
return props.type; return props.type;
}); });
onMounted(() => { onMounted(() => {
state.addForm = props.formData; // state.addForm = props.formData;
}); });
const closeDialog = () => { const closeDialog = () => {

View File

@ -97,8 +97,8 @@ export default {
if (ret.code == 0) { if (ret.code == 0) {
// //
// state.tableData = rule_info.decode(ret.data); console.log(rule.decode(ret.data));
// console.log(rule_info.decode(ret.data)); state.tableData = rule.decode(ret.data);
} else { } else {
console.log(res); console.log(res);
} }
@ -138,13 +138,13 @@ export default {
}; };
// //
const addData = () => { const addData = () => {
state.dialogVisible = true;
// //
state.formData = { state.formData = {
title: '', title: '',
description: '' description: ''
} }
state.type = 'I'; state.type = 'I';
state.dialogVisible = true;
}; };
// //
const changeStatus = async (item) => { const changeStatus = async (item) => {

View File

@ -24,8 +24,8 @@ export default ({ mode }) => defineConfig({
server: { server: {
proxy: { proxy: {
'/api': { '/api': {
target: 'http://frp.shikicc.com:58951', // target: 'http://api.shikicc.com:58909',
// target: 'http://10.10.14.123', target: 'http://10.10.14.247',
// target: 'https://cdcmapi.shikicc.com', // target: 'https://cdcmapi.shikicc.com',
changeOrigin: true, changeOrigin: true,
rewrite: path => path.replace(/^\/api/, '/api') rewrite: path => path.replace(/^\/api/, '/api')