|
@@ -213,6 +213,16 @@
|
|
</el-select></el-input
|
|
</el-select></el-input
|
|
>
|
|
>
|
|
</el-col>
|
|
</el-col>
|
|
|
|
+
|
|
|
|
+ <el-col :span="4" style="margin-top:10px; margin-left:10px">
|
|
|
|
+ <el-select v-model="parmValue.is_stock" size="mini" placeholder="商品类型" clearable @change="
|
|
|
|
+ pageInfo.curr = 1;
|
|
|
|
+ parmValue.page = 1;
|
|
|
|
+ searchList();
|
|
|
|
+ ">
|
|
|
|
+ <el-option v-for="opt in isStockOptions" :key="opt.value" :value="opt.value" :label="opt.label" />
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-col>
|
|
</el-row>
|
|
</el-row>
|
|
</div></template
|
|
</div></template
|
|
>
|
|
>
|
|
@@ -432,13 +442,12 @@
|
|
<script>
|
|
<script>
|
|
import asyncRequest from "@/apis/service/goodStore/goodsCost";
|
|
import asyncRequest from "@/apis/service/goodStore/goodsCost";
|
|
import { listCol, options1, options4 } from "./columns";
|
|
import { listCol, options1, options4 } from "./columns";
|
|
-import { has_account_list } from "@/assets/js/statusList";
|
|
|
|
|
|
+import { has_account_list, isStockOptions } from "@/assets/js/statusList";
|
|
import mixinPage from "@/mixins/elPaginationHandle";
|
|
import mixinPage from "@/mixins/elPaginationHandle";
|
|
import companyHelper from "@/mixins/companyHelper";
|
|
import companyHelper from "@/mixins/companyHelper";
|
|
import addEdit from "./components/addEdit";
|
|
import addEdit from "./components/addEdit";
|
|
import resToken from "@/mixins/resToken";
|
|
import resToken from "@/mixins/resToken";
|
|
import { mapGetters } from "vuex";
|
|
import { mapGetters } from "vuex";
|
|
-
|
|
|
|
export default {
|
|
export default {
|
|
name: "goodsCost",
|
|
name: "goodsCost",
|
|
mixins: [mixinPage, resToken, companyHelper],
|
|
mixins: [mixinPage, resToken, companyHelper],
|
|
@@ -474,6 +483,7 @@ export default {
|
|
dialogFormVisible: false,
|
|
dialogFormVisible: false,
|
|
has_account_list,
|
|
has_account_list,
|
|
donline_formStOps: [],
|
|
donline_formStOps: [],
|
|
|
|
+ isStockOptions,
|
|
donline_form: {
|
|
donline_form: {
|
|
offline_reason: "",
|
|
offline_reason: "",
|
|
offline_remark: "",
|
|
offline_remark: "",
|
|
@@ -542,6 +552,7 @@ export default {
|
|
parmValue: {
|
|
parmValue: {
|
|
page: 1, // 页码
|
|
page: 1, // 页码
|
|
size: 15, // 每页显示条数
|
|
size: 15, // 每页显示条数
|
|
|
|
+ is_stock: "",
|
|
start: "",
|
|
start: "",
|
|
end: "",
|
|
end: "",
|
|
status: "",
|
|
status: "",
|