lilei 2 years ago
parent
commit
990c8c2fc3
3 changed files with 5 additions and 6 deletions
  1. 2 2
      manifest.json
  2. 1 1
      pages/sales/productPricing.vue
  3. 2 3
      pages/sales/search.vue

+ 2 - 2
manifest.json

@@ -2,8 +2,8 @@
     "name" : "iSCM智慧供应链",
     "appid" : "__UNI__5B57B68",
     "description" : "iSCM智慧供应链系统",
-    "versionName" : "1.2.3",
-    "versionCode" : 123,
+    "versionName" : "1.2.4",
+    "versionCode" : 124,
     "transformPx" : false,
     /* 5+App特有相关 */
     "app-plus" : {

+ 1 - 1
pages/sales/productPricing.vue

@@ -93,7 +93,7 @@
 					"code": "",
 					"name": "",
 					"origCode": "",
-					"putStockFlag": 0
+					"putStockFlag": 1
 				}
 			}
 		},

+ 2 - 3
pages/sales/search.vue

@@ -61,7 +61,7 @@
 					productTypeSn2: undefined, //  产品分类2
 					productTypeSn3: undefined, //  产品分类3
 					onlineFalg: undefined,
-					putStockFlag: false
+					putStockFlag: true
 				},
 				customBtnStyle: {  //  自定义按钮样式
 					borderColor: this.$config('primaryColor'),
@@ -88,7 +88,7 @@
 				this.form.code = ''
 				this.form.name = ''
 				this.form.origCode = ''
-				this.form.putStockFlag = false
+				this.form.putStockFlag = true
 				this.brandClean()
 				this.typeClean()
 				this.clearOnlineFlag()
@@ -99,7 +99,6 @@
 			handleSearch(){
 				let data = JSON.parse(JSON.stringify(this.form))
 				data.putStockFlag = data.putStockFlag ? 1 : 0
-				console.log(data)
 				this.$emit('refresh', data)
 				this.isShow=false
 			},