-
-
-
收货地占比图
-
+
@@ -87,7 +83,7 @@
export default {
data() {
return {
- total: 1,
+ total: 0,
flag:false,
pageSize: 10,
currentPage: 1,
@@ -120,16 +116,17 @@
const res = await orderGetAll(this.formInline)
const Orderlist = await deliveryAddressStatistics(res.data.list)
this.tableData = Orderlist.data
- this.total = this.tableData.length
- this.echar1()
+ this.total = Orderlist.data.length
+ this.echar1(Orderlist.data)
},
async search(){
this.formInline.dates = this.formParams.dates
-
const res = await orderGetAll(this.formInline)
const Orderlist = await deliveryAddressStatistics(res.data.list)
this.tableData = Orderlist.data
+ this.total = Orderlist.data.length
+ this.echar1(Orderlist.data)
},
clear(){
this.formInline.dates = []
@@ -142,6 +139,10 @@ async search(){
echar1(diameter) {
let Dom = this.$refs.container1
let myChart = echarts.init(Dom);
+ let processedData = diameter.map(item => ({
+ name: item.address,
+ value: item.refundAmount
+ }))
// 指定图表的配置项和数据
const option = {
@@ -179,13 +180,7 @@ async search(){
fontSize: 20
}
},
- data: [
- { value: 60, name: 'Visit' },
- { value: 40, name: 'Inquiry' },
- { value: 20, name: 'Order' },
- { value: 80, name: 'Click' },
- { value: 100, name: 'Show' }
- ]
+ data: processedData
}
]
};
diff --git a/merchant-web-master/src/views/comprehensive/pEranking/index.vue b/merchant-web-master/src/views/comprehensive/pEranking/index.vue
index 2cdcfca..f22a2fd 100644
--- a/merchant-web-master/src/views/comprehensive/pEranking/index.vue
+++ b/merchant-web-master/src/views/comprehensive/pEranking/index.vue
@@ -3,7 +3,7 @@
-
商品入库统计
+
@@ -51,16 +51,8 @@
{{scope.row.cereShopComments[0].shopName}}
-
-
-
-
-
-
-
-
-
-
+
+
{{scope.row.cereShopComments[0].createTime}}
@@ -80,10 +72,10 @@
-
显示第1到第10条记录
+
+ layout="total,prev, pager,next" :total="total"
+ @current-change="handleCurrentChange" />
@@ -97,7 +89,7 @@
export default {
data() {
return {
- total: 1,
+ total: 0,
pageSize: 10,
currentPage: 1,
formParams: {
@@ -155,11 +147,33 @@ export default {
return dateString;
},
+ // 获取时间
+ currentTime() {
+ let date = new Date();
+ let year = date.getFullYear();
+ let month = date.getMonth() + 1; // 月份从0~11,所以加一
+ let day = date.getDate();
+ let hours = date.getHours();
+ let minutes = date.getMinutes();
+ let seconds = date.getSeconds();
+
+ // 为月、日、时、分、秒添加前导零(如果需要)
+ month = month < 10 ? '0' + month : month;
+ day = day < 10 ? '0' + day : day;
+ hours = hours < 10 ? '0' + hours : hours;
+ minutes = minutes < 10 ? '0' + minutes : minutes;
+ seconds = seconds < 10 ? '0' + seconds : seconds;
+
+ // 拼接日期和时间字符串
+ let strDate = `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
+ return strDate;
+ },
async getAll(){
let last = this.updateCurrentTime()
// const res = await orderGetAll(this.formInline)
-const Orderlist = await productEvaluationRanking({startTime:last[0],endTime:last[1]})
-this.tableData = Orderlist.data.list
+const Orderlist = await productEvaluationRanking({startTime:'2020-1-1 59:59:59',endTime:this.currentTime()})
+this.tableData = Orderlist.data
+this.total = Orderlist.data.length
},
async search(){
this.formInline.dates = this.formParams.dates
@@ -168,7 +182,7 @@ async search(){
let endTimeS = this.formInline.dates[1] +` 23:59:59`
const Orderlist = await productEvaluationRanking({startTime:startTimeS,endTime:endTimeS})
this.tableData = Orderlist.data
- console.log(Orderlist.data)
+ this.total = Orderlist.data.length
},
clear(){
this.formInline.dates = []
diff --git a/merchant-web-master/src/views/comprehensive/pcdetails/index.vue b/merchant-web-master/src/views/comprehensive/pcdetails/index.vue
index a8d80d6..f34c58f 100644
--- a/merchant-web-master/src/views/comprehensive/pcdetails/index.vue
+++ b/merchant-web-master/src/views/comprehensive/pcdetails/index.vue
@@ -3,7 +3,7 @@
-
商品消费明细
+
@@ -164,7 +243,8 @@ import {
setProductMember,
productExport,
getBrandList,
- chFen
+ chFen,
+ getClassifyUpdate
} from '@/api/commodity'
export default {
components: {
@@ -197,11 +277,19 @@ export default {
commId: 0,
brandList: [],
zuheNum:0,
- teble_sel:false,
+
parentMessage: '这是父组件传递给子组件的消息',
canst:'' ,//组合商品ID
index:1,
- dengji:[]
+ dengji:[],
+ vipPriceVisible: false,
+ mode: 1,
+ productData: [],
+ gradeList: [],
+ teble_sel:false,
+ rukuShow:false,
+ dengjiMsg:'',
+ shopId:''
}
},
computed: {
@@ -454,8 +542,95 @@ export default {
},
//入库登记
rukdengji(){
- this.teble_sel = true
- this.index = 1
+ this.rukuShow = true
+
+ },
+ // 设置会员价
+ setVipPrice(row) {
+ var _ = this
+ this.productId = row.productId
+ getProductMembers({ productId: row.productId }).then(res => {
+ if (res.code === '') {
+ _.productData = res.data
+ if (_.productData && _.productData.length > 0) {
+ _.gradeList = []
+ const _memberPrices = _.productData[0].memberPrices
+ _memberPrices.forEach(function(item, i) {
+ _.gradeList.push(item.memberLevelName)
+ })
+ _.mode = _.productData[0].mode ? _.productData[0].mode : 1
+ _.vipPriceVisible = true
+ }
+ }
+ })
+ },
+ // 设置会员价提交
+ vipPriceSubmit() {
+ for (let i = 0; i < this.productData.length; i++) {
+ this.productData[i].mode = this.mode
+ for (let j = 0; j < this.productData[i].memberPrices.length; j++) {
+ this.productData[i].memberPrices[j].mode = this.mode
+ var _price = this.productData[i].memberPrices[j].price
+ if (!_price) {
+ this.$message({
+ type: 'warning',
+ message: '会员价格不能为空!'
+ })
+ return false
+ } else if (this.productData[i].mode === 1) {
+ if (_price <= 0 || _price >= 10) {
+ this.$message({
+ type: 'warning',
+ message: '会员折数必须大于0小于10!'
+ })
+ return false
+ }
+ } else if (this.productData[i].mode === 2) {
+ if (_price > this.productData[i].price) {
+ this.$message({
+ type: 'warning',
+ message: '会员价格不能大于原价!'
+ })
+ return false
+ }
+ }
+ }
+ }
+ setProductMember({ productId: this.productId, members: this.productData }).then(res => {
+ if (res.code === '') {
+ this.$message({
+ type: 'success',
+ message: '设置成功!'
+ })
+ this.getAll(this.formInline)
+ this.vipPriceVisible = false
+ }
+ })
+ },
+ // 清空会员价
+ clearProductMember() {
+ console.log(this.productData, 'this.productData')
+ this.$confirm('该商品所有旧设置的会员价将被清除, 是否继续?', '提示', {
+ confirmButtonText: '确定',
+ cancelButtonText: '取消',
+ type: 'warning'
+ }).then(() => {
+ clearProductMember({ productId: this.productId }).then(res => {
+ if (res.code === '') {
+ this.productData.map(item => {
+ item.memberPrices.map(itemChild => {
+ itemChild.price = null
+ })
+ })
+ this.$message.success('清除成功')
+ // this.vipPriceVisible = false
+ }
+ })
+ })
+ },
+ async rukuCheck(){
+ await getClassifyUpdate({productId:this.shopId,registrationStatus:this.dengjiMsg})
+ this.$message.success('保存成功')
}
}
}
diff --git a/yanshouban/src/utils/request.js b/yanshouban/src/utils/request.js
index 95cd009..3bffb11 100644
--- a/yanshouban/src/utils/request.js
+++ b/yanshouban/src/utils/request.js
@@ -21,9 +21,9 @@ if (host == '172.16.61.48' || host == '172.16.61.49:5173' || host =='172.16.61.1
// PREFIX = 'http://172.16.61.48/meserver/admin-server';
// PREFIX = 'http://8.130.38.56:9003';
// PREFIX = 'http://8.130.38.56:8019/admin-server';
- PREFIX = 'http://192.168.2.193:9003';
+ // PREFIX = 'http://192.168.2.193:9003';
// PREFIX = 'https://wjdc.scjysm.asia:1443/meserver/admin-server';
- // PREFIX = 'https://jy.scjysm.asia:18086/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'
diff --git a/yanshouban/src/views/ads/fangAudit/bianform.vue b/yanshouban/src/views/ads/fangAudit/bianform.vue
index c986db1..59923f5 100644
--- a/yanshouban/src/views/ads/fangAudit/bianform.vue
+++ b/yanshouban/src/views/ads/fangAudit/bianform.vue
@@ -66,7 +66,7 @@
- {{ruleForm.attachmentInfo.name}}
+ {{ruleForm.attachmentInfo.name}}
-
@@ -274,7 +274,7 @@
选择模板
查看
-
+
删除
@@ -354,7 +354,7 @@
-
+ -->
@@ -506,10 +506,11 @@ multipleSelection:[],
const fileMsg = {
name:file.name,
- url:response.data,
+ url:response.data.url,
}
// 将文件地址存储在 uploadedFiles 数组中
- this.fileData.push(fileMsg);
+ this.fileData.push(fileMsg)
+
},
handleRemove(file, fileList) {
this.fileData = []
diff --git a/yanshouban/src/views/ads/fangli/bianform.vue b/yanshouban/src/views/ads/fangli/bianform.vue
index be63e81..a6b504b 100644
--- a/yanshouban/src/views/ads/fangli/bianform.vue
+++ b/yanshouban/src/views/ads/fangli/bianform.vue
@@ -79,10 +79,9 @@
:auto-upload="true" v-if="steat">
+点击上传
-
- {{ruleForm.attachmentInfo.name}}
-
+{{ruleForm.attachmentInfo.name}}
+
@@ -363,7 +362,7 @@ guihuaDate:[],
const fileMsg = {
name:file.name,
- url: response.data,
+ url: response.data.url,
}
// 将文件地址存储在 uploadedFiles 数组中
this.fileData.push(fileMsg);
diff --git a/yanshouban/src/views/advertisement/advertisingReview/advertisingReview.vue b/yanshouban/src/views/advertisement/advertisingReview/advertisingReview.vue
index c7f2335..e2bbbc9 100644
--- a/yanshouban/src/views/advertisement/advertisingReview/advertisingReview.vue
+++ b/yanshouban/src/views/advertisement/advertisingReview/advertisingReview.vue
@@ -57,8 +57,7 @@
{{scope.$index + 1 }}
-
-
+
{{scope.row.cereAdvertisingInformation.affiliation}}
@@ -84,11 +83,8 @@
-
-
- {{scope.row.rotationOrde}}
+
-
@@ -672,28 +668,27 @@
合同签订日期
-
+
+
+
合同终止日期
-
+
+
+
起止日期
-
+
+
@@ -925,7 +920,8 @@
auditReminderTime:'',
},
peiShow:false,
- peiId:''
+ peiId:'',
+ hemiList:['earnestMoney','contractAmount','lessorName','telephone','bankAccount','tenantName','tenantTelephone','tenantBankAccount'],
}
},
created() {
@@ -1223,7 +1219,8 @@ heCheck(){
if(this.hetongData.length !=0){
this.heForm.appendicesContract = JSON.stringify(this.hetongData[0])
}
- hetongadd(this.heForm).then(res=>{
+ let heinfo = this.$decryptall(this.heForm,this.hemiList)
+ hetongadd(heinfo).then(res=>{
AdvertiserInfoEdit({
id: this.secondData.id,
contractId:res.data.id,
diff --git a/yanshouban/src/views/advertisement/index.vue b/yanshouban/src/views/advertisement/index.vue
index 14f30d9..0787dbc 100644
--- a/yanshouban/src/views/advertisement/index.vue
+++ b/yanshouban/src/views/advertisement/index.vue
@@ -91,7 +91,7 @@
-
+
查看
合同编辑
@@ -102,7 +102,7 @@
审核流程配置
- 更改状态
+ 更改状态
删除
@@ -1090,13 +1090,23 @@
if (contentLength > 0) {
// 获取最后一个元素并赋值给 this.hetong
this.hetong = res.data.content[contentLength - 1]
+ this.hetong.bankAccount =this.$decrypt(this.hetong.bankAccount)
+ this.hetong.contractAmount =this.$decrypt(this.hetong.contractAmount)
+ this.hetong.dataIntegrity =this.$decrypt(this.hetong.dataIntegrity)
+ this.hetong.earnestMoney =this.$decrypt(this.hetong.earnestMoney)
+ this.hetong.lessorName =this.$decrypt(this.hetong.lessorName)
+ this.hetong.telephone =this.$decrypt(this.hetong.telephone)
+ this.hetong.tenantName =this.$decrypt(this.hetong.tenantName)
+
}
this.hetongBox = true
+ console.log(this.hetong)
},
//编辑合同
async EditHetong(val){
this.hetong.updateDate = ''
- await hetongEdit(this.hetong)
+ let heinfo = this.$decryptall(this.hetong,this.hemiList)
+ await hetongEdit(heinfo)
this.hetongBox = false
this.getTable(this.chengeTatle)
},
@@ -1110,13 +1120,25 @@
this.formSel.online = '实体广告位'
this.pageindex.scopeDeployment= '实体广告位'
}
- contractGetAll(this.formSel).then(res=>{
+ let obj = JSON.parse(JSON.stringify(this.formSel))
+ obj.cereContractInformation.tenantName= this.$encrypt(obj.cereContractInformation.tenantName)
+ contractGetAll(obj).then(res=>{
if(this.pageindex.scopeDeployment == '线上广告位'){
this.xsNum = res.data.content.length
}else{
this.stNum = res.data.content.length
}
this.tableData = res.data.content
+ this.tableData.map(res=>{
+ res.cereContractInformation.earnestMoney =this.$decrypt(res.cereContractInformation.earnestMoney)
+ res.cereContractInformation.contractAmount =this.$decrypt(res.cereContractInformation.contractAmount)
+ res.cereContractInformation.lessorName =this.$decrypt(res.cereContractInformation.lessorName)
+ res.cereContractInformation.telephone =this.$decrypt(res.cereContractInformation.telephone)
+ res.cereContractInformation.bankAccount =this.$decrypt(res.cereContractInformation.bankAccount)
+ res.cereContractInformation.tenantName =this.$decrypt(res.cereContractInformation.tenantName)
+ res.cereContractInformation.tenantTelephone =this.$decrypt(res.cereContractInformation.tenantTelephone)
+ res.cereContractInformation.tenantBankAccount =this.$decrypt(res.cereContractInformation.tenantBankAccount)
+ })
this.total = res.data.content.length
})
// const res = await contractGetAll(this.pageindex)
@@ -1193,13 +1215,62 @@
childFujian(msg){
this.fileData = msg
},
- async toufang(item){
- await updateList({id:item.id,auditStatus:'4'})
- this.getAll()
+ toufang(item){
+
+ const h = this.$createElement;
+ this.$msgbox({
+ title: '消息',
+ message: h('p', null, [
+ h('span', null, '是否投放 '),
+ ]),
+ showCancelButton: true,
+ showClose:false,
+ confirmButtonText: '确定',
+ cancelButtonText: '取消',
+ customClass:'oe-dialog-btn',
+ beforeClose: (action, instance, done) => {
+ if (action === 'confirm') {
+ updateList({id:item.id,auditStatus:'4'}).then(res=>{
+ this.getAll()
+ done();
+ })
+
+ } else {
+ done();
+ }
+ }
+ })
+
+
+
},
- async xiajia(item){
- await updateList({id:item.id,auditStatus:'2'})
- this.getAll()
+ xiajia(item){
+ const h = this.$createElement;
+ this.$msgbox({
+ title: '消息',
+ message: h('p', null, [
+ h('span', null, '是否下架 '),
+ ]),
+ showCancelButton: true,
+ showClose:false,
+ confirmButtonText: '确定',
+ cancelButtonText: '取消',
+ customClass:'oe-dialog-btn',
+ beforeClose: (action, instance, done) => {
+ if (action === 'confirm') {
+ updateList({id:item.id,auditStatus:'2'}).then(res=>{
+ this.getAll()
+ done();
+ })
+
+ } else {
+ done();
+ }
+ }
+ })
+
+
+
},
async status(){
await updateList({id:this.secondData.id,auditStatus:'5'})
diff --git a/yanshouban/src/views/customer/rsaManagement/index.vue b/yanshouban/src/views/customer/rsaManagement/index.vue
index df823b8..909834a 100644
--- a/yanshouban/src/views/customer/rsaManagement/index.vue
+++ b/yanshouban/src/views/customer/rsaManagement/index.vue
@@ -326,7 +326,7 @@
">
匹配记录
-
+
-
-
-
+
+
+
@@ -371,29 +371,37 @@
导出
-->
-
+
{{scope.$index+1}}
-
+
-
-
-
-
-
+
-
+ {{ scope.row.resources.cereRentalPolicies.businessType }}
+
+
+
+
+
+ {{ scope.row.resources.cereRentalPolicies.leaseTerm }}
+
+
+
+
+ {{ scope.row.resources.cereRentalPolicies.rentalPrice }}
+
+
@@ -1059,6 +1067,17 @@ async getshen(item){
this.multipleSelection =[]
},
pipei(item){
+ this.pipeiSel={
+ resources:{
+ cereRentalPolicies:{
+ businessType:'',
+ leaseTerm:'',
+ rentalPrice:''
+ }
+ },
+ pageNumber:1,
+ pageSize:100,
+ }
this.pip = true
this.pipData = []
},
@@ -1072,11 +1091,11 @@ async getshen(item){
},
pipeiBtn(){
- if(this.pipeiSel.resources.cereRentalPolicies.businessType == 'sp'){
+ if(this.pipeiSel.resources.cereRentalPolicies.businessType == '商铺'){
this.pipeiSel.resourcesId = 'sp'
- }else if(this.pipeiSel.resources.cereRentalPolicies.businessType == 'cd'){
+ }else if(this.pipeiSel.resources.cereRentalPolicies.businessType == '场地'){
this.pipeiSel.resourcesId = 'cd'
- }else{
+ }else if(this.pipeiSel.resources.cereRentalPolicies.businessType == '广告位'){
this.pipeiSel.resourcesId = 'gg'
}
ziyuanduiy(this.pipeiSel).then(res=>{
@@ -1094,7 +1113,7 @@ async getshen(item){
},
resourcesId:'',
pageNumber:1,
- pageSize:10,
+ pageSize:100,
},
this.pipData = []
},
diff --git a/yanshouban/src/views/detect/addziyuan.vue b/yanshouban/src/views/detect/addziyuan.vue
index e6066d0..032704a 100644
--- a/yanshouban/src/views/detect/addziyuan.vue
+++ b/yanshouban/src/views/detect/addziyuan.vue
@@ -630,11 +630,6 @@
message: '请输入详细位置',
trigger: 'blur'
}, ],
- displayMainImage: [{
- required: true,
- message: '请上传主图',
- trigger: 'blur'
- }, ],
belongingGreenwaySection: [{
required: true,
message: '请选择所属绿道段',
diff --git a/yanshouban/src/views/detect/admap.vue b/yanshouban/src/views/detect/admap.vue
index febb151..54a222c 100644
--- a/yanshouban/src/views/detect/admap.vue
+++ b/yanshouban/src/views/detect/admap.vue
@@ -250,8 +250,15 @@
+
+ {{scope.row.rentalStatus == 0?'未租':'已租'}}
+
+
+
+ {{scope.row.publishStatus == 0?'待发布':'已提交'}}
+
@@ -264,12 +271,7 @@
-
-
-
+
+
+
@@ -1870,6 +1877,8 @@ lvdaoList:[]
this.parentMessage = res.data.content
const lvdao = await lvdaoduan()
this.lvdaoList = lvdao.data
+ this.total = res.data.content.length
+
},
//查询全数据
async getAll() {
@@ -1944,6 +1953,7 @@ lvdaoList:[]
this.setzulin(res.data.content)
this.parentMessage = res.data.content
this.total = res.data.content.length
+ this.currentPage = 1
} else if (event == 'second') {
// this.pageindex.advertisingType = '实体广告位'
const res = await getAllMap(this.pageindex)
@@ -1951,12 +1961,14 @@ lvdaoList:[]
this.setzulin(res.data.content)
this.tableData = res.data.content
this.total = res.data.content.length
+ this.currentPage = 1
} else if (event == 'third') {
const res = await changAlls(this.pageindex)
this.tableData = res.data.content
this.setzulin(res.data.content)
this.parentMessage = res.data.content
this.total = res.data.content.length
+ this.currentPage = 1
} else if (event == 'fourth') {
this.parentMessage = []
this.tableData = []
diff --git a/yanshouban/src/views/detect/ziyuanList.vue b/yanshouban/src/views/detect/ziyuanList.vue
index 86b20f7..e1e35de 100644
--- a/yanshouban/src/views/detect/ziyuanList.vue
+++ b/yanshouban/src/views/detect/ziyuanList.vue
@@ -411,11 +411,7 @@
message: '请输入详细位置',
trigger: []
}, ],
- displayMainImage: [{
- required: true,
- message: '请上传主图',
- trigger: []
- }, ],
+
belongingGreenwaySection: [{
required: true,
message: '请选择所属绿道段',
diff --git a/yanshouban/src/views/ipm/inr/index.vue b/yanshouban/src/views/ipm/inr/index.vue
index ca32483..043a413 100644
--- a/yanshouban/src/views/ipm/inr/index.vue
+++ b/yanshouban/src/views/ipm/inr/index.vue
@@ -290,8 +290,8 @@
:auto-upload="true" v-if="steat == false">
+点击上传
+
{{secondData.otherAttachments.name}}
-
{{secondData.otherAttachments.name}}
diff --git a/yanshouban/src/views/rent/audit/index.vue b/yanshouban/src/views/rent/audit/index.vue
index 328ffd5..450b9ad 100644
--- a/yanshouban/src/views/rent/audit/index.vue
+++ b/yanshouban/src/views/rent/audit/index.vue
@@ -1372,6 +1372,18 @@
+
+
+ 商户名称
+
+
+
+
+
+ 租赁类型
+
+
+
@@ -1417,19 +1429,25 @@
合同签订日期
-
+
+
合同终止日期
-
+
+
起租日期
-
+
+
@@ -1471,8 +1489,8 @@
商铺编号
- {{heForm.shopNumber}}
-
+
+
@@ -1656,6 +1674,7 @@
rentalResourcesId:'',
businessPurpose:'',
auditStatus:'',
+
},
secondData: {},
shenheMsg:{
@@ -1720,7 +1739,8 @@ contractNumber: '', //合同对应的ID
ziyuanData:[],
multipleSelection:[],
selData:[],
- miList:['idNumber','unifiedSocialCreditCode','legalRepresentative','residence','emailAddress']
+ miList:['idNumber','unifiedSocialCreditCode','legalRepresentative','residence','emailAddress'],
+ hemiList:['earnestMoney','contractAmount','lessorName','telephone','bankAccount','tenantName','tenantTelephone','tenantBankAccount'],
}
},
@@ -1934,7 +1954,7 @@ contractNumber: '', //合同对应的ID
contractStatus: '', //合同状态
dataStatus: '1', //数据状态(1.使用中 2.往期合同 3.已终止)
}
- this.heForm.shopNumber = item.rentalResourcesId
+ this.heForm.shopNumber = item.cereBasicInformationShop.venueNumber || item.cereBasicInformationVenue.venueNumber
this.heForm.relatedMerchants = item.applicant
this.luheShow = true
@@ -1960,14 +1980,15 @@ contractNumber: '', //合同对应的ID
this.luheShow = false
},
hecheck(){
-
if(this.hefuData.length !=0){
this.heForm.appendicesContract = JSON.stringify(this.hefuData[0])
}
- contractAdd(this.heForm).then(res => {
+let heinfo = this.$decryptall(this.heForm,this.hemiList)
+ contractAdd(heinfo).then(res => {
msgedit({auditStatus:'4',id:this.secondData.id,contractNumber:res.data.contractNumber})
this.formInline.contractNumber = res.data.contractNumber
this.formInline.createDate = this.currentTime()
+ this.formInline.rentalCondition = '1'
cereLeasingAdd(this.formInline).then(res => {
this.getAll()
})
diff --git a/yanshouban/src/views/scheme/addressguan.vue b/yanshouban/src/views/scheme/addressguan.vue
index 0dcafc8..65ae0ae 100644
--- a/yanshouban/src/views/scheme/addressguan.vue
+++ b/yanshouban/src/views/scheme/addressguan.vue
@@ -13,7 +13,7 @@
- 检索
+ 查看
重置
@@ -70,7 +70,7 @@
取 消
+ class="buttonHover">返回
diff --git a/yanshouban/src/views/scheme/planningBz.vue b/yanshouban/src/views/scheme/planningBz.vue
index 9da0881..abf8a91 100644
--- a/yanshouban/src/views/scheme/planningBz.vue
+++ b/yanshouban/src/views/scheme/planningBz.vue
@@ -284,7 +284,7 @@