123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361 |
- <script>
- import Column from "../add/column";
- import useData from "../hooks/data";
- import useDicts from "../hooks/dicts";
- import useWatch from "../hooks/watch";
- import useMethods from "../hooks/function";
- import { ITEM, SAVE } from "@/api/business/purchase/apply";
- const { watchPuOrgName, watchPriceApplyOrgs, watchPriceApplyItems } =
- useWatch();
- export default {
- name: "EditDrawer",
- dicts: useDicts(Column),
- components: {},
- data() {
- return {
- title: "更 新",
- newParams: {
- priceApplyOrgs: [],
- priceApplyItems: [],
- },
- ...useData(Column),
- };
- },
- computed: {},
- watch: {
- "params.puOrgName": watchPuOrgName(),
- "params.priceApplyOrgs": watchPriceApplyOrgs(),
- "params.priceApplyItems": watchPriceApplyItems(),
- },
- methods: {
- //
- async fetchRefer(prop, type, source) {
- const { fetchTax, fetchUnit, fetchExist } = useMethods();
- if (type === "MATERIAL_PARAM") {
- const { puOrg, customer, supplier } = this.params;
- const { rateCode, unitIdName, code: materialCode } = prop;
- // task 1
- fetchTax(rateCode).then(({ ntaxrate }) => {
- source.tax = ntaxrate === "0E-8" ? "0.00000000" : ntaxrate;
- });
- // task 2
- fetchUnit(unitIdName).then(({ id, code, name }) => {
- source.unit = id;
- source.unitCode = code;
- source.unitName = name;
- source.puUnit = id;
- source.puUnitCode = code;
- source.puUnitName = name;
- });
- // task 3
- fetchExist({ puOrg, customer, supplier, materialCode }).then(
- ({ recentlyPrice, isApprovalFirst, isPriceAdjustment }) => {
- source.recentlyPrice = recentlyPrice;
- source.isApprovalFirst = isApprovalFirst;
- source.isPriceAdjustment = isPriceAdjustment;
- }
- );
- }
- },
- //
- async fetchItem(prop) {
- try {
- // try
- this.loading = true;
- const { code, data } = await ITEM(prop);
- if (code === 200) {
- this.params = data;
- return true;
- } else {
- return false;
- }
- } catch (err) {
- // catch
- console.error(err);
- } finally {
- // finally
- this.loading = false;
- }
- },
- //
- async open(prop) {
- this.visible = await this.fetchItem(prop);
- },
- //
- async hide() {
- this.visible = false;
- this.params = this.resetParams();
- this.tabName = this.tabColumns[0].key;
- },
- //
- async useRowAdd(prop) {
- const {
- $notify,
- params: { tabColumns, puOrgName, supplierName },
- } = this;
- if (!supplierName) {
- return $notify.info("请选择供应商");
- }
- if (!puOrgName) {
- return $notify.info("请选择采购组织");
- }
- const { tableColumns } = tabColumns.find(
- (element) => element.key === prop
- );
- this.params[prop].push(initParams(tableColumns));
- },
- //
- async useRowRemove(prop, scope) {
- const { $index } = scope;
- this.params[prop] = this.params[prop].map((item, index) => ({
- ...item,
- delFlag: index === $index ? "2" : item.delFlag,
- }));
- },
- //
- async useSubmit(prop) {
- this.$refs[prop].validate(async (valid) => {
- if (valid) {
- try {
- // try
- const params = { ...this.params };
- const { msg, code } = await SAVE(params);
- if (code === 200) {
- this.hide();
- this.$emit("success");
- this.$notify.success(msg);
- }
- } catch (err) {
- // catch
- console.error(err);
- } finally {
- // finally
- this.loading = false;
- }
- } else {
- return false;
- }
- });
- },
- },
- created() {},
- mounted() {},
- destroyed() {},
- };
- </script>
- <template>
- <el-drawer
- :size="width"
- :title="title"
- :show-close="false"
- :visible.sync="visible"
- >
- <template slot="title">
- <span>{{ title }}</span>
- <span>
- <el-button
- :size="size"
- circle
- icon="el-icon-close"
- @click="hide"
- ></el-button>
- <el-button
- :size="size"
- circle
- icon="el-icon-check"
- @click="useSubmit('ruleForm')"
- ></el-button>
- </span>
- </template>
- <el-form
- ref="ruleForm"
- v-loading="loading"
- :size="size"
- :rules="rules"
- :model="params"
- label-width="auto"
- label-position="right"
- style="padding: 10px"
- >
- <el-row :gutter="20" style="display: flex; flex-wrap: wrap">
- <el-col
- v-for="(column, index) in formColumns"
- :key="index"
- :span="column.span || 8"
- >
- <el-form-item :prop="column.key" :label="column.title">
- <el-input
- v-if="column.inputType === 'Input'"
- v-model="params[column.key]"
- :disabled="column.disabled"
- :readonly="column.readonly"
- :clearable="column.clearable"
- :placeholder="column.placeholder"
- style="width: 100%"
- ></el-input>
- <dr-popover-select
- v-if="column.inputType === 'PopoverSelect'"
- v-model="params[column.key]"
- :source.sync="params"
- :title="column.title"
- :type="column.referName"
- :disabled="column.disabled"
- :readonly="column.readonly"
- :clearable="column.clearable"
- :placeholder="column.placeholder"
- :data-mapping="column.dataMapping"
- style="width: 100%"
- >
- </dr-popover-select>
- <el-select
- v-if="column.inputType === 'Select'"
- v-model="params[column.key]"
- :disabled="column.disabled"
- :clearable="column.clearable"
- :placeholder="column.placeholder"
- style="width: 100%"
- >
- <el-option
- v-for="item in dict.type[column.referName]"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- <file-upload
- v-if="column.inputType === 'Upload'"
- v-model="params[column.key]"
- :file-type="column.fileType"
- ></file-upload>
- </el-form-item>
- </el-col>
- <el-divider></el-divider>
- <el-col :span="24">
- <el-form-item label-width="0">
- <el-tabs v-model="tabName">
- <el-tab-pane
- v-for="(column, index) in tabColumns"
- :key="index"
- :label="column.title"
- :name="column.key"
- lazy
- >
- <el-table :size="size" :data="newParams[column.key]">
- <el-table-column label="序号">
- <template slot-scope="scope">
- {{ scope.$index + 1 }}
- </template>
- </el-table-column>
- <el-table-column
- v-for="(cColumn, cIndex) in column.tableColumns"
- :key="cIndex"
- :prop="cColumn.key"
- :label="cColumn.title"
- :width="cColumn.width || 200"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- <el-input
- v-if="cColumn.inputType === 'Input'"
- v-model="scope.row[cColumn.key]"
- :size="size"
- :disabled="cColumn.disabled"
- :clearable="cColumn.clearable"
- :placeholder="cColumn.placeholder"
- style="width: 100%"
- ></el-input>
- <dr-computed-input
- v-else-if="cColumn.inputType === 'ComputedInput'"
- v-model="scope.row[cColumn.key]"
- :source="scope.row"
- :computed="cColumn.computed"
- :placeholder="cColumn.placeholder"
- style="width: 100%"
- ></dr-computed-input>
- <dr-popover-select
- v-else-if="cColumn.inputType === 'PopoverSelect'"
- v-model="scope.row[cColumn.key]"
- :size="size"
- :title="cColumn.title"
- :source.sync="scope.row"
- :type="cColumn.referName"
- :disabled="cColumn.disabled"
- :readonly="cColumn.readonly"
- :clearable="cColumn.clearable"
- :placeholder="cColumn.placeholder"
- :data-mapping="cColumn.dataMapping"
- @change="fetchRefer"
- >
- </dr-popover-select>
- <el-input-number
- v-else-if="cColumn.inputType === 'InputNumber'"
- v-model="scope.row[cColumn.key]"
- :size="size"
- :disabled="cColumn.disabled"
- :clearable="cColumn.clearable"
- :placeholder="cColumn.placeholder"
- :controls-position="cColumn.controlsPosition"
- style="width: 100%"
- ></el-input-number>
- <el-select
- v-else-if="cColumn.inputType === 'Select'"
- v-model="scope.row[cColumn.key]"
- :disabled="cColumn.disabled"
- :clearable="cColumn.clearable"
- :placeholder="cColumn.placeholder"
- style="width: 100%"
- >
- <el-option
- v-for="item in dict.type[cColumn.referName]"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- <el-date-picker
- v-else-if="cColumn.inputType === 'DatePicker'"
- v-model="scope.row[cColumn.key]"
- :type="cColumn.type"
- :disabled="cColumn.disabled"
- :clearable="cColumn.clearable"
- :placeholder="cColumn.placeholder"
- :value-format="cColumn.valueFormat"
- :picker-options="cColumn.pickerOptions"
- style="width: 100%"
- >
- </el-date-picker>
- <span v-else> {{ scope.row[cColumn.key] }}</span>
- </template>
- </el-table-column>
- <el-table-column fixed="right" label="操作" width="100">
- <template slot="header" slot-scope="scope">
- <el-button
- circle
- icon="el-icon-plus"
- :size="size"
- @click="useRowAdd(tabName)"
- >
- </el-button>
- </template>
- <template slot-scope="scope">
- <el-button
- circle
- icon="el-icon-minus"
- :size="size"
- @click.native.prevent="useRowRemove(tabName, scope)"
- >
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- </el-tab-pane>
- </el-tabs>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- </el-drawer>
- </template>
|