Commit 190206217b83f56f81d1f714a3899f56a1d3584f

Authored by 杨鑫
2 parents 87d6eb96 73ad29f2

'最新'

admin-web-master/src/api/newly.js
1 1 import request from '@/utils/request'
2   -import requestnew from '@/utils/request2'
  2 +// import request from '@/utils/request2'
3 3 // 生成合同附件
4 4 export function dataInprotDocument(data) {
5 5 return request({
... ... @@ -155,7 +155,7 @@ export function cereResourceStrategy(data) {
155 155 // ******商家管理******
156 156 // 列表
157 157 export function cerePlatformMerchant(data) {
158   - return requestnew({
  158 + return request({
159 159 url: '/cerePlatformMerchant/queryByPage',
160 160 method: 'post',
161 161 data
... ... @@ -163,7 +163,7 @@ export function cerePlatformMerchant(data) {
163 163 }
164 164 // 添加
165 165 export function cerePlatformMerchantadd(data) {
166   - return requestnew({
  166 + return request({
167 167 url: '/cerePlatformMerchant/add',
168 168 method: 'post',
169 169 data
... ... @@ -171,7 +171,7 @@ export function cerePlatformMerchantadd(data) {
171 171 }
172 172 // 详情
173 173 export function cerePlatformMerchantinfo(data) {
174   - return requestnew({
  174 + return request({
175 175 url: '/cerePlatformMerchant/queryById',
176 176 method: 'post',
177 177 data
... ... @@ -179,7 +179,7 @@ export function cerePlatformMerchantinfo(data) {
179 179 }
180 180 // 修改
181 181 export function cerePlatformMerchantedit(data) {
182   - return requestnew({
  182 + return request({
183 183 url: '/cerePlatformMerchant/edit',
184 184 method: 'post',
185 185 data
... ...
admin-web-master/src/components/add/addfa.vue
... ... @@ -12,7 +12,7 @@
12 12 </el-form-item>
13 13 <el-row :gutter="20">
14 14 <el-col :span="24">
15   - <el-form-item label="招商资源管理" prop="shopNumber">
  15 + <el-form-item label="招商资源管理" prop="resourceManagement">
16 16 <div style="border: 1px solid #E5E5E5;padding: 1px" id="huodong">
17 17 <div
18 18 style="font-size: 14px;border-bottom: 1px solid #E5E5E5;display: flex;justify-content: space-between;line-height:20px;background:#F2F3F5;">
... ... @@ -163,6 +163,11 @@
163 163 message: '请填写招商方案名称',
164 164 trigger: 'change'
165 165 }],
  166 + resourceManagement: [{
  167 + required: true,
  168 + message: '请选择招商资源',
  169 + trigger: 'change'
  170 + }]
166 171 },
167 172 };
168 173 },
... ... @@ -254,7 +259,9 @@
254 259 }
255 260 }
256 261 this.AddData = listall
257   -
  262 + if(this.AddData.length>0){
  263 + this.formInline.resourceManagement = '11'
  264 + }
258 265 this.addcl = false
259 266 },
260 267 mingClosecl() {
... ...
admin-web-master/src/components/add/addmap.vue
1 1 <template>
2   - <div>
3   - <el-form v-if="ontype =='线上广告位'" :model="formInline" :rules="rules" ref="formInline" label-width="100px"
  2 + <div >
  3 + <el-form v-if="ontype =='线上广告位' && iShsow" :model="formInline" :rules="rules" ref="formInline" label-width="100px"
4 4 class="demo-ruleForm">
5 5 <el-form-item label="广告位类型" prop="advertisingType">
6 6 <el-select @change="changeadvertisingType" v-model="formInline.advertisingType" placeholder="请选择" style="width: 100%;">
... ... @@ -56,7 +56,7 @@
56 56 </el-col>
57 57 </el-row>
58 58 </el-form>
59   - <el-form v-if="ontype =='实体广告位'" :model="formInline" :rules="rulesSt" ref="formInline" label-width="100px"
  59 + <el-form v-if="ontype =='实体广告位' && iShsow" :model="formInline" :rules="rulesSt" ref="formInline" label-width="100px"
60 60 class="demo-ruleForm">
61 61 <el-form-item label="广告位类型" prop="advertisingType">
62 62 <el-select @change="changeadvertisingType" v-model="formInline.advertisingType" placeholder="请选择" style="width: 100%;">
... ... @@ -78,11 +78,9 @@
78 78 </div>
79 79 </el-form-item>
80 80 <el-form-item label="设备类型" prop="deviceType" >
81   - <div style="display: flex;justify-content: space-between;">
82   - <el-select v-model="formInline.deviceType" placeholder="请选择" style="width: 92%;">
83   - <el-option label="灯箱广告牌" value="灯箱广告牌"></el-option>
84   - </el-select>
85   - </div>
  81 + <el-select v-model="formInline.deviceType" placeholder="请选择" style="width: 100%;">
  82 + <el-option label="灯箱广告牌" value="灯箱广告牌"></el-option>
  83 + </el-select>
86 84 </el-form-item>
87 85 <el-form-item label="设备大小" prop="equipmentSize" >
88 86 <el-input v-model="formInline.equipmentSize" placeholder="宽:300mm 长:400mm 高: 400mm" maxlength="30"></el-input>
... ... @@ -259,7 +257,8 @@
259 257 gongyuanList: [],
260 258 fileData: [],
261 259 parentMessage: {},
262   - edit: true
  260 + edit: true,
  261 + iShsow:true
263 262 };
264 263 },
265 264 props: {
... ... @@ -324,7 +323,13 @@
324 323 },
325 324 changeadvertisingType(e) {
326 325 console.error(e)
  326 + this.iShsow = false
327 327 this.ontype = e
  328 + // 延迟一秒执行
  329 + setTimeout(() => {
  330 + this.iShsow = true
  331 + this.$forceUpdate();
  332 + }, 10)
328 333 },
329 334 //获取当前时间
330 335 updateCurrentTime() {
... ...
admin-web-master/src/components/add/addsam.vue
... ... @@ -498,7 +498,7 @@
498 498  
499 499 },
500 500 addM(e) {
501   - this.formInline = e
  501 + this.formInline = JSON.parse(JSON.stringify(e))
502 502 this.addMing = true
503 503 },
504 504 closemblist() {
... ... @@ -526,10 +526,15 @@
526 526 this.formInline[index] = c1
527 527 },
528 528 onSubmit() {
529   -
  529 + this.getmb()
530 530 },
531 531 resetting() {
532   -
  532 + this.querymb = {
  533 + pageNumber: 0,
  534 + pageSize: 10,
  535 + isTemplate: '0'
  536 + }
  537 + this.getmb()
533 538 },
534 539 handleSizeChange() {
535 540  
... ...
admin-web-master/src/views/customer/rsaManagement/tanpan.vue
... ... @@ -42,7 +42,7 @@
42 42 slot-scope="{date, data}">
43 43 {{data.day.split("-").slice(2).join("-")}}
44 44 <div style="overflow: auto;height:55px;">
45   - <div style="width:100%,height:100%" v-for="(item,index) in tableData" @click="genjinMsg(item)">
  45 + <div style="width:100%" v-for="(item,index) in tableData" @click="genjinMsg(item)">
46 46 <div style="font-size:12px;margin-top:10px;width:48%" >
47 47 {{item.negotiationTime == data.day?item.negotiationResult:''}}
48 48 </div>
... ...
admin-web-master/src/views/detect/admap.vue
... ... @@ -406,9 +406,15 @@
406 406 this.addcl = true
407 407 },
408 408 chenge(e) {
409   - this.ontype = e
410   - this.pagequery.pageNumber = 0
411   - this.getAll()
  409 + this.ontype = null
  410 + // 延迟一秒执行
  411 + setTimeout(() => {
  412 + this.ontype = e
  413 + this.pagequery.pageNumber = 0
  414 + this.getAll()
  415 + this.$forceUpdate();
  416 + }, 10)
  417 +
412 418 },
413 419 gettime() {
414 420 // 获取当前时间
... ...
admin-web-master/src/views/detect/examine/index.vue
... ... @@ -564,29 +564,29 @@
564 564 }
565 565 list = c1
566 566 // 已审核
567   - const res1 = await getResourceStrategy({
568   - ...this.pagequery,
569   - resourcesId: 'sp',
570   - shopName: this.name,
571   - publishStatus: '2',
572   - })
  567 + // const res1 = await getResourceStrategy({
  568 + // ...this.pagequery,
  569 + // resourcesId: 'sp',
  570 + // shopName: this.name,
  571 + // publishStatus: '2',
  572 + // })
573 573 let c2 = []
574   - for (let index = 0; index < res1.data.length; index++) {
575   - const element = res1.data[index];
576   - if (element.cereBasicInformationShop.id) {
577   - for (let i = 0; i < element.cereRentalPolicies.length; i++) {
578   - var element1 = element.cereRentalPolicies[i];
579   -
580   - var obj = {
581   - cereBasicInformationShop: element.cereBasicInformationShop,
582   - num: element.cereRentalPolicies.length,
583   - shopinfo: element1,
584   - typeid:'sp'+element.cereBasicInformationShop.id
585   - };
586   - c2.push(obj);
587   - }
588   - }
589   - }
  574 + // for (let index = 0; index < res1.data.length; index++) {
  575 + // const element = res1.data[index];
  576 + // if (element.cereBasicInformationShop.id) {
  577 + // for (let i = 0; i < element.cereRentalPolicies.length; i++) {
  578 + // var element1 = element.cereRentalPolicies[i];
  579 +
  580 + // var obj = {
  581 + // cereBasicInformationShop: element.cereBasicInformationShop,
  582 + // num: element.cereRentalPolicies.length,
  583 + // shopinfo: element1,
  584 + // typeid:'sp'+element.cereBasicInformationShop.id
  585 + // };
  586 + // c2.push(obj);
  587 + // }
  588 + // }
  589 + // }
590 590 list = [...list, ...c2]
591 591 this.tableData = list
592 592 console.log(this.tableData);
... ... @@ -617,29 +617,29 @@
617 617  
618 618 list = c1
619 619 // 已审核
620   - const res1 = await getResourceStrategy({
621   - ...this.pagequery,
622   - resourcesId: 'gg',
623   - advertisingName: this.name,
624   - publishStatus: '2',
625   - })
  620 + // const res1 = await getResourceStrategy({
  621 + // ...this.pagequery,
  622 + // resourcesId: 'gg',
  623 + // advertisingName: this.name,
  624 + // publishStatus: '2',
  625 + // })
626 626 let c2 = []
627   - for (let index = 0; index < res1.data.length; index++) {
628   - const element = res1.data[index];
629   - if (element.cereAdvertisingInformation.id) {
630   - for (let i = 0; i < element.cereRentalPolicies.length; i++) {
631   - var element1 = element.cereRentalPolicies[i];
632   -
633   - var obj = {
634   - cereAdvertisingInformation: element.cereAdvertisingInformation,
635   - num: element.cereRentalPolicies.length,
636   - shopinfo: element1,
637   - typeid:'gg'+element.cereAdvertisingInformation.id
638   - };
639   - c2.push(obj);
640   - }
641   - }
642   - }
  627 + // for (let index = 0; index < res1.data.length; index++) {
  628 + // const element = res1.data[index];
  629 + // if (element.cereAdvertisingInformation.id) {
  630 + // for (let i = 0; i < element.cereRentalPolicies.length; i++) {
  631 + // var element1 = element.cereRentalPolicies[i];
  632 +
  633 + // var obj = {
  634 + // cereAdvertisingInformation: element.cereAdvertisingInformation,
  635 + // num: element.cereRentalPolicies.length,
  636 + // shopinfo: element1,
  637 + // typeid:'gg'+element.cereAdvertisingInformation.id
  638 + // };
  639 + // c2.push(obj);
  640 + // }
  641 + // }
  642 + // }
643 643 list = [...list, ...c2]
644 644 this.tableData = list
645 645 console.log(this.tableData);
... ... @@ -669,29 +669,29 @@
669 669 }
670 670 list = c1
671 671 // 已审核
672   - const res1 = await getResourceStrategy({
673   - ...this.pagequery,
674   - resourcesId: 'cd',
675   - venueName:this.name,
676   - publishStatus: '2'
677   - })
  672 + // const res1 = await getResourceStrategy({
  673 + // ...this.pagequery,
  674 + // resourcesId: 'cd',
  675 + // venueName:this.name,
  676 + // publishStatus: '2'
  677 + // })
678 678 let c2 = []
679   - for (let index = 0; index < res1.data.length; index++) {
680   - const element = res1.data[index];
681   - if (element.cereBasicInformationVenue.id) {
682   - for (let i = 0; i < element.cereRentalPolicies.length; i++) {
683   - var element1 = element.cereRentalPolicies[i];
684   -
685   - var obj = {
686   - cereBasicInformationVenue: element.cereBasicInformationVenue,
687   - num: element.cereRentalPolicies.length,
688   - shopinfo: element1,
689   - typeid:'cd'+element.cereBasicInformationVenue.id
690   - };
691   - c2.push(obj);
692   - }
693   - }
694   - }
  679 + // for (let index = 0; index < res1.data.length; index++) {
  680 + // const element = res1.data[index];
  681 + // if (element.cereBasicInformationVenue.id) {
  682 + // for (let i = 0; i < element.cereRentalPolicies.length; i++) {
  683 + // var element1 = element.cereRentalPolicies[i];
  684 +
  685 + // var obj = {
  686 + // cereBasicInformationVenue: element.cereBasicInformationVenue,
  687 + // num: element.cereRentalPolicies.length,
  688 + // shopinfo: element1,
  689 + // typeid:'cd'+element.cereBasicInformationVenue.id
  690 + // };
  691 + // c2.push(obj);
  692 + // }
  693 + // }
  694 + // }
695 695 list = [...list, ...c2]
696 696 this.tableData = list
697 697 console.log(this.tableData);
... ...
admin-web-master/src/views/detect/map/index.vue
... ... @@ -419,7 +419,8 @@
419 419 this.pagequery = {
420 420 pageNumber: 0,
421 421 pageSize: 10,
422   - advertisingName:''
  422 + advertisingName:'',
  423 + advertisingType: this.pagequery.advertisingType,
423 424 },
424 425 this.getAll()
425 426 },
... ...
admin-web-master/src/views/scheme/sam.vue
... ... @@ -288,7 +288,7 @@
288 288 },
289 289 data() {
290 290 return {
291   - onaction: '1',
  291 + onaction: '2',
292 292 detailsinfo: {},
293 293 formInline: {},
294 294 upload: uploadUrl,
... ...
lvdao-miniapp/manifest.json
1 1 {
2   - "name": "绿道",
3   - "appid": "__UNI__F034047",
4   - "description": "",
5   - "versionName": "1.0.2",
6   - "versionCode": "100",
7   - "transformPx": false,
8   - /* 5+App特有相关 */
9   - "app-plus": {
10   - "usingComponents": true,
11   - "nvueCompiler": "uni-app",
12   - "compilerVersion": 3,
13   - "splashscreen": {
14   - "alwaysShowBeforeRender": true,
15   - "waiting": true,
16   - "autoclose": true,
17   - "delay": 0
18   - },
19   - /* 模块配置 */
20   - "modules": {},
21   - /* 应用发布信息 */
22   - "distribute": {
23   - /* android打包配置 */
24   - "android": {
25   - "permissions": [
26   - "<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>",
27   - "<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>",
28   - "<uses-permission android:name=\"android.permission.READ_CONTACTS\"/>",
29   - "<uses-permission android:name=\"android.permission.VIBRATE\"/>",
30   - "<uses-permission android:name=\"android.permission.READ_LOGS\"/>",
31   - "<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>",
32   - "<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
33   - "<uses-permission android:name=\"android.permission.WRITE_CONTACTS\"/>",
34   - "<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
35   - "<uses-permission android:name=\"android.permission.CAMERA\"/>",
36   - "<uses-permission android:name=\"android.permission.RECORD_AUDIO\"/>",
37   - "<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>",
38   - "<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>",
39   - "<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
40   - "<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>",
41   - "<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
42   - "<uses-permission android:name=\"android.permission.CALL_PHONE\"/>",
43   - "<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
44   - "<uses-permission android:name=\"android.permission.ACCESS_COARSE_LOCATION\"/>",
45   - "<uses-feature android:name=\"android.hardware.camera\"/>",
46   - "<uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"/>",
47   - "<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
48   - ]
49   - },
50   - /* ios打包配置 */
51   - "ios": {},
52   - /* SDK配置 */
53   - "sdkConfigs": {
54   - "ad": {}
55   - },
56   - "icons": {
57   - "android": {
58   - "hdpi": "unpackage/res/icons/72x72.png",
59   - "xhdpi": "unpackage/res/icons/96x96.png",
60   - "xxhdpi": "unpackage/res/icons/144x144.png",
61   - "xxxhdpi": "unpackage/res/icons/192x192.png"
62   - },
63   - "ios": {
64   - "appstore": "unpackage/res/icons/1024x1024.png",
65   - "ipad": {
66   - "app": "unpackage/res/icons/76x76.png",
67   - "app@2x": "unpackage/res/icons/152x152.png",
68   - "notification": "unpackage/res/icons/20x20.png",
69   - "notification@2x": "unpackage/res/icons/40x40.png",
70   - "proapp@2x": "unpackage/res/icons/167x167.png",
71   - "settings": "unpackage/res/icons/29x29.png",
72   - "settings@2x": "unpackage/res/icons/58x58.png",
73   - "spotlight": "unpackage/res/icons/40x40.png",
74   - "spotlight@2x": "unpackage/res/icons/80x80.png"
75   - },
76   - "iphone": {
77   - "app@2x": "unpackage/res/icons/120x120.png",
78   - "app@3x": "unpackage/res/icons/180x180.png",
79   - "notification@2x": "unpackage/res/icons/40x40.png",
80   - "notification@3x": "unpackage/res/icons/60x60.png",
81   - "settings@2x": "unpackage/res/icons/58x58.png",
82   - "settings@3x": "unpackage/res/icons/87x87.png",
83   - "spotlight@2x": "unpackage/res/icons/80x80.png",
84   - "spotlight@3x": "unpackage/res/icons/120x120.png"
85   - }
86   - }
87   - },
88   - "splashscreen": {
89   - "android": {
90   - "hdpi": "",
91   - "xhdpi": "",
92   - "xxhdpi": ""
93   - },
94   - "androidStyle": "default"
95   - }
96   - }
97   - },
98   - /* 快应用特有相关 */
99   - "quickapp": {},
100   - /* 小程序特有相关 */
101   - "mp-weixin": {
102   - "appid": "wx005c61919377e6af",
103   - "setting": {
104   - "urlCheck": false,
105   - "es6": true,
106   - "postcss": false,
107   - "minified": true
108   - },
109   - "usingComponents": true,
110   - "permission": {}
111   - },
112   - "mp-alipay": {
113   - "usingComponents": true
114   - },
115   - "mp-baidu": {
116   - "usingComponents": true
117   - },
118   - "mp-toutiao": {
119   - "usingComponents": true
120   - },
121   - "h5": {
122   - "router": {
123   - "mode": "hash",
124   - "base": "./"
125   - },
126   - "title": "商城",
127   - "devServer": {
128   - "https": false
129   - },
130   - "domain": "",
131   - "sdkConfigs": {
132   - "maps": {
133   - "qqmap": {
134   - "key": "6YVBZ-Z6EC4-JYNUH-FGQKA-G6PAE-JVF3U"
135   - }
136   - }
137   - },
138   - "template": "home.vue"
139   - }
140   -}
141 2 \ No newline at end of file
  3 + "name" : "绿道",
  4 + "appid" : "__UNI__189D96A",
  5 + "description" : "",
  6 + "versionName" : "1.0.2",
  7 + "versionCode" : "100",
  8 + "transformPx" : false,
  9 + /* 5+App特有相关 */
  10 + "app-plus" : {
  11 + "usingComponents" : true,
  12 + "nvueCompiler" : "uni-app",
  13 + "compilerVersion" : 3,
  14 + "splashscreen" : {
  15 + "alwaysShowBeforeRender" : true,
  16 + "waiting" : true,
  17 + "autoclose" : true,
  18 + "delay" : 0
  19 + },
  20 + /* 模块配置 */
  21 + "modules" : {},
  22 + /* 应用发布信息 */
  23 + "distribute" : {
  24 + /* android打包配置 */
  25 + "android" : {
  26 + "permissions" : [
  27 + "<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>",
  28 + "<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>",
  29 + "<uses-permission android:name=\"android.permission.READ_CONTACTS\"/>",
  30 + "<uses-permission android:name=\"android.permission.VIBRATE\"/>",
  31 + "<uses-permission android:name=\"android.permission.READ_LOGS\"/>",
  32 + "<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>",
  33 + "<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
  34 + "<uses-permission android:name=\"android.permission.WRITE_CONTACTS\"/>",
  35 + "<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
  36 + "<uses-permission android:name=\"android.permission.CAMERA\"/>",
  37 + "<uses-permission android:name=\"android.permission.RECORD_AUDIO\"/>",
  38 + "<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>",
  39 + "<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>",
  40 + "<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
  41 + "<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>",
  42 + "<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
  43 + "<uses-permission android:name=\"android.permission.CALL_PHONE\"/>",
  44 + "<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
  45 + "<uses-permission android:name=\"android.permission.ACCESS_COARSE_LOCATION\"/>",
  46 + "<uses-feature android:name=\"android.hardware.camera\"/>",
  47 + "<uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"/>",
  48 + "<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
  49 + ]
  50 + },
  51 + /* ios打包配置 */
  52 + "ios" : {},
  53 + /* SDK配置 */
  54 + "sdkConfigs" : {
  55 + "ad" : {}
  56 + },
  57 + "icons" : {
  58 + "android" : {
  59 + "hdpi" : "unpackage/res/icons/72x72.png",
  60 + "xhdpi" : "unpackage/res/icons/96x96.png",
  61 + "xxhdpi" : "unpackage/res/icons/144x144.png",
  62 + "xxxhdpi" : "unpackage/res/icons/192x192.png"
  63 + },
  64 + "ios" : {
  65 + "appstore" : "unpackage/res/icons/1024x1024.png",
  66 + "ipad" : {
  67 + "app" : "unpackage/res/icons/76x76.png",
  68 + "app@2x" : "unpackage/res/icons/152x152.png",
  69 + "notification" : "unpackage/res/icons/20x20.png",
  70 + "notification@2x" : "unpackage/res/icons/40x40.png",
  71 + "proapp@2x" : "unpackage/res/icons/167x167.png",
  72 + "settings" : "unpackage/res/icons/29x29.png",
  73 + "settings@2x" : "unpackage/res/icons/58x58.png",
  74 + "spotlight" : "unpackage/res/icons/40x40.png",
  75 + "spotlight@2x" : "unpackage/res/icons/80x80.png"
  76 + },
  77 + "iphone" : {
  78 + "app@2x" : "unpackage/res/icons/120x120.png",
  79 + "app@3x" : "unpackage/res/icons/180x180.png",
  80 + "notification@2x" : "unpackage/res/icons/40x40.png",
  81 + "notification@3x" : "unpackage/res/icons/60x60.png",
  82 + "settings@2x" : "unpackage/res/icons/58x58.png",
  83 + "settings@3x" : "unpackage/res/icons/87x87.png",
  84 + "spotlight@2x" : "unpackage/res/icons/80x80.png",
  85 + "spotlight@3x" : "unpackage/res/icons/120x120.png"
  86 + }
  87 + }
  88 + },
  89 + "splashscreen" : {
  90 + "android" : {
  91 + "hdpi" : "",
  92 + "xhdpi" : "",
  93 + "xxhdpi" : ""
  94 + },
  95 + "androidStyle" : "default"
  96 + }
  97 + }
  98 + },
  99 + /* 快应用特有相关 */
  100 + "quickapp" : {},
  101 + /* 小程序特有相关 */
  102 + "mp-weixin" : {
  103 + "appid" : "wx005c61919377e6af",
  104 + "setting" : {
  105 + "urlCheck" : false,
  106 + "es6" : true,
  107 + "postcss" : false,
  108 + "minified" : true
  109 + },
  110 + "usingComponents" : true,
  111 + "permission" : {}
  112 + },
  113 + "mp-alipay" : {
  114 + "usingComponents" : true
  115 + },
  116 + "mp-baidu" : {
  117 + "usingComponents" : true
  118 + },
  119 + "mp-toutiao" : {
  120 + "usingComponents" : true
  121 + },
  122 + "h5" : {
  123 + "router" : {
  124 + "mode" : "hash",
  125 + "base" : "./"
  126 + },
  127 + "title" : "商城",
  128 + "devServer" : {
  129 + "https" : false
  130 + },
  131 + "domain" : "",
  132 + "sdkConfigs" : {
  133 + "maps" : {
  134 + "qqmap" : {
  135 + "key" : "6YVBZ-Z6EC4-JYNUH-FGQKA-G6PAE-JVF3U"
  136 + }
  137 + }
  138 + },
  139 + "template" : "home.vue"
  140 + }
  141 +}
... ...