This commit is contained in:
qsh
2024-07-05 15:29:18 +08:00
parent ab0c770167
commit 08ada50d1a
2 changed files with 18 additions and 18 deletions

View File

@@ -206,6 +206,15 @@ import DialogDelivery from './DialogDelivery.vue'
import { removeNullField } from '@/utils'
const userOptions = ref([])
onMounted(() => {
getUserOption().then((data) => {
userOptions.value = data
getCurdSchemas()
})
getOptions()
})
const message = useMessage() // 消息弹窗
const allSchemas = ref({})
@@ -338,15 +347,6 @@ const deliveryDialog = ref()
function handleDelivery(row) {
deliveryDialog.value.open(row)
}
const userOptions = ref([])
onMounted(() => {
getUserOption().then((data) => {
userOptions.value = data
getCurdSchemas()
})
getOptions()
})
</script>
<style lang="scss" scoped></style>

View File

@@ -182,6 +182,15 @@ import DialogExtraFee from './DialogExtraPay.vue'
import { removeNullField } from '@/utils'
const userOptions = ref([])
onMounted(() => {
getUserOption().then((data) => {
userOptions.value = data
getCurdSchemas()
})
getOptions()
})
const message = useMessage() // 消息弹窗
const allSchemas = ref({})
@@ -327,15 +336,6 @@ function getOptions() {
allPlaceOptions.value = data.placeList
})
}
const userOptions = ref([])
onMounted(() => {
getUserOption().then((data) => {
userOptions.value = data
getCurdSchemas()
})
getOptions()
})
</script>
<style lang="scss" scoped></style>