250418
This commit is contained in:
@@ -183,7 +183,7 @@ const columns = ref<ColumnItem[]>([
|
|||||||
align: 'center',
|
align: 'center',
|
||||||
customRender: ({text}) => {
|
customRender: ({text}) => {
|
||||||
if (text === 0) return ''
|
if (text === 0) return ''
|
||||||
else return dayjs(text).format('YYYY-MM-DD HH:mm:ss')
|
else return dayjs(text * 1000).format('YYYY-MM-DD HH:mm:ss')
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -121,9 +121,9 @@
|
|||||||
v-model:value="form.unitName"
|
v-model:value="form.unitName"
|
||||||
/>
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<a-form-item label="原价" name="originPrice">
|
<a-form-item label="原价(划线价)" name="originPrice">
|
||||||
<a-input-number
|
<a-input-number
|
||||||
:placeholder="`原价`"
|
:placeholder="`原价(划线价)`"
|
||||||
style="width: 240px"
|
style="width: 240px"
|
||||||
:min="0.01"
|
:min="0.01"
|
||||||
v-model:value="form.originPrice"
|
v-model:value="form.originPrice"
|
||||||
@@ -138,16 +138,16 @@
|
|||||||
/>
|
/>
|
||||||
<div class="ele-text-placeholder">普通用户购物价格</div>
|
<div class="ele-text-placeholder">普通用户购物价格</div>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<a-form-item label="会员价" name="price">
|
<a-form-item label="牛八哥会员价" name="price">
|
||||||
<a-space>
|
<a-space>
|
||||||
<a-input-number
|
<a-input-number
|
||||||
:placeholder="`会员价`"
|
:placeholder="`牛八哥会员价`"
|
||||||
style="width: 240px"
|
style="width: 240px"
|
||||||
:min="0.01"
|
:min="0.01"
|
||||||
v-model:value="form.price"
|
v-model:value="form.price"
|
||||||
/>
|
/>
|
||||||
</a-space>
|
</a-space>
|
||||||
<div class="ele-text-placeholder">会员购物价格</div>
|
<div class="ele-text-placeholder">牛八哥会员购物价格</div>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<a-form-item label="是否有赠品">
|
<a-form-item label="是否有赠品">
|
||||||
<a-checkbox v-model:checked="form.priceGift">有赠品</a-checkbox>
|
<a-checkbox v-model:checked="form.priceGift">有赠品</a-checkbox>
|
||||||
@@ -178,7 +178,7 @@
|
|||||||
<!-- </a-space>-->
|
<!-- </a-space>-->
|
||||||
<!-- <div class="ele-text-placeholder">经销商价格</div>-->
|
<!-- <div class="ele-text-placeholder">经销商价格</div>-->
|
||||||
<!-- </a-form-item>-->
|
<!-- </a-form-item>-->
|
||||||
<a-form-item label="会员店/总仓批发价" name="buyingPrice" v-if="!merchantId">
|
<a-form-item label="会员店/总仓批发价" name="buyingPrice">
|
||||||
<a-space>
|
<a-space>
|
||||||
<a-input-number
|
<a-input-number
|
||||||
:placeholder="`会员店/总仓批发价`"
|
:placeholder="`会员店/总仓批发价`"
|
||||||
|
|||||||
Reference in New Issue
Block a user