diff --git a/admin-web-master/src/api/inr.js b/admin-web-master/src/api/inr.js
index 03cca2c..ddfd437 100644
--- a/admin-web-master/src/api/inr.js
+++ b/admin-web-master/src/api/inr.js
@@ -28,3 +28,12 @@ export function tanDel(data) {
data
})
}
+// 谈判列表导出
+export function excelQueryByPage(data) {
+ return request({
+ url: '/cereNegotiationDetails/excelQueryByPage',
+ method: 'post',
+ data,
+ responseType:blob
+ })
+}
diff --git a/admin-web-master/src/views/ipm/inr/index.vue b/admin-web-master/src/views/ipm/inr/index.vue
index 4cff704..3d85b9f 100644
--- a/admin-web-master/src/views/ipm/inr/index.vue
+++ b/admin-web-master/src/views/ipm/inr/index.vue
@@ -626,24 +626,10 @@ const res = await tanGetAll(this.formSel)
await tanDel({id:item.id})
this.getAll()
},
- gitOut(){
- let add =[]
- this.tableData.map(item=>{
-
- let obj ={
- intentCustomerName:'',
- customerLevel:'',
- contactPhone:'',
- nextFollowUpStartTime:''
- }
- obj.intentCustomerName = item.cereFollowDetails.cereCustomerInfo.intentCustomerName
- obj.contactPhone = item.cereFollowDetails.cereCustomerInfo.contactPhone
- obj.customerLevel = item.cereFollowDetails.cereCustomerInfo.customerLevel
- obj.nextFollowUpStartTime = item.nextNegotiationStartTime
- add.push(obj)
-
- })
- },
+ // async gitOut(){
+ // await excelQueryByPage(this.pageindex)
+
+ // },
}
}
diff --git a/wenjuan/.env.development b/wenjuan/.env.development
index 68dc6bb..5986f04 100644
--- a/wenjuan/.env.development
+++ b/wenjuan/.env.development
@@ -3,12 +3,12 @@ ENV = 'development'
# base api
VUE_APP_BASE_API = '/dev-api'
-# VUE_APP_DOMAIN_PREFIX_1='http://192.168.2.133:9003'
-# VUE_APP_DOMAIN_PREFIX_2='http://192.168.2.133:9007'
+ VUE_APP_DOMAIN_PREFIX_1='http://192.168.2.7:9003'
+ VUE_APP_DOMAIN_PREFIX_2='http://192.168.2.7:9007'
# VUE_APP_DOMAIN_PREFIX_1='https://h5.028wlkj.com/cdwlMall/meserver/admin-server/'
# VUE_APP_DOMAIN_PREFIX_2='https://h5.028wlkj.com/cdwlMall/meserver/api'
- VUE_APP_DOMAIN_PREFIX_1='https://jy.scjysm.asia:18086/meserver/admin-server/'
- VUE_APP_DOMAIN_PREFIX_2='https://jy.scjysm.asia:18086/meserver/api'
+# VUE_APP_DOMAIN_PREFIX_1='http://jy.scjysm.asia:18086/meserver/admin-server/'
+# VUE_APP_DOMAIN_PREFIX_2='https://jy.scjysm.asia:18086/meserver/api'
# 开发环境
# 演示环境
# VUE_APP_DOMAIN_PREFIX = '/api'
diff --git a/yanshouban/src/api/activityBz.js b/yanshouban/src/api/activityBz.js
index c25c87c..de78c29 100644
--- a/yanshouban/src/api/activityBz.js
+++ b/yanshouban/src/api/activityBz.js
@@ -205,3 +205,35 @@ export function copy(data) {
data
})
}
+
+
+// 审核流程导出
+export function excelQueryByPage(data) {
+ return request({
+ url: '/cereEventDetails/excelQueryByPage',
+ method: 'post',
+ data,
+ responseType: 'blob'
+ })
+}
+
+// 导入
+export function excelAdd(data) {
+ return request({
+ url: '/cereEventDetails/excelAdd',
+ method: 'post',
+ data,
+ headers: {
+ 'Content-type': 'multipart/form-data'
+ }
+ })
+}
+
+// 效果评估
+export function effectEvaluation(data) {
+ return request({
+ url: `/cereEventDetails/effectEvaluation/${data.id}`,
+ method: 'get',
+ data
+ })
+}
diff --git a/yanshouban/src/api/business.js b/yanshouban/src/api/business.js
index 7a95d7e..da1f9e4 100644
--- a/yanshouban/src/api/business.js
+++ b/yanshouban/src/api/business.js
@@ -145,3 +145,16 @@ export function wordDelete(data) {
data
})
}
+
+
+// 导入商家
+export function excelAdd(data) {
+ return request({
+ url: '/cereBasicInformationShop/excelAdd',
+ method: 'post',
+ data,
+ headers: {
+ 'Content-type': 'multipart/form-data'
+ }
+ })
+}
diff --git a/yanshouban/src/api/fangli.js b/yanshouban/src/api/fangli.js
index b610121..e56303f 100644
--- a/yanshouban/src/api/fangli.js
+++ b/yanshouban/src/api/fangli.js
@@ -34,3 +34,15 @@ export function fangDel(data) {
data
})
}
+
+// 导入管理模板
+export const excelAdd = (data = {}) => {
+ return request({
+ url: '/cereBusinessPlan/excelAdd',
+ method: 'post',
+ data,
+ headers: {
+ 'Content-type': 'multipart/form-data'
+ }
+ })
+}
diff --git a/yanshouban/src/api/inr.js b/yanshouban/src/api/inr.js
index 03cca2c..efa6965 100644
--- a/yanshouban/src/api/inr.js
+++ b/yanshouban/src/api/inr.js
@@ -28,3 +28,12 @@ export function tanDel(data) {
data
})
}
+// 谈判列表导出
+export function excelQueryByPage(data) {
+ return request({
+ url: '/cereNegotiationDetails/excelQueryByPage',
+ method: 'post',
+ data,
+ responseType: 'blob'
+ })
+}
diff --git a/yanshouban/src/api/manage.js b/yanshouban/src/api/manage.js
index eb8929c..ccad9ae 100644
--- a/yanshouban/src/api/manage.js
+++ b/yanshouban/src/api/manage.js
@@ -85,3 +85,36 @@ export function daoqi(data) {
data
})
}
+// 退租决算打印
+
+export function pdfManagementOfFinalAccountsForRentals(data) {
+ return request({
+ url: '/cereLeasingInformation/pdfManagementOfFinalAccountsForRentals',
+ method: 'post',
+ data,
+ responseType: 'blob'
+ })
+}
+// 续租管理打印
+
+export function pdfLeaseRenewalManagement(data) {
+ return request({
+ url: '/cereLeasingInformation/pdfLeaseRenewalManagement',
+ method: 'post',
+ data,
+ responseType: 'blob'
+ })
+}
+
+// 合同导入
+
+export function excelAdd(data) {
+ return request({
+ url: '/cereContractInformation/excelAdd',
+ method: 'post',
+ data,
+ headers: {
+ 'Content-type': 'multipart/form-data'
+ }
+ })
+}
diff --git a/yanshouban/src/api/planningBz.js b/yanshouban/src/api/planningBz.js
index dfa0d98..7cb3901 100644
--- a/yanshouban/src/api/planningBz.js
+++ b/yanshouban/src/api/planningBz.js
@@ -44,3 +44,15 @@ export function queryById(data) {
})
}
+// 导入规划模板
+export const excelAdd = (data = {}) => {
+ return request({
+ url: '/cereInvestmentPlanningManagement/excelAdd',
+ method: 'post',
+ data,
+ headers: {
+ 'Content-type': 'multipart/form-data'
+ }
+ })
+}
+
diff --git a/yanshouban/src/api/rentalMan.js b/yanshouban/src/api/rentalMan.js
index 92585f6..b64a963 100644
--- a/yanshouban/src/api/rentalMan.js
+++ b/yanshouban/src/api/rentalMan.js
@@ -51,3 +51,13 @@ export function excelLeaseRenewalManagement(data) {
responseType: 'blob'
})
}
+
+// PDF打印
+export function pdfRentOutQueryByPage(data) {
+ return request({
+ url: '/cereLeasingInformation/pdfRentOutQueryByPage',
+ method: 'post',
+ data,
+ responseType: 'blob'
+ })
+}
diff --git a/yanshouban/src/utils/jiami.js b/yanshouban/src/utils/jiami.js
index b914a7e..af9895c 100644
--- a/yanshouban/src/utils/jiami.js
+++ b/yanshouban/src/utils/jiami.js
@@ -1,7 +1,7 @@
// 文本加密
import { sm4 } from 'sm-crypto';
-const DEFAULT_KEY ="cda4442f102f6396cca76902e37ad7cb";
-const DEFAULT_IV = "8bd8a83221742166c7532b7275a7fe9c";
+const DEFAULT_KEY ="cda4442f102f6396eea76902e37ad7cb";
+const DEFAULT_IV = "8bd8a83221742111c7532b7275a7fe9c";
export const encrypt = (str) => {
if(!str) {
return ''
@@ -11,7 +11,7 @@ export const encrypt = (str) => {
mode: 'cbc',
padding: 'pkcs#7'
})
- return 'ENC(' + encryptStr + ')'
+ return encryptStr
}
// 文本解密
@@ -19,12 +19,12 @@ export const decrypt = (str) => {
if(!str) {
return ''
}
- if(str.indexOf('ENC(') === -1) {
- return str
- }
- const str_ = str.replace('ENC(', '').replace(')', '')
+// if(str.indexOf('ENC(') === -1) {
+// return str
+// }
+// const str_ = str.replace('ENC(', '').replace(')', '')
try {
- const decryptStr = sm4.decrypt(str_, DEFAULT_KEY, {
+ const decryptStr = sm4.decrypt(str, DEFAULT_KEY, {
iv: DEFAULT_IV,
mode: 'cbc',
padding: 'pkcs#7'
diff --git a/yanshouban/src/utils/request.js b/yanshouban/src/utils/request.js
index ccc88a8..45810fa 100644
--- a/yanshouban/src/utils/request.js
+++ b/yanshouban/src/utils/request.js
@@ -11,9 +11,9 @@ import {
} from '@/utils/auth'
const host = window.location.host;
let PREFIX;
-if (host == '172.16.61.48' || host == '172.16.61.49 :5173' || host =='172.16.61.123:9003') {
+if (host == '172.16.61.48' || host == '172.16.61.49:5173' || host =='172.16.61.123:9003') {
// PREFIX = 'https://jdc.scjysm.asia:1443/meserver/admin-server';
- PREFIX = 'https://jy.scjysm.asia:18086/meserver/admin-server';
+ PREFIX = 'https://jy.scjysm.asia:18086/admin-server';
// PREFIX = 'http://172.16.61.126:8080/meserver/admin-server';
// PREFIX = 'http://172.16.61.48/meserver/admin-server';
}else if( host == 'localhost:9528' || host == '8.130.38.56:8027' || host == 'localhost:9529'){
@@ -21,14 +21,14 @@ if (host == '172.16.61.48' || host == '172.16.61.49 :5173' || host =='172.16.61.
// PREFIX = 'http://172.16.61.48/meserver/admin-server';
// PREFIX = 'http://192.168.2.213:9003';
// PREFIX = 'http://8.130.38.56:8019/admin-server';
- PREFIX = 'http://192.168.8.106:9003';
+ PREFIX = 'http://192.168.2.7:9003';
// PREFIX = 'https://wjdc.scjysm.asia:1443/meserver/admin-server';
// PREFIX = 'https://jy.scjysm.asia:18086/admin-server';
// PREFIX = 'http://172.16.61.126:8080/meserver/admin-server';
// PREFIX = 'https://wjdc.scjysm.asia:1443/meserver/admin-server'
}else{
- PREFIX = '/admin-server';
+ PREFIX = 'https://jy.scjysm.asia:18086/admin-server';
}
diff --git a/yanshouban/src/views/active/couponlist/component/shopList.vue b/yanshouban/src/views/active/couponlist/component/shopList.vue
index 15cbb93..0af7772 100644
--- a/yanshouban/src/views/active/couponlist/component/shopList.vue
+++ b/yanshouban/src/views/active/couponlist/component/shopList.vue
@@ -116,7 +116,6 @@ export default {
search () {
},
- // businessListGetAll
// 初始化查询所有数据
async getAll(formInline) {
const res = await businessListGetAll(formInline)
@@ -124,7 +123,7 @@ export default {
this.tableData = res.data.list
this.tableData.map(res=>{
res.shopPhone = this.$decrypt(res.shopPhone)
- res.shopPassword = this.$decrypt(res.shopPassword)
+ // res.shopPassword = this.$decrypt(res.shopPassword)
res.idCardNum = this.$decrypt(res.idCardNum)
res.emailAddress = this.$decrypt(res.emailAddress)
res.shopAdress = this.$decrypt(res.shopAdress)
diff --git a/yanshouban/src/views/activity/activityBian.vue b/yanshouban/src/views/activity/activityBian.vue
index 0445476..ee031a7 100644
--- a/yanshouban/src/views/activity/activityBian.vue
+++ b/yanshouban/src/views/activity/activityBian.vue
@@ -69,6 +69,16 @@
+