This commit is contained in:
weipengfei 2024-06-11 18:09:09 +08:00
parent 9d0ac77540
commit b5c7d38731
1 changed files with 3 additions and 3 deletions

View File

@ -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: [],