Browse Source

2023-10-30

hwq 1 year ago
parent
commit
92201195c9
7 changed files with 31 additions and 6 deletions
  1. 13 0
      .env
  2. 8 0
      .env.dev
  3. 1 2
      .env.production
  4. 0 2
      .gitignore
  5. 2 2
      public/index.html
  6. 6 0
      src/pages/order/orderList/handle/orderDetails.vue
  7. 1 0
      src/pages/user/list/index.vue

+ 13 - 0
.env

@@ -0,0 +1,13 @@
+# 所有环境默认
+
+# 页面 title
+VUE_APP_TITLE=壹柒科技
+# socket 客服连接地址
+VUE_APP_WS_KEFU_URL=
+# socket 系统连接地址
+VUE_APP_WS_ADMIN_URL=
+
+
+
+# 接口请求地址
+VUE_APP_API_URL=''

+ 8 - 0
.env.dev

@@ -0,0 +1,8 @@
+# 环境
+NODE_ENV=development
+VUE_APP_ENV='development'
+# 页面 title
+VUE_APP_TITLE=壹柒科技
+
+# 接口请求地址
+VUE_APP_API_URL=''

+ 1 - 2
.env.production

@@ -1,9 +1,8 @@
 # 生产环境
 NODE_ENV=production
 VUE_APP_ENV='production'
-
 # 页面 title
-VUE_APP_TITLE=壹柒科技
+VUE_APP_TITLE="壹柒科技"
 # socket 系统连接地址 (ws)或(wss)://www.crmeb.com(换成你的域名)/ws 非独立部署默认为空
 VUE_APP_WS_ADMIN_URL='wss://mall.tzyqkj.com/ws'
 # 接口请求地址 (http)或 (https)://www.crmeb.com(换成你的域名)/adminapi 非独立部署默认为空

+ 0 - 2
.gitignore

@@ -14,5 +14,3 @@ yarn-error.log*
 *.njsproj
 *.sln
 *.sw*
-.env
-.env.dev

+ 2 - 2
public/index.html

@@ -7,7 +7,7 @@
     <meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no">
     <link rel="shortcut icon" href="<%= BASE_URL %>favicon.ico">
     <title>
-        <%= VUE_APP_TITLE %>
+		壹柒科技
     </title>
     <link rel="stylesheet" href="https://g.alicdn.com/de/prismplayer/2.13.2/skins/default/aliplayer-min.css">
 </head>
@@ -15,7 +15,7 @@
 <body>
     <noscript>
         <strong>
-            请开启 JavaScript 功能来使用 <%= VUE_APP_TITLE %>
+            请开启 JavaScript 功能来使用 壹柒科技
         </strong>
     </noscript>
     <iframe id='IEIframe' style='display: none;' width="100%" height="100%" src="/static_admin/ie.html"

+ 6 - 0
src/pages/order/orderList/handle/orderDetails.vue

@@ -550,6 +550,12 @@
                     ¥{{ orderDatalist.orderInfo.deduction_price || 0.0 }}
                   </div>
                 </li>
+				<li class="item">
+				  <div>复投积分抵扣:</div>
+				  <div class="value">
+				    ¥{{ orderDatalist.orderInfo.use_reorder_integral || 0.0 }}
+				  </div>
+				</li>
                 <li
                   class="item"
                   v-if="parseFloat(orderDatalist.orderInfo.use_integral)"

+ 1 - 0
src/pages/user/list/index.vue

@@ -468,6 +468,7 @@
         <vxe-column field="award_piece" title="分红值" min-width="90"></vxe-column>
         <vxe-column field="green_integral" title="绿积分" min-width="90"></vxe-column>
         <vxe-column field="base_integral" title="母积分" min-width="90"></vxe-column>
+        <vxe-column field="reorder_integral" title="复投积分" min-width="90"></vxe-column>
         <vxe-column field="group_id" title="分组" min-width="100"></vxe-column>
         <vxe-column field="phone" title="手机号" min-width="110"></vxe-column>
         <vxe-column field="user_type" title="用户类型" min-width="100"></vxe-column>