Commit c3662f99e09d5e18090efa226fe8e6dd9dde575c

Authored by wesley88
2 parents 8208ddf7 eaadab76

Merge branch 'master' of http://39.98.150.180/webapp/GreenwayWeb

admin-web-master/src/utils/request.js
@@ -16,8 +16,8 @@ let hostall = window.location.href; @@ -16,8 +16,8 @@ let hostall = window.location.href;
16 let baseURL = '' 16 let baseURL = ''
17 if(host === 'localhost:8080' || host === 'localhost:8081' || host === 'localhost:9528'|| host === '192.168.31.45:9528'|| host === 'localhost:9529' ) { 17 if(host === 'localhost:8080' || host === 'localhost:8081' || host === 'localhost:9528'|| host === '192.168.31.45:9528'|| host === 'localhost:9529' ) {
18 18
19 - baseURL = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/admin-server';  
20 - // baseURL = 'http://128.10.249.21:9003'; 19 + // baseURL = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/admin-server';
  20 + baseURL = 'http://128.10.249.34:9003';
21 21
22 // baseURL = process.env.VUE_APP_DOMAIN_PREFIX_1; 22 // baseURL = process.env.VUE_APP_DOMAIN_PREFIX_1;
23 // baseURL = 'http://192.168.2.225:9003'; 23 // baseURL = 'http://192.168.2.225:9003';
admin-web-master/src/views/activity/activitySp.vue
@@ -1018,14 +1018,30 @@ @@ -1018,14 +1018,30 @@
1018 </div> 1018 </div>
1019 </div> 1019 </div>
1020 1020
1021 - <div v-if="actSpye" style="padding:20px;"> 1021 + <!-- <div v-if="actSpye" style="padding:20px;">
1022 <TitleWithCircle title="审核情况" style="margin-bottom:20px;" /> 1022 <TitleWithCircle title="审核情况" style="margin-bottom:20px;" />
1023 <el-radio-group v-model="liuYe"> 1023 <el-radio-group v-model="liuYe">
1024 <el-radio :label="1">通过</el-radio> 1024 <el-radio :label="1">通过</el-radio>
1025 <el-radio :label="2">不通过</el-radio> 1025 <el-radio :label="2">不通过</el-radio>
1026 </el-radio-group> 1026 </el-radio-group>
1027 - </div>  
1028 - </div> 1027 + -->
  1028 + <div v-if="actSpye" style="padding:20px;">
  1029 + <TitleWithCircle title="审核情况" style="margin-bottom:20px;"/>
  1030 + <div style="padding: 20px;">
  1031 + <el-form label-width="100px" class="demo-ruleForm">
  1032 + <el-form-item label="状态" >
  1033 + <el-radio-group v-model="liuYe" style="margin-top: 14px;">
  1034 + <el-radio :label="1">通过</el-radio>
  1035 + <el-radio :label="2">不通过</el-radio>
  1036 + </el-radio-group>
  1037 + </el-form-item>
  1038 + <el-form-item label="审核意见">
  1039 + <el-input maxlength="200" show-word-limit rows="4" v-model="secondData.auditOpinion" placeholder="请输入审核意见"
  1040 + type="textarea" />
  1041 + </el-form-item>
  1042 + </el-form>
  1043 + </div>
  1044 + </div>
1029 <div style="display: flex;justify-content: flex-end;padding:10px"> 1045 <div style="display: flex;justify-content: flex-end;padding:10px">
1030 <el-button @click="refreshData" style="background-color: #3F9B6A;color: #fff">取消 1046 <el-button @click="refreshData" style="background-color: #3F9B6A;color: #fff">取消
1031 </el-button> 1047 </el-button>
@@ -1033,6 +1049,7 @@ @@ -1033,6 +1049,7 @@
1033 </el-button> 1049 </el-button>
1034 </div> 1050 </div>
1035 </div> 1051 </div>
  1052 + </div>
1036 </div> 1053 </div>
1037 </template> 1054 </template>
1038 1055
@@ -1434,7 +1451,8 @@ @@ -1434,7 +1451,8 @@
1434 if (this.liuYe == 1) { 1451 if (this.liuYe == 1) {
1435 xiangedit({ 1452 xiangedit({
1436 id: this.secondData.id, 1453 id: this.secondData.id,
1437 - state: '5' 1454 + state: '5',
  1455 + auditOpinion:this.secondData.auditOpinion
1438 }).then(res => { 1456 }).then(res => {
1439 this.$message({ 1457 this.$message({
1440 message: '保存成功', 1458 message: '保存成功',
@@ -1445,7 +1463,8 @@ @@ -1445,7 +1463,8 @@
1445 } else { 1463 } else {
1446 xiangedit({ 1464 xiangedit({
1447 id: this.secondData.id, 1465 id: this.secondData.id,
1448 - state: '6' 1466 + state: '6',
  1467 + auditOpinion:this.secondData.auditOpinion
1449 }).then(res => { 1468 }).then(res => {
1450 this.$message({ 1469 this.$message({
1451 message: '保存成功', 1470 message: '保存成功',
@@ -1713,9 +1732,7 @@ @@ -1713,9 +1732,7 @@
1713 height: 50px; 1732 height: 50px;
1714 } 1733 }
1715 1734
1716 - /deep/ .el-form--label-top .el-form-item__label {  
1717 - padding: 0;  
1718 - } 1735 +
1719 1736
1720 .pagination { 1737 .pagination {
1721 text-align: right; 1738 text-align: right;
@@ -1829,11 +1846,6 @@ @@ -1829,11 +1846,6 @@
1829 border-color: #3F9B6A 1846 border-color: #3F9B6A
1830 } 1847 }
1831 1848
1832 - ::v-deep .el-form-item__label {  
1833 - font-weight: normal;  
1834 - font-size: 12px;  
1835 - }  
1836 -  
1837 1849
1838 1850
1839 .fenlan { 1851 .fenlan {
admin-web-master/src/views/activity/index.vue
@@ -2066,12 +2066,14 @@ @@ -2066,12 +2066,14 @@
2066 } 2066 }
2067 this.xinlei = true 2067 this.xinlei = true
2068 }, 2068 },
2069 - xinFenlei(node,data){  
2070 - if(data){  
2071 - this.xinADD.parentId = data.id  
2072 - }  
2073 - this.xinlei = true  
2074 - }, 2069 + editFenlei(node, data) {
  2070 + this.editFen = 1
  2071 + if (data) {
  2072 + this.xinADD.parentId = data.id
  2073 + this.xinADD.classificationName = data.classificationName
  2074 + }
  2075 + this.xinlei = true
  2076 + },
2075 sevLei() { 2077 sevLei() {
2076 this.$refs.fenFrom.validate((valid) => { 2078 this.$refs.fenFrom.validate((valid) => {
2077 if (valid) { 2079 if (valid) {
@@ -2086,6 +2088,11 @@ @@ -2086,6 +2088,11 @@
2086 parentId: '', 2088 parentId: '',
2087 classificationType: '0' 2089 classificationType: '0'
2088 } 2090 }
  2091 + this.$message({
  2092 + message: '保存成功',
  2093 + type: 'success',
  2094 + offset: 100
  2095 + })
2089 this.getAll() 2096 this.getAll()
2090 }) 2097 })
2091 } else { 2098 } else {
@@ -2100,6 +2107,11 @@ @@ -2100,6 +2107,11 @@
2100 parentId: '', 2107 parentId: '',
2101 classificationType: '0' 2108 classificationType: '0'
2102 } 2109 }
  2110 + this.$message({
  2111 + message: '保存成功',
  2112 + type: 'success',
  2113 + offset: 100
  2114 + })
2103 this.getAll() 2115 this.getAll()
2104 }) 2116 })
2105 } 2117 }
admin-web-master/src/views/atmosphere/atmosphereGl.vue
@@ -2024,6 +2024,11 @@ @@ -2024,6 +2024,11 @@
2024 parentId: '', 2024 parentId: '',
2025 classificationType: '1' 2025 classificationType: '1'
2026 } 2026 }
  2027 + this.$message({
  2028 + message: '保存成功',
  2029 + type: 'success',
  2030 + offset: 100
  2031 + })
2027 this.getAll() 2032 this.getAll()
2028 }) 2033 })
2029 } else { 2034 } else {
@@ -2038,6 +2043,11 @@ @@ -2038,6 +2043,11 @@
2038 parentId: '', 2043 parentId: '',
2039 classificationType: '1' 2044 classificationType: '1'
2040 } 2045 }
  2046 + this.$message({
  2047 + message: '保存成功',
  2048 + type: 'success',
  2049 + offset: 100
  2050 + })
2041 this.getAll() 2051 this.getAll()
2042 }) 2052 })
2043 } 2053 }
admin-web-master/src/views/atmosphere/atmosphereSp.vue
@@ -1123,12 +1123,24 @@ @@ -1123,12 +1123,24 @@
1123 </div> 1123 </div>
1124 </div> 1124 </div>
1125 <div v-if="actSpye" style="padding:20px;"> 1125 <div v-if="actSpye" style="padding:20px;">
1126 - <TitleWithCircle title="审核情况" style="margin-bottom:20px;" />  
1127 - <el-radio-group v-model="liuYe">  
1128 - <el-radio :label="1">通过</el-radio>  
1129 - <el-radio :label="2">不通过</el-radio>  
1130 - </el-radio-group>  
1131 - </div> 1126 + <TitleWithCircle title="审核情况" style="margin-bottom:20px;"/>
  1127 + <div style="padding: 20px;">
  1128 + <el-form label-width="100px" class="demo-ruleForm">
  1129 + <el-form-item label="状态" >
  1130 + <el-radio-group v-model="liuYe" style="margin-top: 14px;">
  1131 + <el-radio :label="1">通过</el-radio>
  1132 + <el-radio :label="2">不通过</el-radio>
  1133 + </el-radio-group>
  1134 + </el-form-item>
  1135 + <el-form-item label="审核意见">
  1136 + <el-input maxlength="200" show-word-limit rows="4" v-model="secondData.auditOpinion" placeholder="请输入审核意见"
  1137 + type="textarea" />
  1138 + </el-form-item>
  1139 + </el-form>
  1140 + </div>
  1141 + </div>
  1142 +
  1143 +
1132 </div> 1144 </div>
1133 <div style="display: flex;justify-content: flex-end;padding:10px"> 1145 <div style="display: flex;justify-content: flex-end;padding:10px">
1134 <el-button @click="refreshData" style="background-color: #3F9B6A;color: #fff">取消 1146 <el-button @click="refreshData" style="background-color: #3F9B6A;color: #fff">取消
@@ -1508,7 +1520,7 @@ @@ -1508,7 +1520,7 @@
1508 }, 1520 },
1509 OAshen(){ 1521 OAshen(){
1510 if(this.liuYe == 1){ 1522 if(this.liuYe == 1){
1511 - xiangedit({id:this.secondData.id,state:'5'}).then(res=>{ 1523 + xiangedit({id:this.secondData.id,state:'5',auditOpinion:this.secondData.auditOpinion}).then(res=>{
1512 this.$message({ 1524 this.$message({
1513 message: '保存成功', 1525 message: '保存成功',
1514 type: 'success' 1526 type: 'success'
@@ -1516,7 +1528,7 @@ @@ -1516,7 +1528,7 @@
1516 this.getAll() 1528 this.getAll()
1517 }) 1529 })
1518 }else{ 1530 }else{
1519 - xiangedit({id:this.secondData.id,state:'6'}).then(res=>{ 1531 + xiangedit({id:this.secondData.id,state:'6',auditOpinion:this.secondData.auditOpinion}).then(res=>{
1520 this.$message({ 1532 this.$message({
1521 message: '保存成功', 1533 message: '保存成功',
1522 type: 'success' 1534 type: 'success'
@@ -1766,9 +1778,6 @@ @@ -1766,9 +1778,6 @@
1766 height: 50px; 1778 height: 50px;
1767 } 1779 }
1768 1780
1769 - /deep/ .el-form--label-top .el-form-item__label {  
1770 - padding: 0;  
1771 - }  
1772 1781
1773 .pagination { 1782 .pagination {
1774 text-align: right; 1783 text-align: right;
@@ -1877,10 +1886,6 @@ @@ -1877,10 +1886,6 @@
1877 border-color: #3F9B6A 1886 border-color: #3F9B6A
1878 } 1887 }
1879 1888
1880 - ::v-deep .el-form-item__label {  
1881 - font-weight: normal;  
1882 - font-size: 12px;  
1883 - }  
1884 1889
1885 1890
1886 1891
admin-web-master/src/views/media/mediaMana.vue
@@ -968,6 +968,11 @@ this.$refs.mulTable.clearSelection(); // 清除所有选项 @@ -968,6 +968,11 @@ this.$refs.mulTable.clearSelection(); // 清除所有选项
968 parentId: '', 968 parentId: '',
969 classificationType: '3' 969 classificationType: '3'
970 } 970 }
  971 + this.$message({
  972 + message: '保存成功',
  973 + type: 'success',
  974 + offset: 100
  975 + })
971 this.getAll() 976 this.getAll()
972 }) 977 })
973 } else { 978 } else {
@@ -982,6 +987,11 @@ this.$refs.mulTable.clearSelection(); // 清除所有选项 @@ -982,6 +987,11 @@ this.$refs.mulTable.clearSelection(); // 清除所有选项
982 parentId: '', 987 parentId: '',
983 classificationType: '3' 988 classificationType: '3'
984 } 989 }
  990 + this.$message({
  991 + message: '保存成功',
  992 + type: 'success',
  993 + offset: 100
  994 + })
985 this.getAll() 995 this.getAll()
986 }) 996 })
987 } 997 }
admin-web-master/src/views/promotion/account.vue
@@ -613,6 +613,11 @@ this.currentPage = val @@ -613,6 +613,11 @@ this.currentPage = val
613 parentId: '', 613 parentId: '',
614 classificationType: '2' 614 classificationType: '2'
615 } 615 }
  616 + this.$message({
  617 + message: '保存成功',
  618 + type: 'success',
  619 + offset: 100
  620 + })
616 this.getAll() 621 this.getAll()
617 }) 622 })
618 } else { 623 } else {
@@ -627,6 +632,11 @@ this.currentPage = val @@ -627,6 +632,11 @@ this.currentPage = val
627 parentId: '', 632 parentId: '',
628 classificationType: '2' 633 classificationType: '2'
629 } 634 }
  635 + this.$message({
  636 + message: '保存成功',
  637 + type: 'success',
  638 + offset: 100
  639 + })
630 this.getAll() 640 this.getAll()
631 }) 641 })
632 } 642 }
admin-web-master/src/views/promotion/audit.vue
@@ -105,7 +105,7 @@ @@ -105,7 +105,7 @@
105 </div> 105 </div>
106 </el-form-item> 106 </el-form-item>
107 <el-form-item label="审核意见" class="grid-content bg-purple" > 107 <el-form-item label="审核意见" class="grid-content bg-purple" >
108 - <el-input type="textarea" v-model="secondData.auditOpinion" v-if='wangShow==false'></el-input> 108 + <el-input maxlength="200" show-word-limit rows="4" placeholder="请输入审核意见" type="textarea" v-model="secondData.auditOpinion" v-if='wangShow==false'></el-input>
109 <div style="padding:20px;" v-else>{{secondData.auditOpinion}}</div> 109 <div style="padding:20px;" v-else>{{secondData.auditOpinion}}</div>
110 </el-form-item> 110 </el-form-item>
111 </el-form> 111 </el-form>
lvdao-miniapp/main.js
@@ -8,13 +8,13 @@ import uView from &quot;uview-ui&quot;; @@ -8,13 +8,13 @@ import uView from &quot;uview-ui&quot;;
8 import DialogBox from './components/DialogBox/DialogBox'; 8 import DialogBox from './components/DialogBox/DialogBox';
9 // let hostall = window.location.href; 9 // let hostall = window.location.href;
10 // let c1 = hostall.split('cdwlMall')[0]; 10 // let c1 = hostall.split('cdwlMall')[0];
11 -// let c1 = 'https://jy.scjysm.asia:18086/'  
12 -let c1 = 'https://zhgw-uat.028wlkj.com/' 11 +let c1 = 'https://jy.scjysm.asia:18086/'
  12 +// let c1 = 'https://zhgw-uat.028wlkj.com/'
13 Vue.config.productionTip = false 13 Vue.config.productionTip = false
14 Vue.prototype.$http = http 14 Vue.prototype.$http = http
15 Vue.prototype.$imgUrl = (url) => { 15 Vue.prototype.$imgUrl = (url) => {
16 - // return (c1 + "cdwlMall/questionnaire/file/static" + url);  
17 - return (c1 + "cdwlMall/zsfwzxt/test/file/static" + url); 16 + return (c1 + "cdwlMall/questionnaire/file/static" + url);
  17 + // return (c1 + "cdwlMall/zsfwzxt/test/file/static" + url);
18 } 18 }
19 Vue.prototype.$img = c1+ 'cdwlMall' 19 Vue.prototype.$img = c1+ 'cdwlMall'
20 // Vue.prototype.$upload = "https://zhld.028wlkj.com:49008/cdwlMall/admin-server/miniio/upload" 20 // Vue.prototype.$upload = "https://zhld.028wlkj.com:49008/cdwlMall/admin-server/miniio/upload"
lvdao-miniapp/manifest.json
1 { 1 {
2 "name" : "绿道", 2 "name" : "绿道",
3 - "appid" : "__UNI__189D96A", 3 + "appid" : "__UNI__F034047",
4 "description" : "", 4 "description" : "",
5 "versionName" : "1.0.2", 5 "versionName" : "1.0.2",
6 "versionCode" : "100", 6 "versionCode" : "100",