提交
This commit is contained in:
parent
5f4e40e712
commit
5f5eac6d84
|
@ -14,6 +14,7 @@
|
||||||
:multiple="multiple"
|
:multiple="multiple"
|
||||||
:init-select="initSelect"
|
:init-select="initSelect"
|
||||||
v-on="$listeners"
|
v-on="$listeners"
|
||||||
|
:query="query"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -31,7 +31,7 @@ export const PriceStatus = {
|
||||||
// 允许启用
|
// 允许启用
|
||||||
canEnable(status) {
|
canEnable(status) {
|
||||||
return [this.PASS].includes(status);
|
return [this.PASS].includes(status);
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
// 工资模式
|
// 工资模式
|
||||||
|
|
|
@ -155,7 +155,7 @@ import PriceInput from "@/components/Business/Price/PriceInput.vue";
|
||||||
import {isEmpty, notNullDecimal} from "@/utils";
|
import {isEmpty, notNullDecimal} from "@/utils";
|
||||||
import FormCol from "@/components/FormCol/index.vue";
|
import FormCol from "@/components/FormCol/index.vue";
|
||||||
import UserProductBatchDialog from "@/views/yh/report/edit/components/UserProductBatchDialog.vue";
|
import UserProductBatchDialog from "@/views/yh/report/edit/components/UserProductBatchDialog.vue";
|
||||||
import {IncomeMode} from "@/utils/constants";
|
import {IncomeMode, PriceStatus} from "@/utils/constants";
|
||||||
import Decimal from "decimal.js";
|
import Decimal from "decimal.js";
|
||||||
import ReportProductOrderListEdit from "@/views/yh/report/edit/components/ReportProductOrderListEdit.vue";
|
import ReportProductOrderListEdit from "@/views/yh/report/edit/components/ReportProductOrderListEdit.vue";
|
||||||
import ReportProductUserListEdit from "@/views/yh/report/edit/components/ReportProductUserListEdit.vue";
|
import ReportProductUserListEdit from "@/views/yh/report/edit/components/ReportProductUserListEdit.vue";
|
||||||
|
@ -225,7 +225,9 @@ export default {
|
||||||
},
|
},
|
||||||
priceQuery() {
|
priceQuery() {
|
||||||
return {
|
return {
|
||||||
deptId: this.form.deptId
|
deptId: this.form.deptId,
|
||||||
|
status: PriceStatus.PASS, // 已审核
|
||||||
|
disabled: false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user