Commit 468cd09772dbb2a538dc3c2daedf90148385d1b0
Merge branch 'master' of http://39.98.150.180/webapp/GreenwayWeb
Showing
13 changed files
with
105 additions
and
50 deletions
admin-web-master/src/views/activity/activityBz.vue
| @@ -812,7 +812,7 @@ | @@ -812,7 +812,7 @@ | ||
| 812 | // .then(data => console.log(data)) | 812 | // .then(data => console.log(data)) |
| 813 | // .catch(error => console.log(error)); | 813 | // .catch(error => console.log(error)); |
| 814 | 814 | ||
| 815 | - this.$emit('childClose', false); | 815 | + |
| 816 | this.$refs.editor.html = '<p><br></p>' | 816 | this.$refs.editor.html = '<p><br></p>' |
| 817 | this.ruleForm = { | 817 | this.ruleForm = { |
| 818 | classificationCode: '', | 818 | classificationCode: '', |
| @@ -843,7 +843,7 @@ | @@ -843,7 +843,7 @@ | ||
| 843 | solutionEditor: null, | 843 | solutionEditor: null, |
| 844 | } | 844 | } |
| 845 | }) | 845 | }) |
| 846 | - | 846 | + this.$emit('childClose', false); |
| 847 | } else { | 847 | } else { |
| 848 | this.$message({ | 848 | this.$message({ |
| 849 | message: '请填写数据', | 849 | message: '请填写数据', |
admin-web-master/src/views/activity/activityHis.vue
| @@ -283,9 +283,7 @@ | @@ -283,9 +283,7 @@ | ||
| 283 | </el-table-column> | 283 | </el-table-column> |
| 284 | <el-table-column label="操作" min-width="20%"> | 284 | <el-table-column label="操作" min-width="20%"> |
| 285 | <template slot-scope="scope"> | 285 | <template slot-scope="scope"> |
| 286 | - <!-- <div class="tableBtn greens" @click="Down(scope.row)">下载</div> --> | ||
| 287 | - <a class="tableBtn greens" :href="scope.row.attachmentUrl" | ||
| 288 | - target="_blank" download>下载</a> | 286 | + <div class="tableBtn greens" @click="Down($baseURL+scope.row.attachmentUrl)">下载</div> |
| 289 | </template> | 287 | </template> |
| 290 | </el-table-column> | 288 | </el-table-column> |
| 291 | 289 | ||
| @@ -935,9 +933,7 @@ | @@ -935,9 +933,7 @@ | ||
| 935 | </el-table-column> | 933 | </el-table-column> |
| 936 | <el-table-column label="操作" min-width="20%"> | 934 | <el-table-column label="操作" min-width="20%"> |
| 937 | <template slot-scope="scope"> | 935 | <template slot-scope="scope"> |
| 938 | - <!-- <div class="tableBtn greens" @click="Down(scope.row)">下载</div> --> | ||
| 939 | - <a class="tableBtn greens" :href="scope.row.attachmentUrl" target="_blank" | ||
| 940 | - download>下载</a> | 936 | + <div class="tableBtn greens" @click="Down($baseURL+scope.row.attachmentUrl)">下载</div> |
| 941 | </template> | 937 | </template> |
| 942 | </el-table-column> | 938 | </el-table-column> |
| 943 | 939 | ||
| @@ -2515,7 +2511,15 @@ this.ListOne = item.planName | @@ -2515,7 +2511,15 @@ this.ListOne = item.planName | ||
| 2515 | }) | 2511 | }) |
| 2516 | }, | 2512 | }, |
| 2517 | 2513 | ||
| 2518 | - | 2514 | +Down(url){ |
| 2515 | + const a = document.createElement('a'); | ||
| 2516 | + a.href = url; | ||
| 2517 | + a.download = url.split('/').pop(); // 以文件名作为下载后的文件名 | ||
| 2518 | + a.style.display = 'none'; | ||
| 2519 | + document.body.appendChild(a); | ||
| 2520 | + a.click(); | ||
| 2521 | + document.body.removeChild(a); | ||
| 2522 | + }, | ||
| 2519 | async daochu() { | 2523 | async daochu() { |
| 2520 | let res = await excelQueryByPage(this.pageindex) | 2524 | let res = await excelQueryByPage(this.pageindex) |
| 2521 | if (!res) { | 2525 | if (!res) { |
admin-web-master/src/views/activity/activitySp.vue
| @@ -734,9 +734,9 @@ | @@ -734,9 +734,9 @@ | ||
| 734 | </el-table-column> | 734 | </el-table-column> |
| 735 | <el-table-column label="操作" min-width="20%"> | 735 | <el-table-column label="操作" min-width="20%"> |
| 736 | <template slot-scope="scope"> | 736 | <template slot-scope="scope"> |
| 737 | - <!-- <div class="tableBtn greens" @click="Down(scope.row)">下载</div> --> | ||
| 738 | - <a class="tableBtn greens" :href="scope.row.attachmentUrl" | ||
| 739 | - target="_blank" download>下载</a> | 737 | + <div class="tableBtn greens" @click="Down($baseURL+scope.row.attachmentUrl)">下载</div> |
| 738 | + <!-- <a class="tableBtn greens" :href="scope.row.attachmentUrl" | ||
| 739 | + target="_blank" download>下载</a> --> | ||
| 740 | </template> | 740 | </template> |
| 741 | </el-table-column> | 741 | </el-table-column> |
| 742 | 742 | ||
| @@ -1622,6 +1622,15 @@ | @@ -1622,6 +1622,15 @@ | ||
| 1622 | this.liuYe = 1 | 1622 | this.liuYe = 1 |
| 1623 | 1623 | ||
| 1624 | }, | 1624 | }, |
| 1625 | + Down(url){ | ||
| 1626 | + const a = document.createElement('a'); | ||
| 1627 | + a.href = url; | ||
| 1628 | + a.download = url.split('/').pop(); // 以文件名作为下载后的文件名 | ||
| 1629 | + a.style.display = 'none'; | ||
| 1630 | + document.body.appendChild(a); | ||
| 1631 | + a.click(); | ||
| 1632 | + document.body.removeChild(a); | ||
| 1633 | + }, | ||
| 1625 | } | 1634 | } |
| 1626 | } | 1635 | } |
| 1627 | </script> | 1636 | </script> |
admin-web-master/src/views/activity/index.vue
| @@ -123,7 +123,7 @@ | @@ -123,7 +123,7 @@ | ||
| 123 | <div class="tableBtn greens" @click="xiaoguo(scope.row)" | 123 | <div class="tableBtn greens" @click="xiaoguo(scope.row)" |
| 124 | v-if="scope.row.state == '5'">效果评估</div> | 124 | v-if="scope.row.state == '5'">效果评估</div> |
| 125 | <!-- <div class="tableBtn greens">策略调整</div> --> | 125 | <!-- <div class="tableBtn greens">策略调整</div> --> |
| 126 | - <div class="tableBtn greens" @click="koop(scope.row)">复制</div> | 126 | + <!-- <div class="tableBtn greens" @click="koop(scope.row)">复制</div> --> |
| 127 | <div class="tableBtn greens" @click="handleDelete(scope.row.id)">删除</div> | 127 | <div class="tableBtn greens" @click="handleDelete(scope.row.id)">删除</div> |
| 128 | </template> | 128 | </template> |
| 129 | </el-table-column> | 129 | </el-table-column> |
| @@ -736,9 +736,9 @@ | @@ -736,9 +736,9 @@ | ||
| 736 | </el-table-column> | 736 | </el-table-column> |
| 737 | <el-table-column label="操作" min-width="20%"> | 737 | <el-table-column label="操作" min-width="20%"> |
| 738 | <template slot-scope="scope"> | 738 | <template slot-scope="scope"> |
| 739 | - <!-- <div class="tableBtn greens" @click="Down(scope.row)">下载</div> --> | ||
| 740 | - <a class="tableBtn greens" :href="$baseURL+scope.row.attachmentUrl" | ||
| 741 | - target="_blank" download>下载</a> | 739 | + <div class="tableBtn greens" @click="Down($baseURL+scope.row.attachmentUrl)">下载</div> |
| 740 | + <!-- <a class="tableBtn greens" :href="$baseURL+scope.row.attachmentUrl" | ||
| 741 | + target="_blank" download>下载</a> --> | ||
| 742 | </template> | 742 | </template> |
| 743 | </el-table-column> | 743 | </el-table-column> |
| 744 | 744 | ||
| @@ -2262,6 +2262,15 @@ | @@ -2262,6 +2262,15 @@ | ||
| 2262 | 2262 | ||
| 2263 | 2263 | ||
| 2264 | }, | 2264 | }, |
| 2265 | + Down(url){ | ||
| 2266 | + const a = document.createElement('a'); | ||
| 2267 | + a.href = url; | ||
| 2268 | + a.download = url.split('/').pop(); // 以文件名作为下载后的文件名 | ||
| 2269 | + a.style.display = 'none'; | ||
| 2270 | + document.body.appendChild(a); | ||
| 2271 | + a.click(); | ||
| 2272 | + document.body.removeChild(a); | ||
| 2273 | + }, | ||
| 2265 | async daochu() { | 2274 | async daochu() { |
| 2266 | let res = await excelQueryByPage(this.pageindex) | 2275 | let res = await excelQueryByPage(this.pageindex) |
| 2267 | if (!res) { | 2276 | if (!res) { |
admin-web-master/src/views/advertisement/advertisingReview/advertisingReview.vue
| @@ -59,11 +59,11 @@ | @@ -59,11 +59,11 @@ | ||
| 59 | 59 | ||
| 60 | 60 | ||
| 61 | <!-- <el-table-column label="申请人" prop="applicant" ></el-table-column> --> | 61 | <!-- <el-table-column label="申请人" prop="applicant" ></el-table-column> --> |
| 62 | - <el-table-column label="投放定价" prop="tenant"> | 62 | + <!-- <el-table-column label="投放定价" prop="tenant"> |
| 63 | <template slot-scope="scope"> | 63 | <template slot-scope="scope"> |
| 64 | {{scope.row.rotationOrde || '-'}} | 64 | {{scope.row.rotationOrde || '-'}} |
| 65 | </template> | 65 | </template> |
| 66 | - </el-table-column> | 66 | + </el-table-column> --> |
| 67 | <el-table-column label="投放时间" prop="scheduleTime" > | 67 | <el-table-column label="投放时间" prop="scheduleTime" > |
| 68 | </el-table-column> | 68 | </el-table-column> |
| 69 | <el-table-column prop="applicationTime" label="提交时间" > | 69 | <el-table-column prop="applicationTime" label="提交时间" > |
admin-web-master/src/views/atmosphere/atmosphereBz.vue
| @@ -718,21 +718,23 @@ | @@ -718,21 +718,23 @@ | ||
| 718 | message: '保存成功', | 718 | message: '保存成功', |
| 719 | type: 'success' | 719 | type: 'success' |
| 720 | }); | 720 | }); |
| 721 | + console.log(this.tableData,'111111111111111111') | ||
| 721 | for (let i = 0; i < this.tableData.length; i++) { | 722 | for (let i = 0; i < this.tableData.length; i++) { |
| 722 | this.tableData[i].detailsId = res.data.id | 723 | this.tableData[i].detailsId = res.data.id |
| 723 | MingAdd(this.tableData[i]).then(res => { | 724 | MingAdd(this.tableData[i]).then(res => { |
| 724 | 725 | ||
| 725 | }) | 726 | }) |
| 726 | } | 727 | } |
| 728 | + console.log(this.dataList,'22222222222222222222') | ||
| 727 | for (let i = 0; i < this.dataList.length; i++) { | 729 | for (let i = 0; i < this.dataList.length; i++) { |
| 728 | - let fuji = { | ||
| 729 | - detailsId: res.data.id, | ||
| 730 | - attachmentName: this.dataList[i].name, | ||
| 731 | - attachmentUrl: this.dataList[i].response.data.url, | ||
| 732 | - } | ||
| 733 | - fujiaAdd(fuji).then(res => { | ||
| 734 | - | ||
| 735 | - }) | 730 | + let fuji = { |
| 731 | + detailsId: res.data.id, | ||
| 732 | + attachmentName: this.dataList[i].name, | ||
| 733 | + attachmentUrl: this.dataList[i].url, | ||
| 734 | + } | ||
| 735 | + fujiaAdd(fuji).then(res => { | ||
| 736 | + console.log('成功') | ||
| 737 | + }) | ||
| 736 | } | 738 | } |
| 737 | 739 | ||
| 738 | // const pdf = new jsPDF('p', 'mm', 'a4'); | 740 | // const pdf = new jsPDF('p', 'mm', 'a4'); |
| @@ -760,7 +762,7 @@ | @@ -760,7 +762,7 @@ | ||
| 760 | // .then(response => response.json()) | 762 | // .then(response => response.json()) |
| 761 | // .then(data => console.log(data)) | 763 | // .then(data => console.log(data)) |
| 762 | // .catch(error => console.log(error)); | 764 | // .catch(error => console.log(error)); |
| 763 | - | 765 | + this.$emit('childClose', false); |
| 764 | this.$refs.editor.html = '<p><br></p>' | 766 | this.$refs.editor.html = '<p><br></p>' |
| 765 | this.ruleForm = { | 767 | this.ruleForm = { |
| 766 | classificationCode: '', | 768 | classificationCode: '', |
admin-web-master/src/views/atmosphere/atmosphereGl.vue
| @@ -122,7 +122,7 @@ | @@ -122,7 +122,7 @@ | ||
| 122 | <div class="tableBtn greens" @click="xiaoguo(scope.row)" | 122 | <div class="tableBtn greens" @click="xiaoguo(scope.row)" |
| 123 | v-if="scope.row.state == '5'">效果评估</div> | 123 | v-if="scope.row.state == '5'">效果评估</div> |
| 124 | <!-- <div class="tableBtn greens">策略调整</div> --> | 124 | <!-- <div class="tableBtn greens">策略调整</div> --> |
| 125 | - <div class="tableBtn greens" @click="koop(scope.row)">复制</div> | 125 | + <!-- <div class="tableBtn greens" @click="koop(scope.row)">复制</div> --> |
| 126 | <div class="tableBtn greens" @click="handleDelete(scope.row.id)">删除</div> | 126 | <div class="tableBtn greens" @click="handleDelete(scope.row.id)">删除</div> |
| 127 | </template> | 127 | </template> |
| 128 | </el-table-column> | 128 | </el-table-column> |
| @@ -730,8 +730,7 @@ | @@ -730,8 +730,7 @@ | ||
| 730 | </el-table-column> | 730 | </el-table-column> |
| 731 | <el-table-column label="操作" prop="text" min-width="20%"> | 731 | <el-table-column label="操作" prop="text" min-width="20%"> |
| 732 | <template slot-scope="scope"> | 732 | <template slot-scope="scope"> |
| 733 | - <a class="tableBtn greens" :href="scope.row.attachmentUrl" target="_blank" | ||
| 734 | - download>下载</a> | 733 | + <div class="tableBtn greens" @click="Down($baseURL+scope.row.attachmentUrl)">下载</div> |
| 735 | </template> | 734 | </template> |
| 736 | </el-table-column> | 735 | </el-table-column> |
| 737 | 736 | ||
| @@ -2304,6 +2303,15 @@ | @@ -2304,6 +2303,15 @@ | ||
| 2304 | 2303 | ||
| 2305 | 2304 | ||
| 2306 | }, | 2305 | }, |
| 2306 | + Down(url){ | ||
| 2307 | + const a = document.createElement('a'); | ||
| 2308 | + a.href = url; | ||
| 2309 | + a.download = url.split('/').pop(); // 以文件名作为下载后的文件名 | ||
| 2310 | + a.style.display = 'none'; | ||
| 2311 | + document.body.appendChild(a); | ||
| 2312 | + a.click(); | ||
| 2313 | + document.body.removeChild(a); | ||
| 2314 | + }, | ||
| 2307 | async daochu() { | 2315 | async daochu() { |
| 2308 | let res = await excelQueryByPage(this.pageindex) | 2316 | let res = await excelQueryByPage(this.pageindex) |
| 2309 | if (!res) { | 2317 | if (!res) { |
admin-web-master/src/views/atmosphere/atmosphereHis.vue
| @@ -283,9 +283,7 @@ | @@ -283,9 +283,7 @@ | ||
| 283 | </el-table-column> | 283 | </el-table-column> |
| 284 | <el-table-column label="操作" min-width="20%"> | 284 | <el-table-column label="操作" min-width="20%"> |
| 285 | <template slot-scope="scope"> | 285 | <template slot-scope="scope"> |
| 286 | - <!-- <div class="tableBtn greens" @click="Down(scope.row)">下载</div> --> | ||
| 287 | - <a class="tableBtn greens" :href="scope.row.attachmentUrl" | ||
| 288 | - target="_blank" download>下载</a> | 286 | + <div class="tableBtn greens" @click="Down($baseURL+scope.row.attachmentUrl)">下载</div> |
| 289 | </template> | 287 | </template> |
| 290 | </el-table-column> | 288 | </el-table-column> |
| 291 | 289 | ||
| @@ -1106,9 +1104,7 @@ | @@ -1106,9 +1104,7 @@ | ||
| 1106 | </el-table-column> | 1104 | </el-table-column> |
| 1107 | <el-table-column label="操作" min-width="20%"> | 1105 | <el-table-column label="操作" min-width="20%"> |
| 1108 | <template slot-scope="scope"> | 1106 | <template slot-scope="scope"> |
| 1109 | - <!-- <div class="tableBtn greens" @click="Down(scope.row)">下载</div> --> | ||
| 1110 | - <a class="tableBtn greens" :href="scope.row.attachmentUrl" target="_blank" | ||
| 1111 | - download>下载</a> | 1107 | + <div class="tableBtn greens" @click="Down($baseURL+scope.row.attachmentUrl)">下载</div> |
| 1112 | </template> | 1108 | </template> |
| 1113 | </el-table-column> | 1109 | </el-table-column> |
| 1114 | 1110 | ||
| @@ -2667,7 +2663,15 @@ this.ListOne = item.planName | @@ -2667,7 +2663,15 @@ this.ListOne = item.planName | ||
| 2667 | this.getAll() | 2663 | this.getAll() |
| 2668 | }) | 2664 | }) |
| 2669 | }, | 2665 | }, |
| 2670 | - | 2666 | +Down(url){ |
| 2667 | + const a = document.createElement('a'); | ||
| 2668 | + a.href = url; | ||
| 2669 | + a.download = url.split('/').pop(); // 以文件名作为下载后的文件名 | ||
| 2670 | + a.style.display = 'none'; | ||
| 2671 | + document.body.appendChild(a); | ||
| 2672 | + a.click(); | ||
| 2673 | + document.body.removeChild(a); | ||
| 2674 | + }, | ||
| 2671 | 2675 | ||
| 2672 | async daochu() { | 2676 | async daochu() { |
| 2673 | let res = await excelQueryByPage(this.pageindex) | 2677 | let res = await excelQueryByPage(this.pageindex) |
admin-web-master/src/views/atmosphere/atmosphereSp.vue
| @@ -890,7 +890,7 @@ | @@ -890,7 +890,7 @@ | ||
| 890 | </el-table-column> | 890 | </el-table-column> |
| 891 | <el-table-column label="操作" prop="text" min-width="20%"> | 891 | <el-table-column label="操作" prop="text" min-width="20%"> |
| 892 | <template slot-scope="scope"> | 892 | <template slot-scope="scope"> |
| 893 | - <a class="tableBtn greens" :href="scope.row.attachmentUrl" target="_blank" download>下载</a> | 893 | + <div class="tableBtn greens" @click="Down($baseURL+scope.row.attachmentUrl)">下载</div> |
| 894 | </template> | 894 | </template> |
| 895 | </el-table-column> | 895 | </el-table-column> |
| 896 | 896 | ||
| @@ -1671,6 +1671,15 @@ | @@ -1671,6 +1671,15 @@ | ||
| 1671 | formTime(data){ | 1671 | formTime(data){ |
| 1672 | this.zhixingList.planTime = data | 1672 | this.zhixingList.planTime = data |
| 1673 | }, | 1673 | }, |
| 1674 | + Down(url){ | ||
| 1675 | + const a = document.createElement('a'); | ||
| 1676 | + a.href = url; | ||
| 1677 | + a.download = url.split('/').pop(); // 以文件名作为下载后的文件名 | ||
| 1678 | + a.style.display = 'none'; | ||
| 1679 | + document.body.appendChild(a); | ||
| 1680 | + a.click(); | ||
| 1681 | + document.body.removeChild(a); | ||
| 1682 | + }, | ||
| 1674 | } | 1683 | } |
| 1675 | } | 1684 | } |
| 1676 | </script> | 1685 | </script> |
admin-web-master/src/views/serve/procedure.vue
| @@ -116,7 +116,6 @@ | @@ -116,7 +116,6 @@ | ||
| 116 | <div v-if="edit" style=" | 116 | <div v-if="edit" style=" |
| 117 | height: 38px; | 117 | height: 38px; |
| 118 | line-height: 38px; | 118 | line-height: 38px; |
| 119 | - border: 1px solid #ebeef5; | ||
| 120 | padding: 0 20px; | 119 | padding: 0 20px; |
| 121 | font-size: 14px; | 120 | font-size: 14px; |
| 122 | "> | 121 | "> |
| @@ -143,7 +142,6 @@ | @@ -143,7 +142,6 @@ | ||
| 143 | <div v-if="edit" style=" | 142 | <div v-if="edit" style=" |
| 144 | height: 38px; | 143 | height: 38px; |
| 145 | line-height: 38px; | 144 | line-height: 38px; |
| 146 | - border: 1px solid #ebeef5; | ||
| 147 | padding: 0 20px; | 145 | padding: 0 20px; |
| 148 | font-size: 14px; | 146 | font-size: 14px; |
| 149 | "> | 147 | "> |
| @@ -176,11 +174,20 @@ | @@ -176,11 +174,20 @@ | ||
| 176 | <div style=" | 174 | <div style=" |
| 177 | font-size: 14px; | 175 | font-size: 14px; |
| 178 | "> | 176 | "> |
| 179 | - <div> | ||
| 180 | - <div style="padding:20px;" v-if="edit" | ||
| 181 | - v-html="secondData.announcementContent"></div> | ||
| 182 | - <wang-editor v-model="secondData.announcementContent" | ||
| 183 | - ref="editor" v-else></wang-editor> | 177 | + <div style="padding:20px;width: 100%;" v-if="edit" |
| 178 | + v-html="secondData.announcementContent"></div> | ||
| 179 | + <!-- <wang-editor v-model="secondData.announcementContent" | ||
| 180 | + ref="editor" v-else></wang-editor> --> | ||
| 181 | + <el-input | ||
| 182 | + style="width: 100%;" | ||
| 183 | + type="textarea" | ||
| 184 | + :rows="5" | ||
| 185 | + placeholder="请输入内容" | ||
| 186 | + v-else | ||
| 187 | + v-model="secondData.announcementContent"/> | ||
| 188 | + <div style="width: 100%;"> | ||
| 189 | + | ||
| 190 | + | ||
| 184 | </div> | 191 | </div> |
| 185 | </div> | 192 | </div> |
| 186 | 193 | ||
| @@ -244,8 +251,12 @@ | @@ -244,8 +251,12 @@ | ||
| 244 | </el-form-item> | 251 | </el-form-item> |
| 245 | <el-form-item label="公告内容" > | 252 | <el-form-item label="公告内容" > |
| 246 | <div> | 253 | <div> |
| 247 | - <wang-editor v-model="ruleForm.announcementContent" ref="editor"></wang-editor> | ||
| 248 | - | 254 | + <!-- <wang-editor v-model="ruleForm.announcementContent" ref="editor"></wang-editor> --> |
| 255 | + <el-input | ||
| 256 | + type="textarea" | ||
| 257 | + :rows="5" | ||
| 258 | + placeholder="请输入内容" | ||
| 259 | + v-model="ruleForm.announcementContent"/> | ||
| 249 | </div> | 260 | </div> |
| 250 | </el-form-item> | 261 | </el-form-item> |
| 251 | </el-form> | 262 | </el-form> |
admin-web-master/src/views/shopbus/businessList/index.vue
| @@ -220,7 +220,7 @@ | @@ -220,7 +220,7 @@ | ||
| 220 | v-if="dialogVisible" | 220 | v-if="dialogVisible" |
| 221 | style="background-color: #fff;min-height: 94vh;" | 221 | style="background-color: #fff;min-height: 94vh;" |
| 222 | > | 222 | > |
| 223 | - <div style="height:58px;line-height:58px;"> | 223 | + <div style="height:58px;line-height:58px;padding-left: 20px;"> |
| 224 | <div style="color:#0006"> <span>商城商家管理</span> <span style="padding:0 5px;">></span> <span | 224 | <div style="color:#0006"> <span>商城商家管理</span> <span style="padding:0 5px;">></span> <span |
| 225 | style="color:#000000e6">{{ userState === 0?'新增商家':userState === 1?'修改商家':'查看商家'}}</span></div> | 225 | style="color:#000000e6">{{ userState === 0?'新增商家':userState === 1?'修改商家':'查看商家'}}</span></div> |
| 226 | </div> | 226 | </div> |
lvdao-miniapp/pages/home/home.vue
| @@ -714,7 +714,6 @@ | @@ -714,7 +714,6 @@ | ||
| 714 | url: `/pagesA/weball/shopweb?phone=${uni.getStorageSync('user').phone}` | 714 | url: `/pagesA/weball/shopweb?phone=${uni.getStorageSync('user').phone}` |
| 715 | }) | 715 | }) |
| 716 | }else{ | 716 | }else{ |
| 717 | - console.log('2222222') | ||
| 718 | uni.navigateTo({ | 717 | uni.navigateTo({ |
| 719 | url: `/pagesA/weball/shopweb?phone="1"` | 718 | url: `/pagesA/weball/shopweb?phone="1"` |
| 720 | }) | 719 | }) |
lvdao-miniapp/utils/request.js
| @@ -21,7 +21,7 @@ const sendRequest = (url, method = 'GET', data = {}, baseUrl,contentType) => { | @@ -21,7 +21,7 @@ const sendRequest = (url, method = 'GET', data = {}, baseUrl,contentType) => { | ||
| 21 | // bases = 'https://zhgw-uat.028wlkj.com/cdwlMall/meserver/admin-server' + url; | 21 | // bases = 'https://zhgw-uat.028wlkj.com/cdwlMall/meserver/admin-server' + url; |
| 22 | // bases = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/admin-server' + url; | 22 | // bases = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/admin-server' + url; |
| 23 | 23 | ||
| 24 | - // bases = 'http://128.10.249.9:9003'+ url; | 24 | + // bases = 'http://192.168.8.103:9003'+ url; |
| 25 | // bases = 'https://zhld.028wlkj.com:49008/cdwlMall/admin-server' + url; | 25 | // bases = 'https://zhld.028wlkj.com:49008/cdwlMall/admin-server' + url; |
| 26 | 26 | ||
| 27 | bases = c1 + 'cdwlMall/meserver/admin-server' + url; | 27 | bases = c1 + 'cdwlMall/meserver/admin-server' + url; |