Explorar el Código

app商品管理

linbl hace 1 año
padre
commit
39ff385b13
Se han modificado 2 ficheros con 17 adiciones y 11 borrados
  1. 12 6
      pages/market/one/merchant/goods/add.vue
  2. 5 5
      pages/oneMarket/cart/cart.vue

+ 12 - 6
pages/market/one/merchant/goods/add.vue

@@ -19,22 +19,25 @@
 			<view class="form_group">
 				<view class="lable re">商品价格</view>
 				<input type="number" placeholder="请输入" v-model="item.price" />
-				<view class="ops">{{ item.unit }}</view>
+				<view class="ops" v-if="flag === '编辑商品'">{{ item.goodsUnits }}</view>
+				<view class="ops" v-else>{{ item.unit }}</view>
 			</view>
 			<view class="form_group">
 				<view class="lable re">商品数量</view>
 				<input type="number" placeholder="请输入" v-model="item.stock" />
-				<view class="ops">{{ item.goodsUnits }}</view>
+				
 			</view>
 			<view class="form_group">
 				<view class="lable re">净重</view>
 				<input placeholder="请输入" v-model="item.netWeight" />
-				<view class="ops">{{ item.unit }}</view>
+				<view class="ops" v-if="flag === '编辑商品'">{{ item.goodsUnits }}</view>
+				<view class="ops" v-else>{{ item.unit }}</view>
 			</view>
 			<view class="form_group">
 				<view class="lable re">毛重</view>
 				<input placeholder="请输入" v-model="item.grossWeight" />
-				<view class="ops">{{ item.unit }}</view>
+				<view class="ops" v-if="flag === '编辑商品'">{{ item.goodsUnits }}</view>
+				<view class="ops" v-else>{{ item.unit }}</view>
 			</view>
 			<view class="form_group">
 				<view class="lable re">商品状态</view>
@@ -52,7 +55,7 @@ export default {
 	data() {
 		return {
 			flag: '新增商品',
-			item: {},
+			item: {tradeAreaName:''},
 			dict: {
 				goodsType: ['水果', '药品', '茶叶'],
 				goodsUnits: ['吨', '个', '柜'],
@@ -88,7 +91,7 @@ export default {
 			this.$forceUpdate();
 			if(this.flag == '新增商品') {
 				this.item.id = this.goodsList[e.detail.value].id;
-				
+
 			}
 		},
 		pickerTradeArea(e) {
@@ -135,6 +138,9 @@ export default {
 		} else {
 			url = '/level-one-server/app/TbGoodsTransit/update';
 		}
+		delete this.item.createTime;
+		delete this.item.createBy;
+		delete this.item.createName;
 		this.http.request({
 			url: url,
 			method: 'POST',

+ 5 - 5
pages/oneMarket/cart/cart.vue

@@ -1,8 +1,8 @@
 <template>
 	<view>
 		<navigation-bar title="购物车" background-color="#0081ff" front-color="#ffffff" :left-button="null" />
-		<u-tabs lineWidth="50" :list="list" itemStyle="height:90rpx;width: 100rpx;" :is-scroll="false"
-			:current="current" @change="change"></u-tabs>
+		<!-- <u-tabs lineWidth="50" :list="list" itemStyle="height:90rpx;width: 100rpx;" :is-scroll="false"
+			:current="current" @change="change"></u-tabs> -->
 		<u-list style="margin-top: 10rpx;padding: 15rpx;" @scrolltolower="scrolltolower">
 			<u-list-item v-for="(item, index) in cartList" :key="index">
 				<view class="item-box">
@@ -25,7 +25,7 @@
 								<view class="subtit">
 									<view class="price">¥{{item.totalPrice}}</view>
 								</view>
-								
+
 							</view>
 						</view>
 					</view>
@@ -63,7 +63,7 @@
 			scrolltolower() {
 				this.getCartList()
 			},
-			// 
+			//
 			cleanCart(id) {
 				this.http.request({
 					url: '/level-one-server/app/TbGoodsCart/cleanCart',
@@ -149,4 +149,4 @@
 		margin: 10rpx 15rpx;
 		border-radius: 10rpx;
 	}
-</style>
+</style>