|
@@ -6,11 +6,28 @@
|
|
|
<a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
|
|
|
<a-row :gutter="15">
|
|
|
<a-col :xl="6" :lg="6" :md="12" :sm="24">
|
|
|
- <a-form-item label="交易时间">
|
|
|
- <a-range-picker v-model="time" :format="dateFormat" allowClear :disabledDate="disabledDate" format="YYYY-MM-DD"/>
|
|
|
+ <a-form-item label="货架名称">
|
|
|
+ <shelfList @change="shelfChange"></shelfList>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :xl="6" :lg="6" :md="6" :sm="6" style="padding-top: 4px;">
|
|
|
+ <a-col :xl="6" :lg="6" :md="12" :sm="24">
|
|
|
+ <a-form-item label="关联客户">
|
|
|
+ <custList @change="custChange"></custList>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :xl="4" :lg="4" :md="12" :sm="24">
|
|
|
+ <a-form-item label="结算方式">
|
|
|
+ <shelfSettType></shelfSettType>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :xl="4" :lg="4" :md="12" :sm="24">
|
|
|
+ <a-form-item label="待结金额">
|
|
|
+ <div style="display: flex;">
|
|
|
+ <a-input-number/> <span style="margin: 0 10px;">至</span> <a-input-number/>
|
|
|
+ </div>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :xl="4" :lg="4" :md="6" :sm="6">
|
|
|
<a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="outboundOrderList-refresh" >查询</a-button>
|
|
|
<a-button style="margin-left: 8px" @click="resetSearchForm" :disabled="disabled" id="outboundOrderList-reset">重置</a-button>
|
|
|
</a-col>
|
|
@@ -50,8 +67,6 @@
|
|
|
</template>
|
|
|
</s-table>
|
|
|
</a-spin>
|
|
|
- <!-- 申请提现 -->
|
|
|
- <!-- <applyWithdrawal :isOpenModal="showModal" :currentData="currentData" @close="showModal=false" @refresh="$refs.table.refresh(true)"></applyWithdrawal> -->
|
|
|
</a-card>
|
|
|
</template>
|
|
|
|
|
@@ -59,9 +74,11 @@
|
|
|
import { commonMixin } from '@/utils/mixin'
|
|
|
import moment from 'moment'
|
|
|
import { STable } from '@/components'
|
|
|
-// import applyWithdrawal from './applyWithdrawal.vue'
|
|
|
+import shelfList from '@/views/common/shelfList.vue'
|
|
|
+import custList from '@/views/common/custList.vue'
|
|
|
+import shelfSettType from '@/views/common/shelfSettleType.js'
|
|
|
export default {
|
|
|
- components: { STable, commonMixin },
|
|
|
+ components: { STable, commonMixin, shelfList, custList, shelfSettType },
|
|
|
data () {
|
|
|
return {
|
|
|
spinning: false,
|
|
@@ -115,8 +132,8 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
- // 时间改变
|
|
|
- dateChange (date) {
|
|
|
+ // 选择货架
|
|
|
+ shelfChange (data) {
|
|
|
|
|
|
},
|
|
|
// 禁止选择今天之后的日期
|