|
|
@@ -354,7 +354,7 @@
|
|
|
</ul>
|
|
|
<ul class="nav-right"></ul>
|
|
|
</div>
|
|
|
- <el-checkbox @change="checked=>handleSelectAll(checked)" class="all-check-btn" >全选 </el-checkbox>
|
|
|
+ <el-checkbox @change="checked=>handleSelectAll(checked)" class="all-check-btn" v-model="selectAll">全选 </el-checkbox>
|
|
|
<span v-if="dataListSelections.size" class="had-selected">已选 {{dataListSelections.size}}</span>
|
|
|
<div
|
|
|
class="default-btn"
|
|
|
@@ -979,8 +979,8 @@
|
|
|
label-width="80px">
|
|
|
<el-form-item label="打印渠道" prop="printChannel">
|
|
|
<el-select v-model="printChannel" clearable filterable>
|
|
|
- <el-option key="GSART" label="广森" value="GSART"></el-option>
|
|
|
- <el-option key="WoNiu" label="蜗牛" value="WoNiu"></el-option>
|
|
|
+<!-- <el-option key="GSART" label="广森" value="GSART"></el-option>-->
|
|
|
+<!-- <el-option key="WoNiu" label="蜗牛" value="WoNiu"></el-option>-->
|
|
|
<el-option key="KuaiYin" label="快印" value="KuaiYin"></el-option>
|
|
|
<el-option key="Lightning" label="闪电" value="Lightning"></el-option>
|
|
|
</el-select>
|
|
|
@@ -1004,8 +1004,8 @@
|
|
|
>
|
|
|
<el-form-item label="打印渠道" prop="printChannel">
|
|
|
<el-select v-model="printChannel" clearable filterable>
|
|
|
- <el-option key="GSART" label="广森" value="GSART"></el-option>
|
|
|
- <el-option key="WoNiu" label="蜗牛" value="WoNiu"></el-option>
|
|
|
+ <!--<el-option key="GSART" label="广森" value="GSART"></el-option>
|
|
|
+ <el-option key="WoNiu" label="蜗牛" value="WoNiu"></el-option>-->
|
|
|
<el-option key="KuaiYin" label="快印" value="KuaiYin"></el-option>
|
|
|
<el-option key="Lightning" label="闪电" value="Lightning"></el-option>
|
|
|
</el-select>
|
|
|
@@ -1191,7 +1191,7 @@ export default {
|
|
|
infoWidth: '400px',
|
|
|
generatePrintPdfBatchVisible: false,
|
|
|
orderCreateBatchVisible: false,
|
|
|
- printChannel: "GSART",
|
|
|
+ printChannel: "KuaiYin",
|
|
|
orderCreateBatchLoading: false
|
|
|
}
|
|
|
},
|
|
|
@@ -1896,6 +1896,16 @@ export default {
|
|
|
},
|
|
|
// 搜索查询
|
|
|
searchChange (newData = false) {
|
|
|
+ let it = this;
|
|
|
+ this.dataList.forEach((item, index) => {
|
|
|
+ it.$set(item,'checkStatus',false)
|
|
|
+ it.dataListSelections.delete(item.orderNumber);
|
|
|
+ it.selectAll = false;
|
|
|
+ it.checked = false;
|
|
|
+ })
|
|
|
+ this.dataListSelections = new Set();
|
|
|
+ this.selectAll = false;
|
|
|
+ this.selectSheets = 0;
|
|
|
this.page.currentPage = 1
|
|
|
// this.getDataList(this.page, null, newData)
|
|
|
if(this.status === 8){
|