|
@@ -146,13 +146,6 @@
|
|
|
<el-option label="采购供应商编号" value="7"></el-option>
|
|
|
</el-select>
|
|
|
</el-input>
|
|
|
- </el-col>
|
|
|
- <!-- 暂时注释,下版需要导出 -->
|
|
|
- <el-col :span="4" style="width: 66px; float: right">
|
|
|
-
|
|
|
- <el-button type="primary" style="margin-left:30px;" @click="download" :size="searchSize" class="fr">
|
|
|
- 导出
|
|
|
- </el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="4" style="width: 66px; float: right">
|
|
|
<el-button
|
|
@@ -164,9 +157,24 @@
|
|
|
重置
|
|
|
</el-button>
|
|
|
</el-col>
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+ <!-- 暂时注释,下版需要导出 -->
|
|
|
+ <el-col
|
|
|
+ :span="4"
|
|
|
+ style="width: 66px; float: right"
|
|
|
+ v-if="
|
|
|
+ powers && powers.length > 0 && powers.some((item) => item == '087')
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ style="margin-left: 30px"
|
|
|
+ @click="download"
|
|
|
+ :size="searchSize"
|
|
|
+ class="fr"
|
|
|
+ >
|
|
|
+ 导出
|
|
|
+ </el-button>
|
|
|
+ </el-col>
|
|
|
|
|
|
</el-row>
|
|
|
</div>
|
|
@@ -321,21 +329,20 @@ export default {
|
|
|
//选中的数组集合
|
|
|
this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
|
|
|
},
|
|
|
- //导出文件
|
|
|
+ //导出文件
|
|
|
async download() {
|
|
|
- if(this.changeList.length<=0){
|
|
|
- this.$message.warning("请选择有效数据")
|
|
|
+ if (this.changeList.length <= 0) {
|
|
|
+ this.$message.warning("请选择有效数据");
|
|
|
return;
|
|
|
}
|
|
|
let model = {
|
|
|
- cgdNos:[]
|
|
|
- }
|
|
|
- this.changeList.forEach(item => {
|
|
|
- model.cgdNos.push(item.cgdNo)
|
|
|
+ cgdNos: [],
|
|
|
+ };
|
|
|
+ this.changeList.forEach((item) => {
|
|
|
+ model.cgdNos.push(item.cgdNo);
|
|
|
});
|
|
|
-
|
|
|
- // const res = await asyncRequest.exportcgdlist(model)
|
|
|
|
|
|
+ // const res = await asyncRequest.exportcgdlist(model)
|
|
|
|
|
|
if (!this.loading) {
|
|
|
this.loading = true;
|
|
@@ -359,7 +366,7 @@ export default {
|
|
|
let url = window.URL.createObjectURL(
|
|
|
new Blob([res.data], {
|
|
|
// type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8",
|
|
|
- type: httpType
|
|
|
+ type: httpType,
|
|
|
})
|
|
|
);
|
|
|
let link = document.createElement("a");
|