|
@@ -14,9 +14,12 @@
|
|
|
<div class="axis-title">{{ orderComData[0].actionName }}</div>
|
|
<div class="axis-title">{{ orderComData[0].actionName }}</div>
|
|
|
<div class="axis-det">
|
|
<div class="axis-det">
|
|
|
<div class="app-color-0 app-bold">{{ orderComData[0].finishTime | formatTime }}</div>
|
|
<div class="app-color-0 app-bold">{{ orderComData[0].finishTime | formatTime }}</div>
|
|
|
- <button class="admin-button-com big blue confirm-btn" @click="confirmFn">归类</button>
|
|
|
|
|
- <div>分类: {{ orderComData[0].classify.category }}</div>
|
|
|
|
|
- <div>用途:{{ orderComData[0].classify.usage }}</div>
|
|
|
|
|
|
|
+ <template v-if="$util.isEmpty(orderComData[0].classify)">
|
|
|
|
|
+ <button class="admin-button-com small blue confirm-btn" @click="confirmFn">归类</button>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <template v-else>
|
|
|
|
|
+ <div>{{ orderComData[0].classify.usage }} {{ orderComData[0].classify.category }}</div>
|
|
|
|
|
+ </template>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
@@ -36,7 +39,7 @@
|
|
|
<div>状态:{{ orderComData[1].sendInfo.status | constantfilter('SEND_STATUS') }}</div>
|
|
<div>状态:{{ orderComData[1].sendInfo.status | constantfilter('SEND_STATUS') }}</div>
|
|
|
</block>
|
|
</block>
|
|
|
<block v-else>
|
|
<block v-else>
|
|
|
- <div>配送方:门店</div>
|
|
|
|
|
|
|
+ <div>配送:门店</div>
|
|
|
</block>
|
|
</block>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
@@ -178,6 +181,7 @@ export default {
|
|
|
id: this.orderData.id,
|
|
id: this.orderData.id,
|
|
|
...this.form
|
|
...this.form
|
|
|
}).then(res => {
|
|
}).then(res => {
|
|
|
|
|
+ this.selModal = false;
|
|
|
this.$msg('订单归类成功!')
|
|
this.$msg('订单归类成功!')
|
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
|
this.$emit('nextPageSuccess', {
|
|
this.$emit('nextPageSuccess', {
|