hi 4 weken geleden
bovenliggende
commit
7d80a43568

+ 1 - 1
App.vue

@@ -8,7 +8,7 @@ export default {
 		uni.setStorageSync('downloadApkParams', null);
 		console.log('onLaunch')
 		// 检测客户端更新
-		this.$store.dispatch('update/update', 0)
+		// this.$store.dispatch('update/update', 0)
 	},
 	onShow() {
 		// #ifdef APP-PLUS

+ 1 - 1
components/task-item/task-item.vue

@@ -33,7 +33,7 @@
 				</view>
 				<view class="task-line2">
 					<view>货物种类:</view>
-					<view class="task-num">{{item.goodsTypeCount || 0}}</view>
+					<view class="task-num">{{item.goodsTypeCount || 0}}</view>
 				</view>
 			</view>
 		</view>

+ 1 - 1
env.js

@@ -1,7 +1,7 @@
 /**
  *  全局配置文件
  */
-export const BASE_URL = process.env.NODE_ENV === "development" ? 'https://erp.xianglitech.com.cn/prod-api' : 'https://erp.xianglitech.com.cn/prod-api'
+export const BASE_URL = process.env.NODE_ENV === "development" ? 'https://test-erp.xianglitech.com.cn/stage-api' : 'https://test-erp.xianglitech.com.cn/stage-api'
 // https://erp.xianglitech.com.cn/prod-api
 // https://test-erp.xianglitech.com.cn/stage-api
 

+ 1 - 1
manifest.json

@@ -1,5 +1,5 @@
 {
-    "name" : "pdaApp",
+    "name" : "pdaApp-test",
     "appid" : "__UNI__7E491C0",
     "description" : "pdaApp",
     "versionName" : "1.0.2",

+ 1 - 1
pages/inventory-inquiry/index.vue

@@ -12,7 +12,7 @@
       <view class="head-box">
         <view class="search-box">
           <u-search
-            placeholder="请输入单据编号"
+            placeholder="输入关键字进行货物的模糊查询"
             shape="square"
             :showAction="false"
             @search="handleSearch"

+ 1 - 0
pages/inventory-task/components/check-item.vue

@@ -212,6 +212,7 @@ export default {
       background: #0256ff;
       font-size: 32rpx;
       border-radius: 8rpx;
+			margin-right: 20rpx;
     }
   }
 }

+ 2 - 1
pages/inventory-task/index.vue

@@ -36,8 +36,9 @@
             @btnClick="handleBtnClick"
           ></check-item>
         </view>
+				<u-empty mode="data" text="暂无内容" marginTop="60" icon="https://xiangli-erp.oss-cn-hangzhou.aliyuncs.com/APP/no-notifcations.png" v-if="list.length == 0"></u-empty>
         <!-- 加载更多 -->
-        <u-loadmore :status="loadStatus" @loadmore="onLoadMore" />
+        <u-loadmore v-if="list.length > 0" :status="loadStatus" @loadmore="onLoadMore" />
       </view>
     </view>