|
@@ -23,7 +23,7 @@
|
|
|
<span>{{ detailData ? detailData.buyerName : '--' }}</span>
|
|
|
</a-form-model-item>
|
|
|
<a-form-model-item label="收货客户名称" extra="如果收货客户和下单客户相同,则不需要选择收货客户名称">
|
|
|
- <custList ref="custList" @change="custChange"></custList>
|
|
|
+ <dealerSubareaScopeList ref="dealerSubareaScopeList" defValKey="buyerSn" @change="custChange" v-model="form.buyerSn" />
|
|
|
</a-form-model-item>
|
|
|
<a-form-model-item label="发货编号" prop="sendNo">
|
|
|
<a-input
|
|
@@ -33,7 +33,7 @@
|
|
|
placeholder="请输入发货编号"
|
|
|
allowClear />
|
|
|
<div style="height: 24px;line-height: normal;">
|
|
|
- 常用:<a-button size="small" type="link" v-for="i in 5">{{ i }}</a-button>
|
|
|
+ 常用:<a-button size="small" v-for="i in 5" @click="form.sendNo=i" type="link">{{ i }}</a-button>
|
|
|
</div>
|
|
|
</a-form-model-item>
|
|
|
<a-form-model-item label="备货打印" prop="print">
|
|
@@ -48,8 +48,8 @@
|
|
|
</a-form-model-item>
|
|
|
</a-form-model>
|
|
|
<div class="btn-cont">
|
|
|
- <a-button type="primary" id="dealerAccountEdit-save" @click="handleSave">保存</a-button>
|
|
|
- <a-button id="dealerAccountEdit-back" @click="isShow = false" style="margin-left: 15px;">取消</a-button>
|
|
|
+ <a-button type="primary" id="dealerAccountEdit-save" @click="handleSave">确定下推</a-button>
|
|
|
+ <a-button id="dealerAccountEdit-back" @click="isShow = false" style="margin-left: 15px;">取消下推</a-button>
|
|
|
</div>
|
|
|
</a-spin>
|
|
|
</div>
|
|
@@ -58,12 +58,12 @@
|
|
|
|
|
|
<script>
|
|
|
import { commonMixin } from '@/utils/mixin'
|
|
|
-import custList from '@/views/common/custList.vue'
|
|
|
+import dealerSubareaScopeList from '@/views/common/dealerSubareaScopeList.vue'
|
|
|
import { dealerUserSave } from '@/api/dealer'
|
|
|
export default {
|
|
|
name: 'DealerAccountEditModal',
|
|
|
mixins: [commonMixin],
|
|
|
- components: { custList },
|
|
|
+ components: { dealerSubareaScopeList },
|
|
|
props: {
|
|
|
openModal: { // 弹框显示状态
|
|
|
type: Boolean,
|