diff --git a/admin-web-master/dist.zip b/admin-web-master/dist.zip index d23cc7c..e50adae 100644 --- a/admin-web-master/dist.zip +++ b/admin-web-master/dist.zip diff --git a/admin-web-master/src/components/chakan/ggsh.vue b/admin-web-master/src/components/chakan/ggsh.vue index 8554e0f..b92675e 100644 --- a/admin-web-master/src/components/chakan/ggsh.vue +++ b/admin-web-master/src/components/chakan/ggsh.vue @@ -353,7 +353,8 @@ AdvertiserInfoEdit({ id: this.info.id, 'auditStatus': this.radio, - auditComments: this.auditComments + auditComments: this.auditComments, + rentalResourcesId: this.info.rentalResourcesId }).then(res => { console.error(res) if (res.code == 200) { diff --git a/admin-web-master/src/components/chakan/zl.vue b/admin-web-master/src/components/chakan/zl.vue index 25b061d..e320306 100644 --- a/admin-web-master/src/components/chakan/zl.vue +++ b/admin-web-master/src/components/chakan/zl.vue @@ -507,7 +507,8 @@ msgedit({ id: this.info.id, 'auditStatus': this.radio, - auditSuggestions: this.info.auditSuggestions + auditSuggestions: this.info.auditSuggestions, + rentalResourcesId:this.info.rentalResourcesId }).then(res => { console.error(res) if (res.code == 200) { diff --git a/admin-web-master/src/utils/request.js b/admin-web-master/src/utils/request.js index 30edaa9..3460ae7 100644 --- a/admin-web-master/src/utils/request.js +++ b/admin-web-master/src/utils/request.js @@ -16,8 +16,8 @@ let hostall = window.location.href; let baseURL = '' if(host === 'localhost:8080' || host === 'localhost:8081' || host === 'localhost:9528'|| host === '192.168.31.45:9528'|| host === 'localhost:9529' ) { - // baseURL = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/admin-server'; - baseURL = 'http://128.10.249.21:9003'; + baseURL = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/admin-server'; + // baseURL = 'http://128.10.249.21:9003'; // baseURL = process.env.VUE_APP_DOMAIN_PREFIX_1; // baseURL = 'http://192.168.2.225:9003'; diff --git a/lvdao-miniapp/pages.json b/lvdao-miniapp/pages.json index ac3f361..65e6e9a 100644 --- a/lvdao-miniapp/pages.json +++ b/lvdao-miniapp/pages.json @@ -397,6 +397,20 @@ "name": "pagesA", "pages": [ { + "path": "web/web", + "style": { + "navigationBarBackgroundColor": "#FFFFFF", + "navigationBarTitleText": "投诉建议" + } + }, + { + "path": "tishi/tishi", + "style": { + "navigationBarBackgroundColor": "#FFFFFF", + "navigationBarTitleText": "提示" + } + }, + { "path": "hxlist/hxlist", "style": { "navigationBarBackgroundColor": "#FFFFFF", diff --git a/lvdao-miniapp/pages/complaint/complaint.vue b/lvdao-miniapp/pages/complaint/complaint.vue index 8217a0e..8813daf 100644 --- a/lvdao-miniapp/pages/complaint/complaint.vue +++ b/lvdao-miniapp/pages/complaint/complaint.vue @@ -23,15 +23,15 @@ - + - + - + - + *现场照片 @@ -46,9 +46,9 @@ - + - + @@ -59,19 +59,23 @@ - + - + - + + 提交 @@ -84,11 +88,11 @@ export default { data() { return { - fileList:[], - ruleForm:{ - onSitePhoto:[], - - status:'1' + fileList: [], + ruleForm: { + onSitePhoto: [], + + status: '1' }, list: [{ value: '物业投诉', @@ -99,126 +103,126 @@ label: '违规投诉' } ], - popup1:false + popup1: false } }, - methods:{ + methods: { chooseLocation(val, item) { this.popup1 = true }, pops(val) { - this.ruleForm.complaintType = val[0].label + this.ruleForm.complaintType = val[0].label }, - check(){ - - if (!this.ruleForm.complaintType) { - uni.showToast({ - icon: 'none', - title: '请选择投诉类型' - }); - return false; - } - if (!this.ruleForm.problemDescription) { - uni.showToast({ - icon: 'none', - title: '请输入问题描述' - }); - return false; - } - if (this.ruleForm.onSitePhoto.length== 0) { - uni.showToast({ - icon: 'none', - title: '请上传现场图片' - }); - return false; - } - if (!this.ruleForm.remark) { - uni.showToast({ - icon: 'none', - title: '请输入备注信息' - }); - return false; - } - - return true; + check() { + + if (!this.ruleForm.complaintType) { + uni.showToast({ + icon: 'none', + title: '请选择投诉类型' + }); + return false; + } + if (!this.ruleForm.problemDescription) { + uni.showToast({ + icon: 'none', + title: '请输入问题描述' + }); + return false; + } + if (this.ruleForm.onSitePhoto.length == 0) { + uni.showToast({ + icon: 'none', + title: '请上传现场图片' + }); + return false; + } + if (!this.ruleForm.remark) { + uni.showToast({ + icon: 'none', + title: '请输入备注信息' + }); + return false; + } + + return true; }, submit() { let show = this.check() - if(show == false){ - return - } + if (show == false) { + return + } this.ruleForm.applicationTime = this.currentTime() this.ruleForm.createUser = uni.getStorageSync('user').phone - this.ruleForm.onSitePhoto = this.ruleForm.onSitePhoto.map(item=>{ - return item.replace(this.$img,''); + this.ruleForm.onSitePhoto = this.ruleForm.onSitePhoto.map(item => { + return item.replace(this.$img, ''); }) - - let info = { - ...this.ruleForm, - onSitePhoto:this.ruleForm.onSitePhoto.join(','), - } - - this.$http.sendRequest('/cereComplaintsSuggestions/add', 'POST',info,1).then(res => { - uni.navigateTo({ - url: '/pages/serve/serve' - }) - }).catch(err => { - console.log(err) - //请求失败 - }) - - }, - // 获取时间 - 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; - }, - onsuccess1(e, file, fileList, ziduan) { - console.error(e, file, fileList, ziduan) - uni.uploadFile({ - url: this.$upload, // 仅为示例,请替换为您的服务器上传接口 - filePath: e[0].url, - name: 'file', // 后端接收的文件参数名 - formData: { - filePath: 'xcx', // 其他表单数据 - }, - success: (uploadFileRes) => { - this.ruleForm.onSitePhoto.push(this.$img + JSON.parse(uploadFileRes.data).data) - uni.showToast({ - title: '上传成功', - icon: 'success', - }); - }, - fail: (err) => { - console.error('上传失败', err); - uni.showToast({ - title: '上传失败', - icon: 'none', - }); - }, - }); - }, + + let info = { + ...this.ruleForm, + onSitePhoto: this.ruleForm.onSitePhoto.join(','), + } + + this.$http.sendRequest('/cereComplaintsSuggestions/add', 'POST', info, 1).then(res => { + uni.redirectTo({ + url: '/pagesA/tishi/tishi' + }) + }).catch(err => { + console.log(err) + //请求失败 + }) + + }, + // 获取时间 + 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; + }, + onsuccess1(e, file, fileList, ziduan) { + console.error(e, file, fileList, ziduan) + uni.uploadFile({ + url: this.$upload, // 仅为示例,请替换为您的服务器上传接口 + filePath: e[0].url, + name: 'file', // 后端接收的文件参数名 + formData: { + filePath: 'xcx', // 其他表单数据 + }, + success: (uploadFileRes) => { + this.ruleForm.onSitePhoto.push(this.$img + JSON.parse(uploadFileRes.data).data) + uni.showToast({ + title: '上传成功', + icon: 'success', + }); + }, + fail: (err) => { + console.error('上传失败', err); + uni.showToast({ + title: '上传失败', + icon: 'none', + }); + }, + }); + }, } } + \ No newline at end of file diff --git a/lvdao-miniapp/pages/my/my.scss b/lvdao-miniapp/pages/my/my.scss index 0e93560..5354699 100644 --- a/lvdao-miniapp/pages/my/my.scss +++ b/lvdao-miniapp/pages/my/my.scss @@ -206,8 +206,8 @@ width: 40rpx; height: 40rpx; image{ - width: 40rpx; - height: 40rpx; + // width: 40rpx; + height: 30rpx; } } .data{ diff --git a/lvdao-miniapp/pages/my/my.vue b/lvdao-miniapp/pages/my/my.vue index 1d13fd2..ea4e695 100644 --- a/lvdao-miniapp/pages/my/my.vue +++ b/lvdao-miniapp/pages/my/my.vue @@ -24,7 +24,7 @@ - 请登录/入驻 + 请登录 {{user.name}} + 提交 @@ -92,18 +97,18 @@ export default { data() { return { - fileList:[], - ruleForm:{ - onSitePhoto:[], - deviceName:'', - deviceType:'', - warrantyIssue:'', - memo:'', - applicationTime:'', - status:'1' + fileList: [], + ruleForm: { + onSitePhoto: [], + deviceName: '', + deviceType: '', + warrantyIssue: '', + memo: '', + applicationTime: '', + status: '1' }, - lableXian:'', - shelei:'', + lableXian: '', + shelei: '', list: [{ value: '水管问题', label: '水管问题' @@ -121,12 +126,12 @@ value: '类型2', label: '类型2' } - ], - popup1:false, - popup2:false + ], + popup1: false, + popup2: false } }, - methods:{ + methods: { chooseLocation(val, item) { this.popup1 = true }, @@ -134,125 +139,125 @@ this.popup2 = true }, pops(val) { - - this.ruleForm.warrantyIssue = val[0].label + + this.ruleForm.warrantyIssue = val[0].label }, pops1(val) { - this.ruleForm.deviceType = val[0].label + this.ruleForm.deviceType = val[0].label }, - check(){ - if (this.ruleForm.onSitePhoto.length== 0) { - uni.showToast({ - icon: 'none', - title: '请上传现场图片' - }); - return false; - } - if (!this.ruleForm.deviceName) { - uni.showToast({ - icon: 'none', - title: '请输入设备名称' - }); - return false; - } - if (!this.ruleForm.deviceType) { - uni.showToast({ - icon: 'none', - title: '请选择设备类型' - }); - return false; - } - if (!this.ruleForm.warrantyIssue) { - uni.showToast({ - icon: 'none', - title: '请选择保修问题' - }); - return false; - } - if (!this.ruleForm.memo) { - uni.showToast({ - icon: 'none', - title: '请输入备注信息' - }); - return false; - } - - return true; + check() { + if (this.ruleForm.onSitePhoto.length == 0) { + uni.showToast({ + icon: 'none', + title: '请上传现场图片' + }); + return false; + } + if (!this.ruleForm.deviceName) { + uni.showToast({ + icon: 'none', + title: '请输入设备名称' + }); + return false; + } + if (!this.ruleForm.deviceType) { + uni.showToast({ + icon: 'none', + title: '请选择设备类型' + }); + return false; + } + if (!this.ruleForm.warrantyIssue) { + uni.showToast({ + icon: 'none', + title: '请选择保修问题' + }); + return false; + } + if (!this.ruleForm.memo) { + uni.showToast({ + icon: 'none', + title: '请输入备注信息' + }); + return false; + } + + return true; }, submit() { - let show = this.check() - if(show == false){ - return - } - this.ruleForm.applicationTime = this.currentTime() - this.ruleForm.createUser = uni.getStorageSync('user').phone - this.ruleForm.onSitePhoto = this.ruleForm.onSitePhoto.map(item=>{ - return item.replace(this.$img,''); - }) - let info = { - ...this.ruleForm, - onSitePhoto:this.ruleForm.onSitePhoto.join(','), - } - this.$http.sendRequest('/cereReportIssuesRepairs/add', 'POST',info,1).then(res => { - uni.navigateTo({ - url: '/pages/serve/serve' - }) - }).catch(err => { - console.log(err) - //请求失败 - }) - - }, - // 获取时间 - 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; - }, - onsuccess1(e, file, fileList, ziduan) { - console.error(e, file, fileList, ziduan) - uni.uploadFile({ - url: this.$upload, // 仅为示例,请替换为您的服务器上传接口 - filePath: e[0].url, - name: 'file', // 后端接收的文件参数名 - formData: { - filePath: 'xcx', // 其他表单数据 - }, - success: (uploadFileRes) => { - this.ruleForm.onSitePhoto.push(this.$img + JSON.parse(uploadFileRes.data).data) - uni.showToast({ - title: '上传成功', - icon: 'success', - }); - }, - fail: (err) => { - console.error('上传失败', err); - uni.showToast({ - title: '上传失败', - icon: 'none', - }); - }, - }); - }, + let show = this.check() + if (show == false) { + return + } + this.ruleForm.applicationTime = this.currentTime() + this.ruleForm.createUser = uni.getStorageSync('user').phone + this.ruleForm.onSitePhoto = this.ruleForm.onSitePhoto.map(item => { + return item.replace(this.$img, ''); + }) + let info = { + ...this.ruleForm, + onSitePhoto: this.ruleForm.onSitePhoto.join(','), + } + this.$http.sendRequest('/cereReportIssuesRepairs/add', 'POST', info, 1).then(res => { + uni.redirectTo({ + url: '/pagesA/tishi/tishi' + }) + }).catch(err => { + console.log(err) + //请求失败 + }) + + }, + // 获取时间 + 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; + }, + onsuccess1(e, file, fileList, ziduan) { + console.error(e, file, fileList, ziduan) + uni.uploadFile({ + url: this.$upload, // 仅为示例,请替换为您的服务器上传接口 + filePath: e[0].url, + name: 'file', // 后端接收的文件参数名 + formData: { + filePath: 'xcx', // 其他表单数据 + }, + success: (uploadFileRes) => { + this.ruleForm.onSitePhoto.push(this.$img + JSON.parse(uploadFileRes.data).data) + uni.showToast({ + title: '上传成功', + icon: 'success', + }); + }, + fail: (err) => { + console.error('上传失败', err); + uni.showToast({ + title: '上传失败', + icon: 'none', + }); + }, + }); + }, } } + \ No newline at end of file diff --git a/lvdao-miniapp/pages/serve/serve.vue b/lvdao-miniapp/pages/serve/serve.vue index a9bac99..5c8f7c6 100644 --- a/lvdao-miniapp/pages/serve/serve.vue +++ b/lvdao-miniapp/pages/serve/serve.vue @@ -2,7 +2,7 @@ - + @@ -14,9 +14,11 @@ 申请时间:{{item.applicationTime}} - 状态:{{item.status=='1'?'受理中':'已完成'}} + 状态:{{item.status=='1'?'受理中':'已完成'}} + - 评价 + 评价 @@ -27,23 +29,27 @@ 申请时间:{{item.applicationTime}} - 状态:{{item.status=='1'?'受理中':'已完成'}} + 状态:{{item.status=='1'?'受理中':'已完成'}} + - 评价 + 评价 - + 评价 - - - - 剩余 {{ remainingCharacters }} 字 - - + + + + 剩余 {{ remainingCharacters }} 字 + + 提交 @@ -54,104 +60,102 @@ export default { data() { return { - recordList:[ - + recordList: [ + ], - toushu:[], + toushu: [], pageindex: { + start:'投诉记录', pageNumber: 0, pageSize: 10 }, - activesType: [ - { + activesType: [{ value: 0, label: '投诉记录' - },{ + }, { value: 1, label: '报修记录' - } - ], - typeShow:false, - joinShow:false, - form:{ - estimate:'', - id:'' + }], + typeShow: false, + joinShow: false, + form: { + estimate: '', + id: '' }, - indexMsg :0 + indexMsg: 0 } }, - mounted(){ + mounted() { this.getALL() }, - computed: { - remainingCharacters() { - const maxLength = 150; - return maxLength - this.form.estimate.length; - } - }, + computed: { + remainingCharacters() { + const maxLength = 150; + return maxLength - this.form.estimate.length; + } + }, methods: { - baoShow(val,ids){ - this.joinShow = true - this.form.estimate = '' - this.form.id = ids - this.indexMsg = val + baoShow(val, ids) { + this.joinShow = true + this.form.estimate = '' + this.form.id = ids + this.indexMsg = val }, - getALL(){ - this.pageindex.createUser =uni.getStorageSync('user').phone - this.$http.sendRequest('/cereComplaintsSuggestions/queryByPage', 'POST',this.pageindex,1).then(res => { - this.toushu = res.data.data.content - }).catch(err => { - console.log(err) - //请求失败 + getALL() { + this.pageindex.createUser = uni.getStorageSync('user').phone + this.$http.sendRequest('/cereComplaintsSuggestions/queryByPage', 'POST', this.pageindex, 1).then( + res => { + this.toushu = res.data.data.content + this.recordList = [] }) }, - recordXq(item){ - const encodedItem = encodeURIComponent(JSON.stringify(item)); + recordXq(item) { + const encodedItem = encodeURIComponent(JSON.stringify(item)); uni.navigateTo({ - url: `/pages/serve/jiDed?item=${encodedItem}`, - }) + url: `/pages/serve/jiDed?item=${encodedItem}`, + }) }, typeChange(e) { - - this.pageindex.start = e[0].labels - if(e[0].value == 0){ - - this.$http.sendRequest('/cereComplaintsSuggestions/queryByPage', 'POST',this.pageindex,1).then(res => { + this.pageindex.start = e[0].label + if (e[0].value == 0) { + + this.$http.sendRequest('/cereComplaintsSuggestions/queryByPage', 'POST', this.pageindex, 1).then( + res => { this.toushu = res.data.data.content - this.recordList =[] - }) - }else{ - this.$http.sendRequest('/cereReportIssuesRepairs/queryByPage', 'POST',this.pageindex,1).then(res => { - this.recordList = res.data.data.content - this.toushu = [] + this.recordList = [] + }) + } else { + this.$http.sendRequest('/cereReportIssuesRepairs/queryByPage', 'POST', this.pageindex, 1).then(res => { + this.recordList = res.data.data.content + this.toushu = [] }) } }, - submit(){ - if (!this.form.estimate) { - uni.showToast({ - icon: 'none', - title: '请输入评价信息' - }); - return; - } - if(this.indexMsg == 1){ - this.$http.sendRequest('/cereComplaintsSuggestions/edit', 'POST',this.form,1).then(res => { - uni.showToast({ - icon: 'success', - title: '评价成功' - }); - }) - this.joinShow = false - }else{ - this.$http.sendRequest('/cereReportIssuesRepairs/edit', 'POST',this.form,1).then(res => { - uni.showToast({ - icon: 'success', - title: '评价成功' - }); - }) - this.joinShow = false - } + submit() { + if (!this.form.estimate) { + uni.showToast({ + icon: 'none', + title: '请输入评价信息' + }); + return; + } + if (this.indexMsg == 1) { + this.$http.sendRequest('/cereComplaintsSuggestions/edit', 'POST', this.form, 1).then(res => { + uni.showToast({ + icon: 'success', + title: '评价成功' + }); + }) + this.joinShow = false + } else { + this.$http.sendRequest('/cereReportIssuesRepairs/edit', 'POST', this.form, 1).then(res => { + uni.showToast({ + icon: 'success', + title: '评价成功' + }); + }) + this.joinShow = false + } } } } @@ -159,4 +163,4 @@ + \ No newline at end of file diff --git a/lvdao-miniapp/pagesA/myZiyuan/myZiDetails.vue b/lvdao-miniapp/pagesA/myZiyuan/myZiDetails.vue index 8d6d5df..7972b97 100644 --- a/lvdao-miniapp/pagesA/myZiyuan/myZiDetails.vue +++ b/lvdao-miniapp/pagesA/myZiyuan/myZiDetails.vue @@ -1,20 +1,20 @@ - - - - - - - - - - - + + + + + + + + + + - + 租赁状态 {{record.auditStatus =='1'?'待审核':record.auditStatus =='2'?'待签约':record.auditStatus =='3'?'已驳回':record.auditStatus =='4'?'已签约':'已终止'}} @@ -34,260 +34,269 @@ 付款日 {{heData.paymentDay || '无'}} - + - + + + 商铺名称 + {{record.cereBasicInformationShop.shopName}} + + + 商铺类型 + {{record.cereBasicInformationShop.shopType=='1'?'移动铺位':record.cereBasicInformationShop.shopType=='2'?'固定铺位':'无'}} + + + + 实际使用面积 + {{record.cereBasicInformationShop.actualUsableArea || '无'}} + + + 产权面积 + {{record.cereBasicInformationShop.propertyArea || '无' }} + + + 所属区域 + {{record.cereBasicInformationShop.belongingRegion}} + + + 归属部门 + {{record.cereBasicInformationShop.belongingDepartment || '无'}} + + + 详细地址 + {{record.cereBasicInformationShop.detailedLocation}} + + + + + + + + + 广告位名称 + {{record.cereAdvertisingInformation.advertisingName}} + + + 广告位类型 + {{record.cereAdvertisingInformation.advertisingType}} + + + 所属端 + {{record.cereAdvertisingInformation.applicationTime}} + + + 广告材质 + {{record.cereAdvertisingInformation.advertisingMaterial}} + + + 广告尺寸 + {{record.cereAdvertisingInformation.dimensions}} + + + + + + + + 场地名称 + {{record.cereBasicInformationVenue.venueName}} + + + 场地类型 + {{record.cereBasicInformationVenue.venueType}} + + + 实际使用面积 + {{record.cereBasicInformationVenue.actualArea}} + + + 所属区域 + {{record.cereBasicInformationVenue.district}} + + + 详细位置 + {{record.cereBasicInformationVenue.detailedLocation}} + + + + + + + - 商铺名称 - {{record.cereBasicInformationShop.shopName}} + 店铺名称 + {{myshopMsg.shopName}} - 商铺类型 - {{record.cereBasicInformationShop.shopType=='1'?'移动铺位':record.cereBasicInformationShop.shopType=='2'?'固定铺位':'无'}} + 店铺介绍 + + + {{myshopMsg.shopDescription}} - - 实际使用面积 - {{record.cereBasicInformationShop.actualUsableArea || '无'}} + 营业时间 + + + {{myshopMsg.businessHours}} - 产权面积 - {{record.cereBasicInformationShop.propertyArea || '无' }} + 联系电话 + {{myshopMsg.contactNumber}} - 所属区域 - {{record.cereBasicInformationShop.belongingRegion}} + 位置描述 + + + {{myshopMsg.locationDescription}} - 归属部门 - {{record.cereBasicInformationShop.belongingDepartment || '无'}} + 店内照片 + + + + + + + + + + - 详细地址 - {{record.cereBasicInformationShop.detailedLocation}} - - + 投放内容 - - - - - - 广告位名称 - {{record.cereAdvertisingInformation.advertisingName}} - - - 广告位类型 - {{record.cereAdvertisingInformation.advertisingType}} - - - 所属端 - {{record.cereAdvertisingInformation.applicationTime}} - - - 广告材质 - {{record.cereAdvertisingInformation.advertisingMaterial}} - - - 广告尺寸 - {{record.cereAdvertisingInformation.dimensions}} - - - - - - - - 场地名称 - {{record.cereBasicInformationVenue.venueName}} - - - 场地类型 - {{record.cereBasicInformationVenue.venueType}} - - - 实际使用面积 - {{record.cereBasicInformationVenue.actualArea}} - - - 所属区域 - {{record.cereBasicInformationVenue.district}} - - - 详细位置 - {{record.cereBasicInformationVenue.detailedLocation}} - - - - - - - - - 店铺名称 - {{myshopMsg.shopName}} - - - 店铺介绍 - - - {{myshopMsg.shopDescription}} - - - 营业时间 - - - {{myshopMsg.businessHours}} - - - 联系电话 - {{myshopMsg.contactNumber}} - - - 位置描述 - - - {{myshopMsg.locationDescription}} - - - 店内照片 - - - - - - - - - - - - - 投放内容 - - - - - - - 添加我的店铺信息 - - 申请退租 - 申请续租 - 修改资料 - - - + + + + + + 添加我的店铺信息 + + 申请退租 + 申请续租 + 修改资料 + + + - + + \ No newline at end of file diff --git a/lvdao-miniapp/pagesA/tishi/tishi.vue b/lvdao-miniapp/pagesA/tishi/tishi.vue new file mode 100644 index 0000000..8d8eecf --- /dev/null +++ b/lvdao-miniapp/pagesA/tishi/tishi.vue @@ -0,0 +1,22 @@ + + + + + + + + + diff --git a/lvdao-miniapp/pagesA/web/web.vue b/lvdao-miniapp/pagesA/web/web.vue new file mode 100644 index 0000000..fd71bbd --- /dev/null +++ b/lvdao-miniapp/pagesA/web/web.vue @@ -0,0 +1,22 @@ + + + + + + + + + diff --git a/lvdao-miniapp/static/icon/bg1.png b/lvdao-miniapp/static/icon/bg1.png new file mode 100644 index 0000000..3de4136 --- /dev/null +++ b/lvdao-miniapp/static/icon/bg1.png diff --git a/lvdao-miniapp/static/icon/icon1.png b/lvdao-miniapp/static/icon/icon1.png new file mode 100644 index 0000000..43a5851 --- /dev/null +++ b/lvdao-miniapp/static/icon/icon1.png diff --git a/lvdao-miniapp/static/icon/icon2.png b/lvdao-miniapp/static/icon/icon2.png new file mode 100644 index 0000000..f1465e4 --- /dev/null +++ b/lvdao-miniapp/static/icon/icon2.png diff --git a/lvdao-miniapp/static/icon/icon3.png b/lvdao-miniapp/static/icon/icon3.png new file mode 100644 index 0000000..36536dc --- /dev/null +++ b/lvdao-miniapp/static/icon/icon3.png diff --git a/lvdao-miniapp/static/icon/icon4.png b/lvdao-miniapp/static/icon/icon4.png new file mode 100644 index 0000000..36bc74f --- /dev/null +++ b/lvdao-miniapp/static/icon/icon4.png diff --git a/lvdao-miniapp/static/icon/icon5.png b/lvdao-miniapp/static/icon/icon5.png new file mode 100644 index 0000000..07a6aca --- /dev/null +++ b/lvdao-miniapp/static/icon/icon5.png diff --git a/lvdao-miniapp/static/icon/icon6.png b/lvdao-miniapp/static/icon/icon6.png new file mode 100644 index 0000000..b9826a7 --- /dev/null +++ b/lvdao-miniapp/static/icon/icon6.png
- 剩余 {{ remainingCharacters }} 字 -
+ 剩余 {{ remainingCharacters }} 字 +