|
@@ -9,11 +9,10 @@
|
|
|
<image class="item-icon" :src="item.cover" alt="" />
|
|
<image class="item-icon" :src="item.cover" alt="" />
|
|
|
<view class="item-info">
|
|
<view class="item-info">
|
|
|
<view class="info-line">
|
|
<view class="info-line">
|
|
|
- <text class="item-name">{{ item.itemName }}</text>
|
|
|
|
|
|
|
+ <text class="item-name">{{ item.name }}</text>
|
|
|
<text class="item-price">
|
|
<text class="item-price">
|
|
|
- <text class="unit">¥</text>
|
|
|
|
|
<text class="price">
|
|
<text class="price">
|
|
|
- {{ parseFloat(item.bigPrice)||0 }}
|
|
|
|
|
|
|
+ ¥{{ parseFloat(item.bigPrice)||0 }}
|
|
|
</text>
|
|
</text>
|
|
|
</text>
|
|
</text>
|
|
|
</view>
|
|
</view>
|
|
@@ -38,9 +37,9 @@
|
|
|
<view class="module-com input-line-wrap">
|
|
<view class="module-com input-line-wrap">
|
|
|
|
|
|
|
|
<tui-list-cell class="line-cell" :hover="false" :arrow="false" >
|
|
<tui-list-cell class="line-cell" :hover="false" :arrow="false" >
|
|
|
- <button class="admin-button-com big" :class="[form.sendType == 2 ? 'blue' : 'default']" style="width:180upx;" @click="changeSendType(2)">请跑腿送</button>
|
|
|
|
|
- <button class="admin-button-com big" :class="[form.sendType == 1 ? 'blue' : 'default']" style="width:180upx;" @click="changeSendType(1)">到店自取</button>
|
|
|
|
|
- <button class="admin-button-com big" :class="[form.sendType == 0 ? 'blue' : 'default']" style="width:180upx;" @click="changeSendType(0)">有车上门</button>
|
|
|
|
|
|
|
+ <button class="admin-button-com big" :class="[form.sendType == 2 ? 'blue' : 'default']" style="width:180upx;border:none;" @click="changeSendType(2)">请跑腿送</button>
|
|
|
|
|
+ <button class="admin-button-com big" :class="[form.sendType == 1 ? 'blue' : 'default']" style="width:180upx;border:none;" @click="changeSendType(1)">到店自取</button>
|
|
|
|
|
+ <button class="admin-button-com big" :class="[form.sendType == 0 ? 'blue' : 'default']" style="width:180upx;border:none;" @click="changeSendType(0)">有车上门</button>
|
|
|
</tui-list-cell>
|
|
</tui-list-cell>
|
|
|
|
|
|
|
|
<tui-list-cell class="line-cell" :hover="false" :arrow="false">
|
|
<tui-list-cell class="line-cell" :hover="false" :arrow="false">
|
|
@@ -331,8 +330,9 @@ export default {
|
|
|
justify-content: space-between;
|
|
justify-content: space-between;
|
|
|
align-items: flex-end;
|
|
align-items: flex-end;
|
|
|
.item-name {
|
|
.item-name {
|
|
|
- color: #666;
|
|
|
|
|
- font-size: 28upx;
|
|
|
|
|
|
|
+ color: #333333;
|
|
|
|
|
+ font-size: 32upx;
|
|
|
|
|
+ font-weight:bold;
|
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
|
white-space: nowrap;
|
|
white-space: nowrap;
|
|
|
text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
@@ -342,7 +342,7 @@ export default {
|
|
|
color: #333;
|
|
color: #333;
|
|
|
font-size: 22upx;
|
|
font-size: 22upx;
|
|
|
.price {
|
|
.price {
|
|
|
- font-size: 32upx;
|
|
|
|
|
|
|
+ font-size: 30upx;
|
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
@@ -351,8 +351,8 @@ export default {
|
|
|
font-size: 24upx;
|
|
font-size: 24upx;
|
|
|
}
|
|
}
|
|
|
.item-count {
|
|
.item-count {
|
|
|
- color: #666;
|
|
|
|
|
- font-size: 24upx;
|
|
|
|
|
|
|
+ color: #333333;
|
|
|
|
|
+ font-size: 30upx;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|