This commit is contained in:
parent
9d0ac77540
commit
b5c7d38731
|
@ -47,7 +47,7 @@
|
|||
</el-form-item>
|
||||
<el-form-item label="到店自提" prop="is_store">
|
||||
<el-switch v-model="formDataInfo.is_store" :active-value="1" :inactive-value="0" active-text="开启"
|
||||
inactive-text="关闭" inline-prompt />
|
||||
inactive-text="关闭" inline-prompt disabled />
|
||||
</el-form-item>
|
||||
<el-form-item label="快递配送" prop="is_send">
|
||||
<el-switch v-model="formDataInfo.is_send" :active-value="1" :inactive-value="0" active-text="开启"
|
||||
|
@ -102,7 +102,7 @@ const formData = reactive({
|
|||
is_show: 1,
|
||||
password: "",
|
||||
staff_name: "",
|
||||
is_store: 0,
|
||||
is_store: 1,
|
||||
is_send: 0
|
||||
})
|
||||
|
||||
|
@ -116,7 +116,7 @@ const formDataInfo = reactive({
|
|||
is_show: 1,
|
||||
password: "",
|
||||
staff_name: "",
|
||||
is_store: 0,
|
||||
is_store: 1,
|
||||
is_send: 0,
|
||||
coord: '',
|
||||
startEndTime: [],
|
||||
|
|
Loading…
Reference in New Issue