电子面单前端页面

This commit is contained in:
chc
2022-08-31 17:27:09 +08:00
parent 32336decc6
commit 9ce3a5e916
3 changed files with 326 additions and 130 deletions

View File

@@ -10,6 +10,9 @@
<FormItem label="reqURL" prop="reqURL">
<Input v-model="formValidate.reqURL" />
</FormItem>
<FormItem label="电子面单URL" prop="sheetReqURL">
<Input v-model="formValidate.sheetReqURL" />
</FormItem>
<div class="label-btns">
<Button type="primary" @click="submit('formValidate')">保存</Button>
@@ -24,7 +27,7 @@ export default {
data() {
return {
ruleValidate: {}, // 验证规则
formValidate: { ebusinessID: "", reqURL: "", appKey: "" }, // 表单数据
formValidate: { ebusinessID: "", reqURL: "", appKey: "" ,sheetReqURL: "" ,}, // 表单数据
};
},
props: ["res",'type'],