123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- <template>
- <div>
- <el-card class="box-card">
- <byTable
- :source="sourceList.data"
- :pagination="sourceList.pagination"
- :config="config"
- :loading="loading"
- :searchConfig="searchConfig"
- highlight-current-row
- :action-list="[
- {
- text: '添加售价体系',
- action: () => clickModal(),
- },
- ]"
- @get-list="getList"
- @clickReset="clickReset">
- </byTable>
- </el-card>
- <el-dialog :title="modalType == 'add' ? '添加售价体系' : '编辑售价体系'" v-if="openDialog" v-model="openDialog" width="600">
- <byForm :formConfig="formConfig" :formOption="formOption" v-model="formData.data" :rules="rules" ref="submit"> </byForm>
- <template #footer>
- <el-button @click="openDialog = false" size="large">取 消</el-button>
- <el-button type="primary" @click="submitForm()" :disabled="btnDisabled" size="large">确 定</el-button>
- </template>
- </el-dialog>
- <el-dialog title="售价配置" v-if="openDisposition" v-model="openDisposition" width="96%">
- <SelectBOM :selectStatus="true" :priceSystemId="priceSystemId"></SelectBOM>
- <template #footer>
- <el-button @click="openDisposition = false" size="large">关 闭</el-button>
- </template>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import byTable from "@/components/byTable/index";
- import byForm from "@/components/byForm/index";
- import { ElMessage, ElMessageBox } from "element-plus";
- import SelectBOM from "@/views/group/BOM/management/index";
- const { proxy } = getCurrentInstance();
- const sourceList = ref({
- data: [],
- pagination: {
- total: 0,
- pageNum: 1,
- pageSize: 10,
- name: "",
- },
- });
- const loading = ref(false);
- const searchConfig = computed(() => {
- return [
- {
- type: "input",
- prop: "name",
- label: "售价体系",
- },
- ];
- });
- const config = computed(() => {
- return [
- {
- attrs: {
- label: "售价体系",
- prop: "name",
- width: 180,
- },
- },
- {
- attrs: {
- label: "备注",
- prop: "name",
- "min-width": 240,
- },
- },
- {
- attrs: {
- label: "操作",
- width: 180,
- align: "center",
- fixed: "right",
- },
- renderHTML(row) {
- return [
- {
- attrs: {
- label: "售价配置",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- clickDisposition(row);
- },
- },
- {
- attrs: {
- label: "编辑",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- clickUpdate(row);
- },
- },
- {
- attrs: {
- label: "删除",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- clickDelete(row);
- },
- },
- ];
- },
- },
- ];
- });
- const getList = async (req, status) => {
- if (status) {
- sourceList.value.pagination = {
- pageNum: sourceList.value.pagination.pageNum,
- pageSize: sourceList.value.pagination.pageSize,
- };
- } else {
- sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
- }
- loading.value = true;
- proxy.post("/priceSystem/page", sourceList.value.pagination).then((res) => {
- sourceList.value.data = res.rows;
- sourceList.value.pagination.total = res.total;
- setTimeout(() => {
- loading.value = false;
- }, 200);
- });
- };
- getList();
- const clickReset = () => {
- getList("", true);
- };
- const modalType = ref("add");
- const openDialog = ref(false);
- const submit = ref(null);
- const formOption = reactive({
- inline: true,
- labelWidth: "100px",
- itemWidth: 100,
- rules: [],
- labelPosition: "right",
- });
- const formData = reactive({
- data: {},
- });
- const formConfig = computed(() => {
- return [
- {
- type: "input",
- prop: "name",
- label: "售价体系",
- itemType: "text",
- },
- {
- type: "input",
- prop: "remark",
- label: "备注",
- itemType: "textarea",
- },
- ];
- });
- const rules = ref({
- name: [{ required: true, message: "请输入售价体系", trigger: "blur" }],
- });
- const btnDisabled = ref(false);
- const clickModal = () => {
- modalType.value = "add";
- formData.data = {};
- btnDisabled.value = false;
- openDialog.value = true;
- };
- const submitForm = () => {
- submit.value.handleSubmit(() => {
- btnDisabled.value = true;
- proxy.post("/priceSystem/" + modalType.value, formData.data).then(
- () => {
- ElMessage({
- message: modalType.value == "add" ? "添加成功" : "编辑成功",
- type: "success",
- });
- openDialog.value = false;
- btnDisabled.value = false;
- getList();
- },
- (err) => {
- console.log(err);
- btnDisabled.value = false;
- }
- );
- });
- };
- const openDisposition = ref(false);
- const priceSystemId = ref("");
- const clickDisposition = (row) => {
- priceSystemId.value = row.id;
- openDisposition.value = true;
- };
- const clickUpdate = (row) => {
- modalType.value = "edit";
- formData.data = row;
- btnDisabled.value = false;
- openDialog.value = true;
- };
- const clickDelete = (row) => {
- ElMessageBox.confirm("你是否确认此操作", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }).then(() => {
- proxy.post("/priceSystem/delete", { id: row.id }).then(() => {
- ElMessage({ message: "删除成功", type: "success" });
- getList();
- });
- });
- };
- </script>
- <style lang="scss" scoped>
- :deep(.el-dialog) {
- margin-top: 10px !important;
- margin-bottom: 10px !important;
- }
- </style>
|