|
@@ -28,6 +28,7 @@ export default {
|
|
ElSuperTable: () => import("@/components/super-table/index.vue"),
|
|
ElSuperTable: () => import("@/components/super-table/index.vue"),
|
|
ElSuperSearch: () => import("@/components/super-search/index.vue"),
|
|
ElSuperSearch: () => import("@/components/super-search/index.vue"),
|
|
Retrieve: () => import("@/components/Retrieve/index.vue"),
|
|
Retrieve: () => import("@/components/Retrieve/index.vue"),
|
|
|
|
+ ZpButton: () => import("./zhuan-pai/index.vue"),
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
const initTabColumns = () => TabColumns;
|
|
const initTabColumns = () => TabColumns;
|
|
@@ -52,6 +53,7 @@ export default {
|
|
primaryResource:{},
|
|
primaryResource:{},
|
|
timer:300,
|
|
timer:300,
|
|
timeOut:null,
|
|
timeOut:null,
|
|
|
|
+ size:'mini',
|
|
};
|
|
};
|
|
},
|
|
},
|
|
|
|
|
|
@@ -691,17 +693,17 @@ export default {
|
|
<!-- 操作 -->
|
|
<!-- 操作 -->
|
|
<el-row :gutter="24" type="flex" justify="end" style="margin: 20px 0;">
|
|
<el-row :gutter="24" type="flex" justify="end" style="margin: 20px 0;">
|
|
<el-col :span="24" style="text-align: right;">
|
|
<el-col :span="24" style="text-align: right;">
|
|
- <el-button size="mini" type="primary" @click="handleOpenAddDrawer"
|
|
|
|
|
|
+ <el-button :size="size" type="primary" @click="handleOpenAddDrawer"
|
|
v-hasPermi="['material:order:add']">新增</el-button>
|
|
v-hasPermi="['material:order:add']">新增</el-button>
|
|
|
|
|
|
<el-button-group style="margin-left: 10px">
|
|
<el-button-group style="margin-left: 10px">
|
|
- <el-button type="primary" size="mini" :disabled="checkedList.length != 1" @click="handleCopy">复制</el-button>
|
|
|
|
- <el-button type="primary" size="mini" @click="handleBatchSubmit">批量提交</el-button>
|
|
|
|
|
|
+ <el-button type="primary" :size="size" :disabled="checkedList.length != 1" @click="handleCopy">复制</el-button>
|
|
|
|
+ <el-button type="primary" :size="size" @click="handleBatchSubmit">批量提交</el-button>
|
|
</el-button-group>
|
|
</el-button-group>
|
|
|
|
|
|
<el-button-group style="margin-left: 10px" :key="checkedList.length + 1">
|
|
<el-button-group style="margin-left: 10px" :key="checkedList.length + 1">
|
|
- <el-button type="primary" size="mini" @click="handleAllReturn" :disabled="judgeIsAllReturn()">整单退回</el-button>
|
|
|
|
- <!-- <el-button type="primary" size="mini" @click="handleAllClose" :disabled="judgeIsAllClose()">整单关闭</el-button> -->
|
|
|
|
|
|
+ <el-button type="primary" :size="size" @click="handleAllReturn" :disabled="judgeIsAllReturn()">整单退回</el-button>
|
|
|
|
+ <!-- <el-button type="primary" :size="size" @click="handleAllClose" :disabled="judgeIsAllClose()">整单关闭</el-button> -->
|
|
</el-button-group>
|
|
</el-button-group>
|
|
|
|
|
|
<el-button-group style="margin:0 10px">
|
|
<el-button-group style="margin:0 10px">
|
|
@@ -718,7 +720,14 @@ export default {
|
|
>批量导出</el-button>
|
|
>批量导出</el-button>
|
|
|
|
|
|
</el-button-group>
|
|
</el-button-group>
|
|
-
|
|
|
|
|
|
+ <el-button-group>
|
|
|
|
+ <zp-button
|
|
|
|
+ :size="size"
|
|
|
|
+ :select-data="checkedList"
|
|
|
|
+ @success="handleQueryList"
|
|
|
|
+ >
|
|
|
|
+ </zp-button>
|
|
|
|
+ </el-button-group>
|
|
|
|
|
|
|
|
|
|
</el-col>
|
|
</el-col>
|