|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <el-dialog title="社保申报信息11" v-model="visible" :width="width" append-to-body draggable @close="close"
|
|
|
+ <el-dialog title="社保申报信息" v-model="visible" :width="width" append-to-body draggable @close="close"
|
|
|
:close-on-click-modal="false">
|
|
|
<div v-loading="loading">
|
|
|
<!-- <div slot="title" class="dialog-title-container">
|
|
@@ -259,7 +259,7 @@
|
|
|
const canSave = ref(false);
|
|
|
const loading = ref(false);
|
|
|
const currentMonth = ref(
|
|
|
- proxy.moment().format("YYYY-MM-01")
|
|
|
+
|
|
|
);
|
|
|
const baseUrl = ref(import.meta.env.VITE_APP_BASE_API);
|
|
|
const props = defineProps({
|
|
@@ -293,7 +293,9 @@
|
|
|
|
|
|
function open(detail) {
|
|
|
visible.value = true;
|
|
|
- currentMonth.value = proxy.moment().format("YYYY-MM-01")
|
|
|
+ console.log(12,detail.month);
|
|
|
+ // currentMonth.value = proxy.moment().format("YYYY-MM-01")
|
|
|
+ currentMonth.value = detail.year + "-" + detail.month + "-01"
|
|
|
form.value = detail;
|
|
|
loadData();
|
|
|
}
|