@@ -172,7 +163,6 @@ export default {
queryParams: {
current: 1,
size: 10,
- tenantId: '',
applicantName: '',
applicantPhone: '',
colleagueName: '',
@@ -180,7 +170,6 @@ export default {
},
form: {
id: '',
- tenantId: '',
applicantName: '',
applicantPhone: '',
applicantAge: undefined,
@@ -191,7 +180,6 @@ export default {
applicationDatetime: ''
},
formRules: {
- tenantId: [{ required: true, message: '请输入租户ID', trigger: 'blur' }],
applicantName: [{ required: true, message: '请输入申请人', trigger: 'blur' }],
applicantPhone: [{ required: true, message: '请输入申请人电话', trigger: 'blur' }]
}
@@ -227,7 +215,6 @@ export default {
const params = {
current: this.queryParams.current,
size: this.queryParams.size,
- tenantId: this.queryParams.tenantId || undefined,
applicantName: this.queryParams.applicantName || undefined,
applicantPhone: this.queryParams.applicantPhone || undefined,
colleagueName: this.queryParams.colleagueName || undefined,
@@ -246,7 +233,6 @@ export default {
this.queryParams = {
current: 1,
size: 10,
- tenantId: '',
applicantName: '',
applicantPhone: '',
colleagueName: '',
@@ -276,7 +262,6 @@ export default {
this.isEdit = true
this.form = {
id: row.id || '',
- tenantId: row.tenantId || '',
applicantName: row.applicantName || '',
applicantPhone: row.applicantPhone || '',
applicantAge: row.applicantAge === null || row.applicantAge === undefined ? undefined : Number(row.applicantAge),
@@ -320,7 +305,6 @@ export default {
},
buildPayload() {
const payload = {
- tenantId: this.form.tenantId,
applicantName: this.form.applicantName,
applicantPhone: this.form.applicantPhone,
applicantAge: this.form.applicantAge,
@@ -343,7 +327,6 @@ export default {
resetFormData() {
this.form = {
id: '',
- tenantId: '',
applicantName: '',
applicantPhone: '',
applicantAge: undefined,
diff --git a/src/views/lb-business/purchase-apply/index.vue b/src/views/lb-business/purchase-apply/index.vue
index 709d3d8..a6d60f0 100644
--- a/src/views/lb-business/purchase-apply/index.vue
+++ b/src/views/lb-business/purchase-apply/index.vue
@@ -2,9 +2,6 @@
-
-
-
@@ -40,7 +37,6 @@
-
@@ -78,11 +74,6 @@
-
-
-
-
-
@@ -153,7 +144,6 @@ export default {
queryParams: {
current: 1,
size: 10,
- tenantId: '',
applyUser: '',
applyPhone: '',
colleagueName: '',
@@ -162,7 +152,6 @@ export default {
},
form: {
id: '',
- tenantId: '',
applyUser: '',
applyPhone: '',
colleagueName: '',
@@ -170,7 +159,6 @@ export default {
applyDate: ''
},
formRules: {
- tenantId: [{ required: true, message: '请输入租户ID', trigger: 'blur' }],
applyUser: [{ required: true, message: '请输入申请人', trigger: 'blur' }],
applyPhone: [{ required: true, message: '请输入申请电话', trigger: 'blur' }]
}
@@ -206,7 +194,6 @@ export default {
const params = {
current: this.queryParams.current,
size: this.queryParams.size,
- tenantId: this.queryParams.tenantId || undefined,
applyUser: this.queryParams.applyUser || undefined,
applyPhone: this.queryParams.applyPhone || undefined,
colleagueName: this.queryParams.colleagueName || undefined,
@@ -226,7 +213,6 @@ export default {
this.queryParams = {
current: 1,
size: 10,
- tenantId: '',
applyUser: '',
applyPhone: '',
colleagueName: '',
@@ -257,7 +243,6 @@ export default {
this.isEdit = true
this.form = {
id: row.id || '',
- tenantId: row.tenantId || '',
applyUser: row.applyUser || '',
applyPhone: row.applyPhone || '',
colleagueName: row.colleagueName || '',
@@ -298,7 +283,6 @@ export default {
},
buildPayload() {
const payload = {
- tenantId: this.form.tenantId,
applyUser: this.form.applyUser,
applyPhone: this.form.applyPhone,
colleagueName: this.form.colleagueName || undefined,
@@ -318,7 +302,6 @@ export default {
resetFormData() {
this.form = {
id: '',
- tenantId: '',
applyUser: '',
applyPhone: '',
colleagueName: '',