内部人力
@@ -1938,6 +1975,10 @@
this.tableData = res.data.content
},
formatTimestampToDate(timestamp) {
+ console.log(timestamp,'timestamp')
+ if(timestamp == undefined ){
+ return ''
+ }
const date = new Date(timestamp);
const year = date.getFullYear();
const month = String(date.getMonth() + 1).padStart(2, '0');
@@ -1945,7 +1986,7 @@
const hours = String(date.getHours()).padStart(2, '0');
const minutes = String(date.getMinutes()).padStart(2, '0');
const seconds = String(date.getSeconds()).padStart(2, '0');
- return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
+ return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`
},
//重置按钮
resetting() {
@@ -1987,10 +2028,10 @@
}).then(res => {
this.effectivenessList = res.data
// let actName = this.effectivenessList.operationType.split('')
- this.effectivenessList.map((item, index) => {
- let actName = item.operationType.split(' ')
- this.effectivenessList[index].operationType = actName[0]
- })
+ // this.effectivenessList.map((item, index) => {
+ // let actName = item.operationType.split(' ')
+ // this.effectivenessList[index].operationType = actName[0]
+ // })
// console.log(this.effectivenessList.operationType,'actName')
// this.effectivenessList.operationType = actName[0]
})
@@ -2026,7 +2067,7 @@
} //执行效果列表
actPage({
detailsId: item.id,
- pageNumber: 1,
+ pageNumber: 0,
pageSize: 10,
}).then(res => {
console.log(res.data.content)
@@ -2172,7 +2213,7 @@
const minutes = now.getMinutes().toString().padStart(2, '0');
const seconds = now.getSeconds().toString().padStart(2, '0');
- return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
+ return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`
},
handleCurrentChange(val) {
@@ -2301,7 +2342,7 @@
let that = this
actPage({
detailsId: this.multipleSelection[0].id,
- pageNumber: 1,
+ pageNumber: 0,
pageSize: 10,
}).then(res => {
this.duibiTwo = res.data.content[0] === undefined ? {} : res.data.content[0];
@@ -2360,7 +2401,7 @@ this.ListOne = item.planName
// actPage({
// detailsId: item.id,
- // pageNumber: 1,
+ // pageNumber: 0,
// pageSize: 10,
// }).then(res => {
// this.duibiTwo = res.data.content[0] === undefined ? {} : res.data.content[0];
@@ -2548,7 +2589,7 @@ this.ListOne = item.planName
// this.lishiList = e
let msg = this.effectivenessList[e]
// this.duibiList = JSON.parse(msg.modifyContent)
-
+
this.duibiList = JSON.parse(msg.modifiedData)
},
@@ -2756,6 +2797,7 @@ this.ListOne = item.planName
this.zhixingList.eventEndTime = this.zhixingList.planTime[1]
this.zhixingList.detailsId = this.secondData.id
this.zhixingList.createDate = this.updateCurrentTime()
+ this.zhixingList.createUser = localStorage.getItem('roleName')
actAdd(this.zhixingList).then(res => {
for (let i = 0; i < this.tableDa.length; i++) {
this.tableDa[i].detailsId = res.data.id
@@ -2772,7 +2814,9 @@ this.ListOne = item.planName
this.zhixingList.eventStartTime = this.zhixingList.planTime[0]
this.zhixingList.eventEndTime = this.zhixingList.planTime[1]
Vue.delete(that.zhixingList, 'planTime')
- this.zhixingList.updateDate = ''
+ // this.zhixingList.updateDate = ''
+ this.zhixingList.updateDate = this.updateCurrentTime()
+ this.zhixingList.updateUser = localStorage.getItem('roleName')
actEdit(this.zhixingList).then(() => {
this.ggXin = false
this.getAll()
diff --git a/admin-web-master/src/views/activity/activitySp.vue b/admin-web-master/src/views/activity/activitySp.vue
index d85df11..c9f8c23 100644
--- a/admin-web-master/src/views/activity/activitySp.vue
+++ b/admin-web-master/src/views/activity/activitySp.vue
@@ -1524,7 +1524,7 @@
} //执行效果列表
actPage({
detailsId: item.id,
- pageNumber: 1,
+ pageNumber: 0,
pageSize: 10,
}).then(res => {
console.log(res.data.content)
diff --git a/admin-web-master/src/views/activity/index.vue b/admin-web-master/src/views/activity/index.vue
index 8cd4000..eb6435f 100644
--- a/admin-web-master/src/views/activity/index.vue
+++ b/admin-web-master/src/views/activity/index.vue
@@ -1503,7 +1503,7 @@
} //执行效果列表
actPage({
detailsId: item.id,
- pageNumber: 1,
+ pageNumber: 0,
pageSize: 10,
}).then(res => {
console.log(res.data.content)
@@ -1671,14 +1671,17 @@
this.zhixingList.eventEndTime = this.zhixingList.planTime[1]
this.zhixingList.detailsId = this.secondData.id
this.zhixingList.createDate = this.updateCurrentTime()
+ this.zhixingList.createUser = localStorage.getItem('roleName')
actAdd(this.zhixingList).then(res => {
for (let i = 0; i < this.tableDa.length; i++) {
this.tableDa[i].detailsId = res.data.id
MingAdd(this.tableDa[i]).then(res => {
- this.ggXin = false
- this.getAll()
+
})
}
+ this.ggXin = false
+ this.zhixingBian = false
+ this.getAll()
})
} else {
@@ -1687,9 +1690,11 @@
this.zhixingList.eventStartTime = this.zhixingList.planTime[0]
this.zhixingList.eventEndTime = this.zhixingList.planTime[1]
Vue.delete(that.zhixingList, 'planTime')
- this.zhixingList.updateDate = ''
+ this.zhixingList.updateDate = this.updateCurrentTime()
+ this.zhixingList.updateUser = localStorage.getItem('roleName')
actEdit(this.zhixingList).then(()=>{
this.ggXin = false
+ this.zhixingBian = false
this.getAll()
})
}
@@ -1870,7 +1875,7 @@
let that = this
actPage({
detailsId: this.multipleSelection[0].id,
- pageNumber: 1,
+ pageNumber: 0,
pageSize: 10,
}).then(res => {
this.duibiTwo = res.data.content[0] === undefined ? {} : res.data.content[0];
@@ -2323,13 +2328,13 @@
const pdf = new jsPDF('p', 'mm', 'a4');
// 添加图像到 PDF,第二个参数是图像格式,第三个参数是缩放比例
- const imgWidth = 190; // 图像的宽度(mm)
- const imgHeight = (canvas.height * imgWidth) / canvas.width; // 保持图像的宽高比
+ const imgWidth = 190 // 图像的宽度(mm)
+ const imgHeight = (canvas.height * imgWidth) / canvas.width // 保持图像的宽高比
- pdf.addImage(imgData, 'PNG', 10, 10, imgWidth, imgHeight); // 10, 10 是图像在 PDF 中的位置(mm)
+ pdf.addImage(imgData, 'PNG', 10, 10, imgWidth, imgHeight) // 10, 10 是图像在 PDF 中的位置(mm)
// 保存 PDF 文件
- pdf.save('活动方案.pdf');
+ pdf.save('活动方案.pdf')
},
peizhi(item) {
this.peiForm = {
diff --git a/admin-web-master/src/views/atmosphere/atmosphereGl.vue b/admin-web-master/src/views/atmosphere/atmosphereGl.vue
index 153550f..90ab818 100644
--- a/admin-web-master/src/views/atmosphere/atmosphereGl.vue
+++ b/admin-web-master/src/views/atmosphere/atmosphereGl.vue
@@ -1553,9 +1553,10 @@
this.zhixingList.eventEndTime = this.zhixingList.planTime[1]
this.zhixingList.detailsId = this.secondData.id
this.zhixingList.createDate = this.updateCurrentTime()
+ this.zhixingList.createUser = localStorage.getItem('roleName')
actAdd(this.zhixingList).then(()=>{
- this.ggXin = false
- this.getAll()
+ this.ggXin = false
+ this.getAll()
})
} else {
let that = this
@@ -1563,7 +1564,8 @@
this.zhixingList.eventStartTime = this.zhixingList.planTime[0]
this.zhixingList.eventEndTime = this.zhixingList.planTime[1]
Vue.delete(that.zhixingList, 'planTime')
- this.zhixingList.updateDate = ''
+ this.zhixingList.updateDate = this.updateCurrentTime()
+ this.zhixingList.updateUser = localStorage.getItem('roleName')
actEdit(this.zhixingList).then(()=>{
this.ggXin = false
this.getAll()
@@ -1612,7 +1614,7 @@
} //执行效果列表
actPage({
detailsId: item.id,
- pageNumber: 1,
+ pageNumber: 0,
pageSize: 10,
}).then(res => {
console.log(res.data.content)
@@ -2167,7 +2169,7 @@
let that = this
actPage({
detailsId: this.multipleSelection[0].id,
- pageNumber: 1,
+ pageNumber: 0,
pageSize: 10,
}).then(res => {
this.duibiTwo = res.data.content[0] === undefined ? {} : res.data.content[0];
diff --git a/admin-web-master/src/views/atmosphere/atmosphereHis.vue b/admin-web-master/src/views/atmosphere/atmosphereHis.vue
index 6a52a0b..cae3332 100644
--- a/admin-web-master/src/views/atmosphere/atmosphereHis.vue
+++ b/admin-web-master/src/views/atmosphere/atmosphereHis.vue
@@ -1225,7 +1225,7 @@
-
实际成本
+
预估成本
内部人力
@@ -1972,10 +1972,10 @@
activityEffectivenessId: item.id
}).then(res => {
this.effectivenessList = res.data
- this.effectivenessList.map((item, index) => {
- let actName = item.operationType.split(' ')
- this.effectivenessList[index].operationType = actName[0]
- })
+ // this.effectivenessList.map((item, index) => {
+ // let actName = item.operationType.split(' ')
+ // this.effectivenessList[index].operationType = actName[0]
+ // })
})
this.liData = []
this.lixiang = {}
@@ -2006,7 +2006,7 @@
} //执行效果列表
actPage({
detailsId: item.id,
- pageNumber: 1,
+ pageNumber: 0,
pageSize: 10,
}).then(res => {
console.log(res.data.content)
@@ -2281,7 +2281,7 @@
let that = this
actPage({
detailsId: this.multipleSelection[0].id,
- pageNumber: 1,
+ pageNumber: 0,
pageSize: 10,
}).then(res => {
this.duibiTwo = res.data.content[0] === undefined ? {} : res.data.content[0];
@@ -2343,7 +2343,7 @@ this.ListOne = item.planName
// let that = this
// actPage({
// detailsId: item.id,
- // pageNumber: 1,
+ // pageNumber: 0,
// pageSize: 10,
// }).then(res => {
// this.duibiTwo = res.data.content[0] === undefined ? {} : res.data.content[0];
@@ -2736,6 +2736,7 @@ this.ListOne = item.planName
this.zhixingList.eventEndTime = this.zhixingList.planTime[1]
this.zhixingList.detailsId = this.secondData.id
this.zhixingList.createDate = this.updateCurrentTime()
+ this.zhixingList.createUser = localStorage.getItem('roleName')
actAdd(this.zhixingList).then(() => {
this.ggXin = false
this.getAll()
@@ -2746,7 +2747,8 @@ this.ListOne = item.planName
this.zhixingList.eventStartTime = this.zhixingList.planTime[0]
this.zhixingList.eventEndTime = this.zhixingList.planTime[1]
Vue.delete(that.zhixingList, 'planTime')
- this.zhixingList.updateDate = ''
+ this.zhixingList.updateDate = this.updateCurrentTime()
+ this.zhixingList.updateUser = localStorage.getItem('roleName')
actEdit(this.zhixingList).then(() => {
this.ggXin = false
this.getAll()
diff --git a/admin-web-master/src/views/atmosphere/atmosphereSp.vue b/admin-web-master/src/views/atmosphere/atmosphereSp.vue
index 1dd65e2..4a5c5e2 100644
--- a/admin-web-master/src/views/atmosphere/atmosphereSp.vue
+++ b/admin-web-master/src/views/atmosphere/atmosphereSp.vue
@@ -1575,7 +1575,7 @@
}//执行效果列表
actPage({
detailsId:item.id,
- pageNumber: 1,
+ pageNumber: 0,
pageSize: 10,
}).then(res=>{
console.log(res.data.content)
diff --git a/admin-web-master/src/views/online/summaryQuery/index.vue b/admin-web-master/src/views/online/summaryQuery/index.vue
index 1c8a82e..a5f65b6 100644
--- a/admin-web-master/src/views/online/summaryQuery/index.vue
+++ b/admin-web-master/src/views/online/summaryQuery/index.vue
@@ -124,7 +124,7 @@
>
-
{{scope.row.businessStartDate}}-{{scope.row.businessEndDate}}
-
+ -->
待发货
已发货
已完成
- 已关闭
+ 已关闭
+ 待成团
+ 待售后
+ 已退款
diff --git a/admin-web-master/src/views/order/ordersel/pendDetails.vue b/admin-web-master/src/views/order/ordersel/pendDetails.vue
index ac1e7f6..7f682fe 100644
--- a/admin-web-master/src/views/order/ordersel/pendDetails.vue
+++ b/admin-web-master/src/views/order/ordersel/pendDetails.vue
@@ -27,6 +27,9 @@
待收货
已完成
已取消
+
待成团
+
待售后
+
已退款
售后状态:
diff --git a/admin-web-master/src/views/renovation/commoditySystem/addCommodity.vue b/admin-web-master/src/views/renovation/commoditySystem/addCommodity.vue
index 9526014..c986231 100644
--- a/admin-web-master/src/views/renovation/commoditySystem/addCommodity.vue
+++ b/admin-web-master/src/views/renovation/commoditySystem/addCommodity.vue
@@ -15,7 +15,7 @@
商品名称:{{ productItem.productName }}
- 商品卖点:{{ productItem.productBrief }}
+ 商品卖点:{{ productItem.productBrief }}
商品图片:
diff --git a/admin-web-master/src/views/serve/salesReport.vue b/admin-web-master/src/views/serve/salesReport.vue
index 40639a6..8d80aef 100644
--- a/admin-web-master/src/views/serve/salesReport.vue
+++ b/admin-web-master/src/views/serve/salesReport.vue
@@ -58,13 +58,14 @@
tooltip-effect="dark"
>
-
+
{{ scope.$index +1 }}
+
{
- console.log('res',res.data)
+
if(res.data.code == '200'){
- setTimeout(()=>{
- uni.switchTab({
- url: '/pages/home/home'
- })
- },1000)
- }else{
-
+ uni.showToast({
+ icon: 'none',
+ title: '报名成功'
+ })
+
}
// uni.showToast({
// title: res.data.data,
@@ -159,6 +157,8 @@ export default {
// })
})
this.joinShow = false
+ this.form.signUpName = ''
+ this.form.signUpPhone = ''
},
diff --git a/lvdao-miniapp/pages/home/home.vue b/lvdao-miniapp/pages/home/home.vue
index 6592416..4f19003 100644
--- a/lvdao-miniapp/pages/home/home.vue
+++ b/lvdao-miniapp/pages/home/home.vue
@@ -696,9 +696,16 @@
},
wuye() {
- uni.navigateTo({
- url: `/pagesA/weball/web?url=https://zhgw-uat.028wlkj.com/cdwlMall/meh5/`
- })
+ if(uni.getStorageSync('user').phone&&uni.getStorageSync('user').phone != ''){
+ uni.navigateTo({
+ url: `/pagesA/weball/web?url=https://zhgw-uat.028wlkj.com/cdwlMall/meh5/?phone=${uni.getStorageSync('user').phone}`
+ })
+ }else{
+ uni.navigateTo({
+ url: `/pagesA/weball/web?url=https://zhgw-uat.028wlkj.com/cdwlMall/meh5/`
+ })
+ }
+
// if(uni.getStorageSync('user').phone&& uni.getStorageSync('user').phone!=''){
// uni.navigateTo({
// url: `/pages/propertyPay/propertyPayList/propertyPayList`
diff --git a/lvdao-miniapp/pages/procedure/procedure.vue b/lvdao-miniapp/pages/procedure/procedure.vue
index 4678a47..292e018 100644
--- a/lvdao-miniapp/pages/procedure/procedure.vue
+++ b/lvdao-miniapp/pages/procedure/procedure.vue
@@ -23,9 +23,9 @@
};
},
onLoad(option){
- console.error(option.item)
- // console.error(JSON.parse(decodeURI(option.item)))
- this.tableList = uni.getStorageSync('gghd')
+ this.tableList = JSON.parse(decodeURIComponent(option.item))
+ // console.error()
+ // this.tableList = uni.getStorageSync('gghd')
},
mounted(){
diff --git a/lvdao-miniapp/utils/request.js b/lvdao-miniapp/utils/request.js
index 39a2350..dee2aba 100644
--- a/lvdao-miniapp/utils/request.js
+++ b/lvdao-miniapp/utils/request.js
@@ -21,17 +21,17 @@ const sendRequest = (url, method = 'GET', data = {}, baseUrl,contentType) => {
// bases = 'https://zhgw.028wlkj.com:20443/cdwlMall/meserver/admin-server' + url;
// bases = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/admin-server' + url;
- // bases = 'http://128.10.249.20:9003'+ url;
+ bases = 'http://128.10.249.39:9003'+ url;
// bases = 'https://zhld.028wlkj.com:49008/cdwlMall/admin-server' + url;
- bases = c1 + 'cdwlMall/meserver/admin-server' + url;
+ // bases = c1 + 'cdwlMall/meserver/admin-server' + url;
}else if(baseUrl == 3){
// bases = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/api' + url;
// bases = 'https://zhgw.028wlkj.com:20443/cdwlMall/meserver/api' + url;
// bases = 'http://128.10.249.22:9003:9007' + url;
- // bases = 'http://128.10.249.20:9007' + url;
- bases = c1 + 'cdwlMall/meserver/api' + url;
+ bases = 'http://128.10.249.39:9007' + url;
+ // bases = c1 + 'cdwlMall/meserver/api' + url;
}else{
// bases = 'http://128.10.249.22:9004' + url;
@@ -39,9 +39,9 @@ const sendRequest = (url, method = 'GET', data = {}, baseUrl,contentType) => {
// bases = 'http://172.16.61.123/cdwlMall/business-server' + url;
// bases = 'https://jy.scjysm.asia:18086/cdwlMall/business-server' + url;
// bases = 'https://zhgw.028wlkj.com:20443/cdwlMall/business-server' + url;
- // bases = 'http://128.10.249.20:9004' + url;
+ bases = 'http://128.10.249.39:9004' + url;
// bases = 'https://zhld.028wlkj.com:49008/cdwlMall/business-server' + url;
- bases = c1 + 'cdwlMall/business-server' + url;
+ // bases = c1 + 'cdwlMall/business-server' + url;
}
var token = uni.getStorageSync('token') || '';
diff --git a/merchant-web-master/src/utils/request.js b/merchant-web-master/src/utils/request.js
index ca83694..5760862 100644
--- a/merchant-web-master/src/utils/request.js
+++ b/merchant-web-master/src/utils/request.js
@@ -20,8 +20,8 @@ let PREFIX;
// 其他情况的默认值
// PREFIX = 'http://8.130.38.56:8027/business-server';
// PREFIX = 'https://zhgw-uat.028wlkj.com/cdwlMall/meserver/business-server';
- PREFIX = 'https://jy.scjysm.asia:18086/cdwlMall/business-server';
- // PREFIX = 'http://128.10.249.8:9004';
+ // PREFIX = 'https://jy.scjysm.asia:18086/cdwlMall/business-server';
+ PREFIX = 'http://128.10.249.39:9004';
}else{
// PREFIX = '/merchant-business';
// PREFIX = 'http://8.130.38.56:9004';
diff --git a/merchant-web-master/src/utils/request2.js b/merchant-web-master/src/utils/request2.js
index 29c1d46..ee500f0 100644
--- a/merchant-web-master/src/utils/request2.js
+++ b/merchant-web-master/src/utils/request2.js
@@ -19,9 +19,9 @@ let PREFIX;
if( host == 'localhost:9528' || host == '8.130.38.56:8027' || host == 'localhost:9529'|| host == 'localhost:9530'){
// 其他情况的默认值
// PREFIX = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/api';
- PREFIX = 'https://zhgw-uat.028wlkj.com/cdwlMall/meserver/api';
+ // PREFIX = 'https://zhgw-uat.028wlkj.com/cdwlMall/meserver/api';
- // PREFIX = 'http://128.10.249.48:9007';
+ PREFIX = 'http://128.10.249.39:9007';
}else{
// PREFIX = '/merchant-business';
// PREFIX = 'http://8.130.38.56:9004';
diff --git a/merchant-web-master/src/views/order/pending/index.vue b/merchant-web-master/src/views/order/pending/index.vue
index be86085..eeda03b 100644
--- a/merchant-web-master/src/views/order/pending/index.vue
+++ b/merchant-web-master/src/views/order/pending/index.vue
@@ -94,7 +94,7 @@
diff --git a/merchant-web-master/src/views/order/pending/pendDetails.vue b/merchant-web-master/src/views/order/pending/pendDetails.vue
index a005c96..14ae5b8 100644
--- a/merchant-web-master/src/views/order/pending/pendDetails.vue
+++ b/merchant-web-master/src/views/order/pending/pendDetails.vue
@@ -24,7 +24,10 @@
待发货
待收货
已完成
- 已取消
+ 已关闭
+ 待成团
+ 待售后
+ 已退款
售后状态:
--
libgit2 0.21.4