Kaynağa Gözat

样式修改

lilei 2 yıl önce
ebeveyn
işleme
1ae7fdce17

+ 2 - 2
manifest.json

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

+ 1 - 1
pages/replenishmentManage/replenishmentList.vue

@@ -275,7 +275,7 @@
 			background: #ffffff;
 			padding: 20upx 30upx;
 			margin: 20upx;
-			border-radius: 25upx;
+			border-radius: 20upx;
 			box-shadow: 1px 1px 3px #EEEEEE;
 			.check-row{
 				 display: flex;

+ 1 - 2
pages/sales/listComponent.vue

@@ -4,7 +4,6 @@
 			<view class="sales-list-main">
 				<view class="sales-list-item" v-for="(item, index) in listData" :key="item.id" @click="getDetail(item)">
 					<view class="list-item-tit flex align_center justify_between">
-						<!-- <u-section :title="item.buyerName" :sub-title="item.billStatusDictValue" :line-color="$config('primaryColor')"></u-section> -->
 						<view class="u-line" :style="{background: $config('primaryColor')}"></view>
 						<view class="buyer">{{item.buyerName}}</view>
 						<view>{{item.billStatusDictValue}} <u-icon name="arrow-right" color="#969da3" size="28"></u-icon></view>
@@ -228,7 +227,7 @@
 					background: #ffffff;
 					padding: 20upx;
 					margin: 25upx 0;
-					border-radius: 25upx;
+					border-radius: 20upx;
 					box-shadow: 1px 1px 3px #EEEEEE;
 					.list-item-tit{
 						padding-bottom: 18upx;

+ 6 - 4
pages/shelfOrder/listComponent.vue

@@ -7,7 +7,7 @@
 						<view class="u-line" :style="{background: $config('primaryColor')}"></view>
 						<view class="buyer">{{item.shelfName||'--'}}</view>
 						<view><text :style="{color:item.billState=='CLOSE'?'#ff5500':'#999'}">{{item.billStateDictValue}}</text> 
-						<!-- <u-icon name="arrow-right" color="#969da3" size="28"></u-icon> -->
+						<u-icon name="arrow-right" color="#969da3" size="28"></u-icon>
 					</view>
 					</view>
 					<view class="detail-list">
@@ -163,10 +163,13 @@
 			.sales-list-main{
 				.sales-list-item{
 					background: #ffffff;
-					padding: 20upx;
+					padding: 10upx 20upx;
 					margin: 25upx 0;
-					border-radius: 25upx;
+					border-radius: 20upx;
 					box-shadow: 1px 1px 3px #EEEEEE;
+					&:active{
+						opacity: 0.6;
+					}
 					.list-item-tit{
 						padding-bottom: 18upx;
 						padding-top: 10upx;
@@ -176,7 +179,6 @@
 							width: 6upx;
 							height: 28upx;
 							vertical-align: bottom;
-							margin: 0 10upx;
 							border-radius: 5upx;
 						}
 						.buyer{

+ 8 - 9
pages/stock/stockSearch.vue

@@ -19,8 +19,8 @@
 		<scroll-view class="stockSearch-con" scroll-y @scrolltolower="onreachBottom">
 			<view class="stockSearch-main">
 				<view class="stockSearch-main-item" v-for="(item, index) in listData" :key="item.id" @click.stop="getDetail(item)">
-					<view class="stockSearch-tit flex align_center">
-						<!-- <view class="u-line" :style="{backgroundColor: $config('primaryColor')}"></view> -->
+					<view class="stockSearch-tit flex">
+						<view class="u-line" :style="{backgroundColor: $config('primaryColor')}"></view>
 						<view class="u-name">
 							{{item.productName}}
 						</view>
@@ -33,7 +33,7 @@
 							<u-image :src="item.productMsg?item.productMsg:`../../static/${theme}/def_img@2x.png`" width="128" height="128" border-radius="10"></u-image>
 						</view>
 						<view class="flex_1">
-							<view>产品编码:{{item.productCode || '--'}}</view>
+							<view>产品编码:{{item.productCode || '--'}} <copyText :text="item.productCode" label="产品编码"></copyText></view>
 							<view class="padding_3">原厂编码:{{item.productOrigCode && item.productOrigCode !== ' '? item.productOrigCode : '--'}}</view>
 						</view>
 					</view>
@@ -205,8 +205,8 @@
 				.stockSearch-main-item{
 					background: #ffffff;
 					padding: 20upx;
-					margin: 20upx;
-					border-radius: 25upx;
+					margin: 25upx;
+					border-radius: 20upx;
 					box-shadow: 1px 1px 3px #EEEEEE;
 					&:first-child{
 						margin-top: 0;
@@ -221,10 +221,9 @@
 						.u-line{
 							display: inline-block;
 							width: 6upx;
-							height: 40upx;
-							background-color: red;
-							vertical-align: bottom;
-							margin: 0 20upx 0 10upx;
+							height: 30upx;
+							margin: 6upx 10upx 0 10upx;
+							border-radius: 5upx;
 						}
 						.u-name{
 							flex-grow: 1;

+ 3 - 2
pages/stockCheck/startCheck.vue

@@ -245,9 +245,10 @@
 			}
 		},
 		onBackPress(e) {
-		  if(this.showTab||this.editModal) {  
+		  if(this.showTab||this.editModal||this.showCart) {  
 			this.showTab = false;
 			this.editModal = false;
+			this.showCart = false;
 			return true;  
 		  } 
 		},
@@ -681,7 +682,7 @@
 						z-index: 500;
 						width: 100%;
 						text-align: center;
-						background: rgba(255, 0, 0, 0.3);
+						background: rgba(255, 0, 0, 0.6);
 						color: #fff;
 						font-size: 20upx;
 					}