123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- <template>
- <el-dialog
- v-loading="loading"
- :title="title"
- :center="true"
- align="left"
- top="18vh"
- width="500px"
- :close-on-click-modal="false"
- :visible.sync="showModelThis"
- element-loading-text="拼命加载中"
- element-loading-spinner="el-icon-loading"
- element-loading-background="rgba(0, 0, 0, 0.8)"
- @close="showModelThis = false"
- >
- <el-card style="margin: -20px 0 0 0">
- <el-row :gutter="10">
- <el-col :span="24">
- <el-form
- ref="ruleForm"
- :model="ruleForm"
- status-icon
- :rules="rulesThis"
- label-width="80px"
- class="demo-ruleForm"
- >
- <el-form-item label="单位名称" prop="unit">
- <el-input
- v-model="ruleForm.unit"
- :disabled="id == '007'"
- placeholder="单位名称"
- minlength="20"
- />
- </el-form-item>
- </el-form>
- </el-col>
- <el-col :span="24" style="text-align: right">
- <el-button v-if="id !== '007'" type="primary" @click="submitForm"
- >保 存
- </el-button>
- <el-button @click="showModelThis = false">{{
- id == "007" ? "关 闭" : "取 消"
- }}</el-button>
- </el-col>
- </el-row>
- </el-card>
- </el-dialog>
- </template>
- <script>
- import asyncRequest from "@/apis/service/goodStore/unit";
- import resToken from "@/mixins/resToken";
- export default {
- name: "brand",
- props: ["showModel", "id", "sitem"],
- mixins: [resToken],
- data() {
- return {
- loading: false,
- title: "添加单位",
- showModelThis: this.showModel,
- select: "1",
- activeOptions: [],
- actionList: [],
- ruleForm: {
- id: "",
- unit: "",
- },
- rulesThis: this.rules,
- rules: {
- unit: [
- { required: true, message: "单位名称不能为空", trigger: "blur" },
- ],
- },
- };
- },
- watch: {
- showModel: function (val) {
- this.showModelThis = val;
- if (val) {
- this.initForm();
- }
- },
- showModelThis(val) {
- if (!val) {
- this.$emit("cancel");
- }
- },
- },
- methods: {
- async initForm() {
- this.loading = true;
- if (this.id === "003") {
- this.title = "添加单位";
- this.rulesThis = this.rules;
- } else if (this.id === "005") {
- this.title = "修改单位";
- this.rulesThis = this.rules;
- } else {
- this.title = "单位详情";
- this.rulesThis = {};
- }
- await this.resetForm();
- this.loading = false;
- },
- async resetForm() {
- // 重置
- await this.$nextTick(() => {
- if (this.$refs.ruleForm) {
- this.$refs.ruleForm.resetFields();
- this.$refs.ruleForm.clearValidate();
- const { id, unit} = this.sitem;
- this.ruleForm = {
- id: id || "",
- unit: unit || "",
- };
- }
- });
- },
- async submitForm() {
- await this.$refs.ruleForm.validate(async (valid) => {
- if (valid) {
- this.loading = true;
- let model = JSON.parse(JSON.stringify(this.ruleForm));
- let res = {};
- if (this.id === "003") {
- delete model["id"];
- res = await asyncRequest.add(model);
- } else {
- res = await asyncRequest.update(model);
- }
- this.loading = false;
- if (res && res.code === 0) {
- const title = this.id === "003" ? "添加成功!" : "修改成功!";
- this.$notify.success({
- title,
- message: "",
- });
- this.showModelThis = false;
- // 刷新
- this.$emit("refresh");
- } else if (res && res.code >= 100 && res.code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(res.message);
- }
- } else {
- console.log("error submit!!");
- return false;
- }
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .brand {
-
- }
- </style>
|