Browse Source

优选发布打包

cr 4 years ago
parent
commit
a99f65703e

+ 2 - 2
.env

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = develop
8 8
 
9 9
 # 接口请求基地址
10
-VUE_APP_API_BASE_URL = http://localhost:8077
10
+VUE_APP_API_BASE_URL = https://youxuan.ixiaokejia.com
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = http://localhost:8076
16
+VUE_APP_IMAGE_BASE_URL = https://youxuan.ixiaokejia.com
17 17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18 18
 
19 19
 # 微信小程序appId

+ 2 - 2
.env.develop

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = production
8 8
 
9 9
 # 接口请求基地址
10
-VUE_APP_API_BASE_URL = http://localhost:8077
10
+VUE_APP_API_BASE_URL = https://youxuan.ixiaokejia.com
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = http://localhost:8077
16
+VUE_APP_IMAGE_BASE_URL = https://youxuan.ixiaokejia.com
17 17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18 18
 
19 19
 # 微信小程序appId

+ 2 - 2
.env.production

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = production
8 8
 
9 9
 # 接口请求基地址
10
-VUE_APP_API_BASE_URL = https://delivery.ixiaokejia.com
10
+VUE_APP_API_BASE_URL = https://youxuan.ixiaokejia.com
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = https://delivery.ixiaokejia.com
16
+VUE_APP_IMAGE_BASE_URL = https://youxuan.ixiaokejia.com
17 17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18 18
 
19 19
 # 微信小程序appId

+ 1 - 1
a.txt

@@ -1,4 +1,4 @@
1
-VUE_APP_API_BASE_URL = https://delivery.ixiaokejia.com
1
+VUE_APP_API_BASE_URL = https://youxuan.ixiaokejia.com
2 2
 http://localhost:8076
3 3
 
4 4
 appId: wxb5576f3e19f407cb

+ 0 - 154
src/common/js/signalR.js

@@ -1,154 +0,0 @@
1
-const protocal = {
2
-    protocol: 'json',
3
-    version: 1,
4
-}
5
-
6
-const MessageType = {
7
-    /** Indicates the message is an Invocation message and implements the {@link InvocationMessage} interface. */
8
-    Invocation: 1,
9
-    /** Indicates the message is a StreamItem message and implements the {@link StreamItemMessage} interface. */
10
-    StreamItem: 2,
11
-    /** Indicates the message is a Completion message and implements the {@link CompletionMessage} interface. */
12
-    Completion: 3,
13
-    /** Indicates the message is a Stream Invocation message and implements the {@link StreamInvocationMessage} interface. */
14
-    StreamInvocation: 4,
15
-    /** Indicates the message is a Cancel Invocation message and implements the {@link CancelInvocationMessage} interface. */
16
-    CancelInvocation: 5,
17
-    /** Indicates the message is a Ping message and implements the {@link PingMessage} interface. */
18
-    Ping: 6,
19
-    /** Indicates the message is a Close message and implements the {@link CloseMessage} interface. */
20
-    Close: 7,
21
-}
22
-
23
-export class HubConnection {
24
-
25
-    // 构造函数
26
-    constructor() {
27
-        this.connection = {}
28
-        this.openStatus = false
29
-        this.invocationId = 0
30
-    }
31
-
32
-    // 创建链接
33
-    connectSocket(option = {}) {
34
-        if (this.connection != null && this.openStatus) {
35
-            return
36
-        }
37
-
38
-        this.connection = uni.connectSocket({
39
-            ...option,
40
-            success: () => {
41
-                console.log('建立连接成功')
42
-            },
43
-            fail: () => {
44
-                console.log('建立连接失败')
45
-            },
46
-        })
47
-        this.onOpen(() => {
48
-            console.log('连接打开')
49
-            this.openStatus = true
50
-            this.send(protocal)
51
-        })
52
-        this.onClose(() => {
53
-            console.log('连接关闭')
54
-            this.connection = null
55
-            this.openStatus = false
56
-        })
57
-        this.onError(res => {
58
-            console.error('连接出错:' + res.errMsg)
59
-        })
60
-    }
61
-
62
-    // 监听连接打开事件
63
-    onOpen(callback) {
64
-        this.connection.onOpen(res => {
65
-            callback(res)
66
-        })
67
-    }
68
-
69
-    // 监听连接关闭事件
70
-    onClose(callback) {
71
-        this.connection.onClose(res => {
72
-            callback(res)
73
-        })
74
-    }
75
-
76
-    // 监听连接错误事件
77
-    onError(callback) {
78
-        this.connection.onError(res => {
79
-            callback(res)
80
-        })
81
-    }
82
-
83
-    // 接收服务器消息事件
84
-    onMessage(callback) {
85
-        this.connection.onMessage(res => {
86
-            let data = res.data.split('')
87
-            data.length = data.length - 1
88
-
89
-            data.forEach(item => {
90
-                let message = JSON.parse(item)
91
-                if (message.type === MessageType.Invocation) {
92
-                    callback(message)
93
-                } else if (message.type === MessageType.Completion) {
94
-                    if (message.error) {
95
-                        console.error(message.error)
96
-                    }
97
-                }
98
-            })
99
-        })
100
-    }
101
-
102
-    // 发送数据
103
-    send(data, success, fail) {
104
-        this.connection.send({
105
-            data: JSON.stringify(data) + '',
106
-            success: success,
107
-            fail: fail,
108
-        })
109
-    }
110
-
111
-    // 发送消息
112
-    sendData(functionName) {
113
-        let args = []
114
-        for (let i = 1; i < arguments.length; i++) {
115
-            args[i - 1] = arguments[i]
116
-        }
117
-
118
-        let data = {
119
-            target: functionName,
120
-            arguments: args,
121
-            type: MessageType.Invocation,
122
-            invocationId: this.invocationId.toString(),
123
-        }
124
-        this.invocationId++
125
-
126
-        return new Promise((resolve, reject) => {
127
-            this.connection.send({
128
-                data: JSON.stringify(data) + '',
129
-                success: res => {
130
-                    resolve(res)
131
-                },
132
-                fail: res => {
133
-                    reject(res)
134
-                },
135
-            })
136
-        })
137
-    }
138
-
139
-    // 关闭连接
140
-    close(option = {}) {
141
-        this.connection.close({
142
-            code: option.code || 1000,
143
-            reason: option.reason || '客户端主动关闭',
144
-            success: () => {
145
-                this.openStatus = false
146
-                console.log('主动关闭连接')
147
-            },
148
-            fail: res => {
149
-                console.log('主动关闭连接失败')
150
-                console.log(res)
151
-            },
152
-        })
153
-    }
154
-}

+ 3 - 0
src/common/store/user.js

@@ -10,6 +10,8 @@ const module = {
10 10
         tokenExpires:'',
11 11
         uvId:'',
12 12
         init:false,
13
+        userInfo:null,
14
+        login:false,
13 15
     },
14 16
 
15 17
     // 同步方法
@@ -42,6 +44,7 @@ const module = {
42 44
             state.token = data.token || ''
43 45
             state.uvId = data.uvId || ''
44 46
             state.tokenExpires = data.tokenExpires || ''
47
+            state.login = data.visitor.nickName ? true : false
45 48
             state.init = true;
46 49
         },
47 50
 

+ 1 - 1
src/pages/goods/index.vue

@@ -1,7 +1,7 @@
1 1
 <template>
2 2
     <div class="page">
3 3
         <div id="pageTop">
4
-            <nav-bar :title="'店铺'"></nav-bar>
4
+            <nav-bar :title="' '"></nav-bar>
5 5
             <section class="shop-info">
6 6
                 <div class="head-bg">
7 7
                     <my-image

+ 6 - 6
src/pages/index/index.vue

@@ -151,8 +151,8 @@ export default {
151 151
     filters: {},
152 152
     async onLoad() {
153 153
         await this.fn.init();
154
+        console.log(this.userInfo,1111,this.user);
154 155
         this.getData();
155
-        this.fn.updateUserInfo();
156 156
     },
157 157
     async onShow() {},
158 158
 
@@ -212,15 +212,15 @@ export default {
212 212
     // 数据计算
213 213
     computed: {
214 214
         user() {
215
-            return this.$store.state.user;
215
+            return this.$store.state.user.user;
216 216
         },
217 217
         userInfo() {
218 218
             return this.$store.state.user.userInfo || "";
219 219
         },
220
-        userAddress() {
221
-            let str = this.user.province + this.user.city;
222
-            return str || "";
223
-        },
220
+        // userAddress() {
221
+        //     let str = this.user.province + this.user.city;
222
+        //     return str || "";
223
+        // },
224 224
         activeShop() {
225 225
             return this.$store.state.common.activeShop || {};
226 226
         },

+ 8 - 3
src/pages/order/affirm.vue

@@ -23,7 +23,7 @@
23 23
                 >配送到家</a
24 24
             >
25 25
             <a
26
-                v-if="deliveryConfig.deliveryMethod.storePickUp"
26
+                v-if="deliveryConfig.deliveryMethod.storePickUp && productSource !=='1'"
27 27
                 class="tab__item"
28 28
                 :class="{ on: curTab === 1 }"
29 29
                 @click="tabChange(1)"
@@ -165,14 +165,19 @@
165 165
             </div>
166 166
             <p class="address__warn" v-if="distance">{{ distanceTxt }}</p>
167 167
         </div>
168
-        <div class="page__title" v-if="curTab === 2">
168
+        <div class="page__title" v-if="curTab === 2 && productSource!=='1'">
169 169
             <div class="text">配送时间</div>
170 170
             <div class="val" @click="showTime">
171 171
                 {{ selectTime }}
172 172
                 <i class="iconfont iconyoujiantou arrows"></i>
173 173
             </div>
174 174
         </div>
175
-        <div class="deliveryTips" v-if="curTab === 2 && deliveryConfig.deliveryTips">
175
+        <div class="page__title" v-if="productSource==='1'">
176
+            <div class="text">订单详情</div>
177
+            <div class="val" >
178
+            </div>
179
+        </div>
180
+        <div class="deliveryTips" v-if="curTab === 2 && deliveryConfig.deliveryTips && productSource!=='1'">
176 181
             说明:{{deliveryConfig.deliveryTips}}
177 182
         </div>
178 183
         <div class="page__title" v-if="curTab === 1">

+ 2 - 2
src/pages/recommend/detail.vue

@@ -28,14 +28,14 @@
28 28
                         <div class="price__present">
29 29
                             <span class="price__rmb">¥</span>
30 30
                             <span class="price__big">{{
31
-                                goods.minPrice || "0.00"
31
+                                goods.minPrice/100 || "0.00"
32 32
                             }}</span>
33 33
                         </div>
34 34
                         <div
35 35
                             class="price__original"
36 36
                             v-if="goods.tagPrice !== '0.00'"
37 37
                         >
38
-                            {{ "¥" + (goods.tagPrice || "0.00") }}
38
+                            {{ "¥" + (goods.tagPrice/100 || "0.00") }}
39 39
                         </div>
40 40
                     </div>
41 41
                     <div class="info__num">

File diff suppressed because it is too large
+ 773 - 712
src/pages/recommend/list.vue


BIN
src/static/test/avatar.jpg


BIN
src/static/test/bg.jpg