|
@@ -1,6 +1,6 @@
|
|
|
<script>
|
|
|
-import { dicts } from "./dicts";
|
|
|
import useColumns from "./columns";
|
|
|
+import { dicts } from "./dicts";
|
|
|
import { LIST } from "@/api/business/purchase/task";
|
|
|
|
|
|
export default {
|
|
@@ -8,7 +8,7 @@ export default {
|
|
|
dicts: dicts,
|
|
|
components: {
|
|
|
DcButton: () => import("./dao-chu/index.vue"),
|
|
|
- MxButton: () => import("./ming-xi/index.vue"),
|
|
|
+ SeeButton: () => import("./see/index.vue"),
|
|
|
ZpButton: () => import("./zhuan-pai/index.vue"),
|
|
|
ThxqButton: () => import("./tui-hui-xu-qiu/index.vue"),
|
|
|
XyzcButton: () => import("./xie-yi-zhi-cai/index.vue"),
|
|
@@ -100,16 +100,6 @@ export default {
|
|
|
useSelect(prop, value) {
|
|
|
this.selectData = prop;
|
|
|
},
|
|
|
- // 明 细
|
|
|
- async useSee(prop) {
|
|
|
- const { open } = this.$refs.mingxi;
|
|
|
- await open(prop);
|
|
|
- },
|
|
|
- // 导 出
|
|
|
- async useExport(prop, page) {
|
|
|
- const { open } = this.$refs.daochu;
|
|
|
- await open(prop, page);
|
|
|
- },
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
@@ -133,6 +123,14 @@ export default {
|
|
|
></el-super-search>
|
|
|
<div class="my-4" style="text-align: right">
|
|
|
<el-button-group>
|
|
|
+ <see-button
|
|
|
+ :size="size"
|
|
|
+ :dict="dict"
|
|
|
+ :select-data="selectData"
|
|
|
+ @success="useQuery(params, page)"
|
|
|
+ ></see-button>
|
|
|
+ </el-button-group>
|
|
|
+ <el-button-group>
|
|
|
<thxq-button
|
|
|
:size="size"
|
|
|
:select-data="selectData"
|
|
@@ -151,14 +149,6 @@ export default {
|
|
|
@success="useQuery(params, page)"
|
|
|
>
|
|
|
</zp-button>
|
|
|
- <mx-button
|
|
|
- v-show="false"
|
|
|
- :size="size"
|
|
|
- :dict="dict"
|
|
|
- :select-data="selectData"
|
|
|
- ref="mingxi"
|
|
|
- @success="useQuery(params, page)"
|
|
|
- ></mx-button>
|
|
|
</el-button-group>
|
|
|
<el-button-group>
|
|
|
<dc-button
|