|
|
@@ -92,23 +92,31 @@
|
|
|
v-model="count"
|
|
|
center
|
|
|
border
|
|
|
- label="获取任务数量"
|
|
|
+ label="订单数量:"
|
|
|
placeholder="请输入数量"
|
|
|
type="number"
|
|
|
name="pattern"
|
|
|
ref="countRef"
|
|
|
class="count-input"
|
|
|
@keydown.enter="onCountTask"
|
|
|
+ label-width="7s0px"
|
|
|
+ label-align="center"
|
|
|
:rules="[{ pattern, message: '请输入正确数量' }]"
|
|
|
>
|
|
|
</van-field>
|
|
|
<div v-if="model.type" class="tips">
|
|
|
<!-- <div class="tips-item">货主:{{ownerMap[model.owner]}}</div>-->
|
|
|
- <div class="tips-item">承运商:{{model.carrier}}</div>
|
|
|
+ <div class="tips-item" style="display: flex;align-items: center;">
|
|
|
+ <div>承运商:</div>
|
|
|
+ <div style="flex: 1"><van-notice-bar :background="'none'" :speed="20" color="#000" :text="model.carrier" /></div>
|
|
|
+ </div>
|
|
|
<div class="tips-item" @click="count=modelCount">数量:<span class="all-count">{{modelCount}}</span></div>
|
|
|
- <div class="tips-item">类型:{{model.typeDescribe}}</div>
|
|
|
+<!-- <div class="tips-item">类型:{{model.typeDescribe}}</div>-->
|
|
|
<div class="tips-item" v-if="model.warehouseAttribute">属性仓:{{model.warehouseAttribute}}</div>
|
|
|
- <div class="tips-item" v-if="model.issuePartyName">店铺:{{model.issuePartyName}}</div>
|
|
|
+ <div class="tips-item" v-if="model.issuePartyName" style="display: flex;align-items: center;">
|
|
|
+ <div>店铺:</div>
|
|
|
+ <div style="flex: 1"><van-notice-bar :background="'none'" :speed="20" color="#000" :text="model.issuePartyName" /></div>
|
|
|
+ </div>
|
|
|
<div class="tips-item" v-if="model.ruleName">规则:{{model.ruleName}}</div>
|
|
|
<div class="tips-item" v-if="model.remark" style="color: orangered">备注:{{model.remark}}</div>
|
|
|
</div>
|