|
@@ -30,6 +30,17 @@
|
|
|
<a-input placeholder="请输入外销发票号" v-model="queryParam.exportInvoiceNo"></a-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
+ <template v-if="toggleSearchStatus">
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-item label="是否提交">
|
|
|
+ <a-select v-model="queryParam.status">
|
|
|
+ <a-select-option value="">请选择</a-select-option>
|
|
|
+ <a-select-option value="0">否</a-select-option>
|
|
|
+ <a-select-option value="1">是</a-select-option>
|
|
|
+ </a-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ </template>
|
|
|
|
|
|
<a-col :md="6" :sm="8">
|
|
|
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
|
|
@@ -348,7 +359,9 @@ export default {
|
|
|
getFabricList(){
|
|
|
this.$nextTick(() => {
|
|
|
this.queryParam.pageSize = 20
|
|
|
+ this.loading = true
|
|
|
fabricList(this.queryParam).then(res => {
|
|
|
+ this.loading = false
|
|
|
if (res.success) {
|
|
|
this.fabricListData = res.result.records;
|
|
|
this.loading = false
|