Browse Source

no message

ly 1 year ago
parent
commit
25f763edd3

+ 9 - 0
src/api/business/production/housingFundDeclare.js

@@ -105,4 +105,13 @@ export function getMembers(data) {
     method: 'post',
     method: 'post',
     data: data
     data: data
   })
   })
+}
+
+export function getMembersNoDelete(data) {
+  request.defaults.baseURL = '/ezhizao-yzbh-production'
+  return request({
+    url: '/business/housingFundDeclare/getMembersNoDelete',
+    method: 'post',
+    data: data
+  })
 }
 }

+ 9 - 0
src/api/business/production/socialSecurityDeclare.js

@@ -104,4 +104,13 @@ export function getMembers(data) {
     method: 'post',
     method: 'post',
     data: data
     data: data
   })
   })
+}
+
+export function getMembersNoDelete(data) {
+  request.defaults.baseURL = '/ezhizao-yzbh-production'
+  return request({
+    url: '/business/socialSecurityDeclare/getMembersNoDelete',
+    method: 'post',
+    data: data
+  })
 }
 }

+ 2 - 2
src/views/business/housingFund/memberDialog.vue

@@ -157,7 +157,7 @@
 </template>
 </template>
 <script setup>
 <script setup>
 import { toRef } from "vue";
 import { toRef } from "vue";
-import { getMembers } from "@/api/business/production/housingFundDeclare";
+import { getMembers ,getMembersNoDelete} from "@/api/business/production/housingFundDeclare";
 import { rowNum } from "@/utils/index";
 import { rowNum } from "@/utils/index";
 const props = defineProps({
 const props = defineProps({
   width: {
   width: {
@@ -193,7 +193,7 @@ function close() {
 }
 }
 
 
 const getList = () => {
 const getList = () => {
-  getMembers(query.value)
+  getMembersNoDelete(query.value)
     .then((res) => {
     .then((res) => {
       list.value = res.data;
       list.value = res.data;
     })
     })

+ 2 - 2
src/views/business/socialSecurity/memberDialog.vue

@@ -178,7 +178,7 @@
 </template>
 </template>
 <script setup>
 <script setup>
 import { toRef } from "vue";
 import { toRef } from "vue";
-import { getMembers } from "@/api/business/production/socialSecurityDeclare";
+import { getMembers,getMembersNoDelete } from "@/api/business/production/socialSecurityDeclare";
 import { rowNum } from "@/utils/index";
 import { rowNum } from "@/utils/index";
 const props = defineProps({
 const props = defineProps({
   width: {
   width: {
@@ -214,7 +214,7 @@ function close() {
 }
 }
 
 
 const getList = () => {
 const getList = () => {
-  getMembers(query.value)
+  getMembersNoDelete(query.value)
     .then((res) => {
     .then((res) => {
       list.value = res.data;
       list.value = res.data;
     })
     })