|
@@ -46,7 +46,7 @@
|
|
|
<!-- 类似于picker多选 -->
|
|
|
<checkBoxPicker :showModal="showModal1" @chooseCon="chooseStatus" @close="showModal1 = false" code="SALES_BILL_STATUS"></checkBoxPicker>
|
|
|
<checkBoxPicker :showModal="showModal2" @chooseCon="chooseStatus" @close="showModal2 = false" code="SALES_SOURCE"></checkBoxPicker>
|
|
|
- <checkBoxPicker :showModal="showModal4" @chooseCon="chooseStatus" @close="showModal4 = false" code="verify_default_customer"></checkBoxPicker>
|
|
|
+ <checkBoxPicker :showModal="showModal3" @chooseCon="chooseStatus" @close="showModal3 = false" code="verify_default_customer"></checkBoxPicker>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
@@ -67,30 +67,15 @@ export default {
|
|
|
showModal0: false,
|
|
|
showModal1: false,
|
|
|
showModal2: false,
|
|
|
- showModal4: false,
|
|
|
+ showModal3: false,
|
|
|
|
|
|
siteNum:null,
|
|
|
|
|
|
- billCycle: '',
|
|
|
- checked: false,
|
|
|
+
|
|
|
inputStyle: {
|
|
|
'text-align': 'right'
|
|
|
},
|
|
|
- activeColor: this.$config('primaryColor'),
|
|
|
- showCheckBoxModal: false,
|
|
|
- statusList: [
|
|
|
- { id: 1, isChecked: false, name: '待提交' },
|
|
|
- { id: 1, isChecked: false, name: '待审核' },
|
|
|
- { id: 1, isChecked: false, name: '待出库' },
|
|
|
- { id: 1, isChecked: false, name: '已完结' }
|
|
|
- ],
|
|
|
- billStatus: '',
|
|
|
- originList: [{ id: 1, isChecked: false, name: '自建' }, { id: 1, isChecked: false, name: '下级创建' }, { id: 1, isChecked: false, name: '数字货架' }],
|
|
|
- customlist: [
|
|
|
- { id: 1, isChecked: false, name: '最近开单用户(月)' },
|
|
|
- { id: 1, isChecked: false, name: '最近开单用户(日)' },
|
|
|
- { id: 1, isChecked: false, name: '全部客户' }
|
|
|
- ]
|
|
|
+ activeColor: this.$config('primaryColor')
|
|
|
};
|
|
|
},
|
|
|
onLoad() {
|