main
parent
9d95569c3d
commit
b734e6745f
|
@ -11,9 +11,9 @@
|
|||
:rules="rules"
|
||||
ref="ruleFormRef"
|
||||
>
|
||||
<el-form-item label="规则标题:" prop="name">
|
||||
<el-form-item label="规则标题:" prop="title">
|
||||
<el-input
|
||||
v-model="addForm.name"
|
||||
v-model="addForm.title"
|
||||
placeholder="请输入规则标题"
|
||||
clearable
|
||||
:disabled="type === 'I' ? false: true"
|
||||
|
@ -46,9 +46,12 @@ export default {
|
|||
setup(props, ctx) {
|
||||
const ruleFormRef = ref(null);
|
||||
const state = reactive({
|
||||
addForm: {},
|
||||
addForm: {
|
||||
title: '',
|
||||
description: ''
|
||||
},
|
||||
rules: {
|
||||
name: [
|
||||
title: [
|
||||
{ required: true, message: "请输入规则标题", trigger: "blur" }
|
||||
],
|
||||
description: [
|
||||
|
@ -63,7 +66,7 @@ export default {
|
|||
return props.type;
|
||||
});
|
||||
onMounted(() => {
|
||||
// state.addForm = props.formData;
|
||||
state.addForm = props.formData;
|
||||
});
|
||||
|
||||
const closeDialog = () => {
|
||||
|
|
|
@ -97,8 +97,8 @@ export default {
|
|||
|
||||
if (ret.code == 0) {
|
||||
// 获取数据
|
||||
state.tableData = rule_info.decode(ret.data);
|
||||
console.log(rule_info.decode(ret.data));
|
||||
// state.tableData = rule_info.decode(ret.data);
|
||||
// console.log(rule_info.decode(ret.data));
|
||||
} else {
|
||||
console.log(res);
|
||||
}
|
||||
|
@ -138,13 +138,13 @@ export default {
|
|||
};
|
||||
// 新增
|
||||
const addData = () => {
|
||||
state.dialogVisible = true;
|
||||
//清空数据
|
||||
state.formData = {
|
||||
title: '',
|
||||
description: ''
|
||||
}
|
||||
state.type = 'I';
|
||||
state.dialogVisible = true;
|
||||
};
|
||||
// 启用停用
|
||||
const changeStatus = async (item) => {
|
||||
|
|
|
@ -24,7 +24,7 @@ export default ({ mode }) => defineConfig({
|
|||
server: {
|
||||
proxy: {
|
||||
'/api': {
|
||||
target: 'http://api.shikicc.com:58909',
|
||||
target: 'http://frp.shikicc.com:58951',
|
||||
// target: 'http://10.10.14.123',
|
||||
// target: 'https://cdcmapi.shikicc.com',
|
||||
changeOrigin: true,
|
||||
|
|
Loading…
Reference in New Issue