feature_0521
郑皇 5 years ago
parent 36fadd8644
commit ee69ee4f78

@ -106,6 +106,9 @@
</Modal> </Modal>
<Modal v-model="showMini" title="添加小程序消息" :loading="true"> <Modal v-model="showMini" title="添加小程序消息" :loading="true">
<Form ref="miniForm" :model="miniForm" :rules="miniFormRules"> <Form ref="miniForm" :model="miniForm" :rules="miniFormRules">
<FormItem label="标题" prop="key">
<i-input v-model="miniForm.key" type="text" placeholder="请输入标题"></i-input>
</FormItem>
<FormItem label="APPID" prop="appid"> <FormItem label="APPID" prop="appid">
<i-input v-model="miniForm.appid" type="text" placeholder="请输入appid"></i-input> <i-input v-model="miniForm.appid" type="text" placeholder="请输入appid"></i-input>
</FormItem> </FormItem>
@ -197,9 +200,10 @@ export default {
webForm: { url: "" }, webForm: { url: "" },
miniFormRules: { miniFormRules: {
appid: [{ required: true, message: "请输入url", trigger: "blur" }], appid: [{ required: true, message: "请输入url", trigger: "blur" }],
uri: [{ required: true, message: "请输入url", trigger: "blur" }] uri: [{ required: true, message: "请输入url", trigger: "blur" }],
key: [{ required: true, message: "请输入url", trigger: "blur" }]
}, },
miniForm: { appid: "", uri: "", limitLower: "", limitUpper: "" } miniForm: { appid: "", uri: "", limitLower: "", limitUpper: "", key: "" }
}; };
}, },
watch: { watch: {

Loading…
Cancel
Save