|
@@ -196,7 +196,7 @@ const onConfirm1 = (value) => {
|
|
|
const date = new Date();
|
|
|
const currentDate = ref<string[]>([date.getFullYear().toString(), (date.getMonth() + 1).toString(), date.getDate().toString()])
|
|
|
const onConfirm2 = (value) => {
|
|
|
- formData.value.agreedPayTime = value.selectedValues[0];
|
|
|
+ formData.value.agreedPayTime = value.selectedValues[0]+"-"+value.selectedValues[1]+"-"+value.selectedValues[2]
|
|
|
showPicker2.value = false;
|
|
|
};
|
|
|
const showPickerClick = (value) => {
|
|
@@ -259,9 +259,7 @@ const initFormData = async () => {
|
|
|
const searchXmmc = ref<string>('')
|
|
|
const getProjectList = async () => {
|
|
|
const result = await reqest.post(`/business/project/getListByUser`, {
|
|
|
- data: {
|
|
|
- xmmc: searchXmmc.value
|
|
|
- }
|
|
|
+ xmmc: searchXmmc.value
|
|
|
});
|
|
|
columns = result.data;
|
|
|
};
|