瀏覽代碼

bug 修复

lilei 3 年之前
父節點
當前提交
66bf3fac9e

+ 0 - 13
package-lock.json

@@ -1,13 +0,0 @@
-{
-  "name": "qpls-md-app",
-  "version": "1.0.0",
-  "lockfileVersion": 1,
-  "requires": true,
-  "dependencies": {
-    "uview-ui": {
-      "version": "1.8.4",
-      "resolved": "https://registry.npmjs.org/uview-ui/-/uview-ui-1.8.4.tgz",
-      "integrity": "sha512-Zr+D5dFdNy6CdHQLBEXeGq/w0LkjxzBtsgaaDwLl0P58g67H7fBBDvy6AzWK/k0c7dwPYMBiK7I4Tr9p92+0DA=="
-    }
-  }
-}

+ 15 - 1
pages/common/partList.vue

@@ -13,7 +13,12 @@
 							<u-image :src="item.product&&item.product.productMsg?item.product.productMsg:`../../static/${theme}/def_img@2x.png`" width="128" height="128" border-radius="10"></u-image>
 						</view>
 						<view class="pinfo">
-							<view class="pname">{{item.product&&item.product.name?item.product.name:'--'}}</view>
+							<view class="pname">
+								<text v-if="item.shelfPlaceCode">
+									{{item.shelfPlaceCode}}
+								</text>
+							{{item.product&&item.product.name?item.product.name:'--'}}
+							</view>
 							<view class="ptxt flex align_center justify_between">
 								<view>
 									<text class="pcode">{{item.product&&item.product.code?item.product.code:'--'}}</text>
@@ -227,6 +232,15 @@
 					color: #191919;
 					font-weight: bold;
 					margin-bottom: 10rpx;
+					text{
+						font-weight: normal;
+						margin-right: 6rpx;
+						padding: 0 10rpx;
+						background: rgba(3, 54, 146, 0.15);
+						border-radius: 100rpx;
+						color: #033692;
+						font-size: 28rpx;
+					}
 				}
 				.pno{
 					background-color: rgba(3, 54, 146, 0.15);

+ 2 - 1
pages/common/printTag/printTag.vue

@@ -45,11 +45,12 @@
 			_this.fromPage = options.page
 			_this.infoData = options.data ? JSON.parse(options.data) : {},
 			_this.printNum = _this.fromPage == 'smdy' ? _this.infoData.confirmQty : _this.infoData.qty
+			_this.printNum = _this.printNum||1
 			console.log(_this.infoData)
 		},
 		onUnload() {
 			// this.$refs.kkprinter.closeConnect()
-			this.printNum = 0
+			this.printNum = 1
 			this.infoData = null
 			this.printInfo = null
 			this.fromPage = ''

+ 1 - 1
pages/login/login.vue

@@ -72,7 +72,7 @@ export default {
 		this.theme = getApp().globalData.theme;
 		
 		//#ifdef APP-PLUS
-		  // this.isAuthuserYs = plus.runtime.isAgreePrivacy()
+		  this.isAuthuserYs = this.$store.state.vuex_isUsrAuthYs
 		  uni.getSystemInfo({
 			  success:(res) => {
 				  console.log(res)

+ 1 - 0
pages/shuntBackManage/cancellingStocks.vue

@@ -87,6 +87,7 @@
 							item.confirmQty = item.qty ? Number(item.qty) : 0
 						})
 						this.partList = res.data || []
+						console.log(res.data)
 					}else{
 						this.partList = []
 					}