去掉排序

This commit is contained in:
zhangdingyu
2019-10-23 13:52:05 +08:00
parent 109c1ada91
commit ca6f5b5936
10 changed files with 96 additions and 99 deletions

View File

@@ -2,7 +2,7 @@
<div class="components-container">
<el-card>
<el-row>
<span> &nbsp;:</span>
<!--<span> &nbsp;:</span>-->
<el-select v-model="supplierValue11" clearable filterable size="small" placeholder="供应商" @focus="fetchData11()" @change="selectHetong()">
<el-option
v-for="item in supplier11"
@@ -10,7 +10,7 @@
:label="item.label"
:value="item.value"/>
</el-select>
<span>合同编号:</span>
<!--<span>合同编号:</span>-->
<el-select v-model="contractNumValue" filterable size="small" placeholder="合同编号" @change="contractChange">
<el-option
v-for="item in contractNums"
@@ -18,7 +18,7 @@
:label="item.label"
:value="item.value"/>
</el-select>
<span>|| :</span>
<!--<span>|| :</span>-->
<el-select v-model="supplierValue" clearable filterable size="small" placeholder="供应商" @focus="fetchData" @change="supplierChange9745">
<el-option
v-for="item in supplier"
@@ -26,9 +26,9 @@
:label="item.label"
:value="item.value"/>
</el-select>
<span>合同名称:</span>
<!--<span>合同名称:</span>-->
<el-input v-model="contractName" size="small"/>
<span>是否含税:</span>
<!--<span>是否含税:</span>-->
<el-input v-model="taxRate" size="small"/>
<el-tooltip :content="hasTax" placement="top">
<el-switch
@@ -40,15 +40,15 @@
</el-tooltip>
</el-row>
<el-row style="margin-top: 10px">
<span>交货日期:</span>
<!--<span>交货日期:</span>-->
<el-input v-model="deliveryDate" :disabled="!contractNumValue" size="small" type="textarea" rows="1" @blur="contractHeaderChange"/>
<span>开票信息:</span>
<!--<span>开票信息:</span>-->
<el-input v-model="invoiceInfo" :disabled="!contractNumValue" size="small" type="textarea" rows="1" @blur="contractHeaderChange"/>
<span>支付 日期:</span>
<!--<span>支付 日期:</span>-->
<el-input v-model="payDate" :disabled="!contractNumValue" size="small" type="textarea" rows="1" @blur="contractHeaderChange"/>
<span>支付方式:</span>
<!--<span>支付方式:</span>-->
<el-input v-model="payMethod" :disabled="!contractNumValue" size="small" type="textarea" rows="1" @blur="contractHeaderChange"/>
<span>其他说明:</span>
<!--<span>其他说明:</span>-->
<el-input v-model="otherInfo" :disabled="!contractNumValue" size="small" type="textarea" rows="1" @blur="contractHeaderChange"/>
<el-button v-if="quickChangePrice" size="mini" style="margin: 0px 0 0 10px" @click="quickChangePrice=!quickChangePrice">快速修改价格</el-button>
<el-button v-else size="mini" style="margin: 10px 0 0 10px" @click="quickChangePrice=!quickChangePrice">还原</el-button>