xiaodai2022 2 år sedan
förälder
incheckning
acb8e6149f

+ 3 - 16
src/apis/service/youzan/othsearchSort/index.js

@@ -2,22 +2,9 @@
 import http from "@/apis/axios";
 const api = "admin/";
 export default {
-  // 添加
-  add: (data, params) => http(api + "catcreate", data, "post", params),
-  // 删除
-  delete: (data, params) => http(api + "delete", data, "post", params),
+ 
   // 分页查询
-  list: (data, params) => http(api + "catplatlist", data, "post", params),
-  // 详情
-  detail: (data, params) => http(api + "catinfo", data, "post", params),
+  list: (data, params) => http(api + "catplatall", data, "post", params),
   // 更新
-  update: (data, params) => http(api + "catedit", data, "post", params),
-  // 修改状态
-  status: (data, params) => http(api + "catstatus", data, "post", params),
-  // 商品分类列表
-  goodsList: (data, params) => http(api + "catlist", data, "post", params),
-  // 全部规格列表
-  specstitle: (data, params) => http(api + "specstitle", data, "post", params),
-  // 修改毛利率
-  editRate: (data, params) => http(api + "catratedit", data, "post", params),
+  update: (data, params) => http(api + "catplatedit", data, "post", params),
 };

+ 0 - 274
src/views/youzan/othsearchSort/addEdit.vue

@@ -1,274 +0,0 @@
-<template>
-  <el-dialog
-    v-loading="loading"
-    :title="title"
-    :center="true"
-    align="left"
-    top="12vh"
-    width="650px"
-    :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="95px"
-            class="demo-ruleForm"
-          >
-            <el-form-item label="分类名称" prop="cat_name">
-              <el-input
-                v-model="ruleForm.cat_name"
-                :disabled="id == '007'"
-                placeholder="分类名称"
-                maxlength="20"
-              >
-                <template slot="prepend" v-if="pid_name">{{
-                  pid_name
-                }}</template></el-input
-              >
-            </el-form-item>
-            <el-form-item label="分类规格" prop="specs_id">
-              <el-select
-                v-model="ruleForm.specs_id"
-                multiple
-                :disabled="id == '007'"
-                style="width: 100%"
-                placeholder="分类规格"
-              >
-                <el-option
-                  v-for="item in specOptions"
-                  :key="item.id"
-                  :label="item.spec_name"
-                  :value="item.id"
-                >
-                </el-option>
-              </el-select>
-            </el-form-item>
-            <!-- <el-form-item label="财务核算码" prop="fund_code">
-              <el-input
-                v-model="ruleForm.fund_code"
-                :disabled="id == '007'"
-                placeholder="财务核算码"
-                maxlength="50"
-              />
-            </el-form-item> -->
-            <el-form-item label="售后说明" prop="cat_desc">
-              <el-input
-                v-model="ruleForm.cat_desc"
-                :disabled="id == '007'"
-                placeholder="售后说明"
-                type="textarea"
-                :rows="5"
-                maxlength="2000"
-                show-word-limit
-              />
-            </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/youzan/othsearchSort";
-import resToken from "@/mixins/resToken";
-import { isChinese } from "@/utils/validate";
-export default {
-  name: "sort",
-  props: ["showModel", "id", "sitem", "titleList"],
-  mixins: [resToken],
-  data() {
-    const validate_fund_code = (rule, value, callback) => {
-      if (value === "") {
-        callback();
-      } else if (isChinese(value)) {
-        callback(new Error("财务核算码不能包含汉字!"));
-      } else {
-        callback();
-      }
-    };
-    return {
-      loading: false,
-      title: "添加分类",
-      pid_name: "",
-      showModelThis: this.showModel,
-      specOptions: [],
-      ruleForm: {
-        id: "",
-        cat_name: "",
-        specs_id: [],
-        cat_desc: "",
-      },
-      rulesThis: this.rules,
-      rules: {
-        cat_name: [{ required: true, message: "分类名称不能为空", trigger: "blur" }],
-        specs_id: [
-          {
-            type: "array",
-            required: true,
-            message: "请至少选择一个分类规格",
-            trigger: "change",
-          },
-        ],
-        fund_code: [{ required: false, validator: validate_fund_code, trigger: "blur" }],
-
-        cat_desc: [{ required: false, 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;
-      this.pid_name = "";
-      this.titleList.forEach((e, i) => {
-        this.pid_name += i !== 0 ? `${e.titleName}/` : "";
-      });
-      await this.resetForm();
-      if (this.id === "003") {
-        this.title = "添加分类";
-        this.rulesThis = this.rules;
-      } else if (this.id === "005") {
-        this.title = "修改分类";
-        this.rulesThis = this.rules;
-        await this.initData();
-      } else {
-        this.title = "分类详情";
-        this.rulesThis = {};
-        await this.initData();
-      }
-
-      await this.getAllSpecs();
-
-      this.loading = false;
-    },
-
-    async resetForm() {
-      // 重置
-      await this.$nextTick(() => {
-        if (this.$refs.ruleForm) {
-          this.$refs.ruleForm.resetFields();
-          this.$refs.ruleForm.clearValidate();
-          const { id, cat_name, cat_desc } = this.sitem;
-          this.ruleForm = {
-            pid: this.titleList[this.titleList.length - 1].id || "",
-            id: id || "",
-            cat_name: cat_name || "",
-            specs_id: [],
-            cat_desc: cat_desc || "",
-          };
-        }
-      });
-    },
-    async getAllSpecs() {
-      this.specOptions = [];
-      let res = await asyncRequest.specstitle({});
-      if (res && res.code === 0) {
-        this.specOptions = res.data;
-      } else if (res && res.code >= 100 && res.code <= 104) {
-        this.specOptions = [];
-        await this.logout();
-      } else {
-        this.specOptions = [];
-        this.$message.warning(res.message);
-      }
-    },
-    async initData() {
-      const res = await asyncRequest.detail({ id: this.sitem.id });
-      if (res && res.code === 0 && res.data) {
-        const { pid, id, cat_name, cat_desc, spec, fund_code } = res.data;
-        let specs_id = [];
-        if (spec && spec.length > 0) {
-          spec.forEach((e) => {
-            specs_id.push(e.id);
-          });
-        }
-        console.log(specs_id);
-        this.ruleForm = {
-          pid: pid || "",
-          id: id || "",
-          cat_name: cat_name || "",
-          specs_id: specs_id || [],
-          fund_code: fund_code || "",
-          cat_desc: cat_desc || "",
-        };
-        this.$refs.ruleForm.resetFields();
-        this.$refs.ruleForm.clearValidate();
-      } else if (res && res.code >= 100 && res.code <= 104) {
-        await this.logout();
-      } else {
-        this.$message.warning(res.message);
-      }
-    },
-    async submitForm() {
-      await this.$refs.ruleForm.validate(async (valid) => {
-        if (valid) {
-          if (!this.loading) {
-            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 === "add" ? "添加成功!" : "修改成功!";
-              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>
-.sort {
-}
-</style>

+ 6 - 42
src/views/youzan/othsearchSort/addEditRate.vue

@@ -209,7 +209,8 @@ export default {
       showModelThis: this.showModel,
       pid_name: "",
       ruleForm: {
-        id: "",
+        platform_id: "",
+        cat_id: "",
         cat_name: "",
         order_rate: "0",
         sale_rate: "0",
@@ -254,7 +255,6 @@ export default {
       });
       this.rulesThis = this.rules;
       await this.resetForm();
-      await this.initData();
       this.loading = false;
     },
 
@@ -265,7 +265,7 @@ export default {
           this.$refs.ruleForm.resetFields();
           this.$refs.ruleForm.clearValidate();
           const {
-            pid,
+            platform_id,
             id,
             cat_name,
             order_rate,
@@ -277,8 +277,8 @@ export default {
             money_rate,
           } = this.sitem;
           this.ruleForm = {
-            pid: pid || "",
-            id: id || "",
+            platform_id: platform_id + "" || "",
+            cat_id: id || "",
             cat_name: cat_name || "",
             fund_code: fund_code || "",
             order_rate: order_rate || "0",
@@ -295,42 +295,6 @@ export default {
       this.ruleForm[key] = e + "";
       this.$refs.ruleForm.validateField(key);
     },
-
-    async initData() {
-      const { code, data, message } = await asyncRequest.detail({
-        id: this.sitem.id,
-      });
-      if (code === 0) {
-        const {
-          pid,
-          id,
-          cat_name,
-          order_rate,
-          sale_rate,
-          lower_rate,
-          rate,
-          fund_code,
-          low_rate,
-          money_rate,
-        } = data;
-        this.ruleForm = {
-          pid: pid || "",
-          id: id || "",
-          cat_name: cat_name || "",
-          fund_code: fund_code || "",
-          order_rate: order_rate || "0",
-          sale_rate: sale_rate || "0",
-          lower_rate: lower_rate || "0",
-          rate: rate || "0",
-          low_rate: low_rate || "0",
-          money_rate: money_rate || "0",
-        };
-      } else if (code >= 100 && code <= 104) {
-        await this.logout();
-      } else {
-        this.$message.warning(message);
-      }
-    },
     async submitForm() {
       await this.$refs.ruleForm.validate(async (valid) => {
         if (valid) {
@@ -340,7 +304,7 @@ export default {
             delete model["cat_name"];
             delete model["pid"];
             delete model["fund_code"];
-            let res = await asyncRequest.editRate(model);
+            let res = await asyncRequest.update(model);
             this.loading = false;
             if (res && res.code === 0) {
               this.$notify.success({

+ 37 - 191
src/views/youzan/othsearchSort/index.vue

@@ -23,7 +23,7 @@
     >
       <template #table-header="{}">
         <div style="width: 100%">
-          <el-row style="padding: 0 0 10px 80px">
+          <el-row style="padding: 0 0 10px 90px">
             <el-col :span="3" style="width: 748px">
               <div class="my-breadcrumb clear">
                 <div
@@ -72,7 +72,7 @@
                 />
               </el-select>
             </el-col>
-            <el-col :span="4" style="width: 380px; padding: 0 0 0 10px">
+            <el-col :span="4" style="width: 390px; padding: 0 0 0 10px">
               <search-terrace
                 :value="parmValue.platform_id"
                 :disabled="false"
@@ -83,7 +83,7 @@
                 @searchChange="platform_codeChange"
               />
             </el-col>
-            <el-col :span="4" style="width: 380px; padding: 0 0 0 10px">
+            <!-- <el-col :span="4" style="width: 390px; padding: 0 0 0 10px">
               <el-input
                 :size="searchSize"
                 v-model="parmValue.cat_name"
@@ -95,8 +95,8 @@
                 "
                 placeholder="分类名称"
               ></el-input>
-            </el-col>
-            <el-col :span="4" style="width: 170px; padding: 0 0 0 10px">
+            </el-col> -->
+            <!-- <el-col :span="4" style="width: 170px; padding: 0 0 0 10px">
               <el-input
                 :size="searchSize"
                 v-model="parmValue.company_name"
@@ -108,22 +108,7 @@
                 "
                 placeholder="创建人部门"
               ></el-input>
-            </el-col>
-            <el-col
-              :span="3"
-              class="fr"
-              style="width: 66px; padding: 0 0 0 10px"
-              v-if="powers.some((item) => item == '003')"
-            >
-              <el-button
-                :size="searchSize"
-                type="success"
-                style="float: right"
-                @click="openModal({}, '003')"
-              >
-                添加
-              </el-button>
-            </el-col>
+            </el-col> -->
           </el-row>
         </div></template
       >
@@ -139,60 +124,14 @@
       </template>
 
       <template #operation="{ scope }">
-        <el-tooltip
-          v-if="powers.some((item) => item == '007')"
-          effect="dark"
-          content="详情"
-          placement="top"
-        >
-          <i class="el-icon-view tb-icon" @click="openModal(scope.row, '007')"></i>
-        </el-tooltip>
         <el-tooltip
           v-if="powers.some((item) => item == '005')"
           effect="dark"
-          content="修改"
-          placement="top"
-        >
-          <i class="el-icon-edit tb-icon" @click="openModal(scope.row, '005')"></i>
-        </el-tooltip>
-        <!-- <el-tooltip
-          v-if="powers.some((item) => item == '004') && scope.row.status === '1'"
-          effect="dark"
-          content="禁用"
-          placement="top"
-        >
-          <i
-            class="el-icon-video-pause tb-icon"
-            @click="changeStatus(scope.row.id, scope.row.status)"
-          ></i>
-        </el-tooltip>
-        <el-tooltip
-          v-if="powers.some((item) => item == '004') && scope.row.status === '0'"
-          effect="dark"
-          content="启用"
-          placement="top"
-        >
-          <i
-            class="el-icon-video-play tb-icon"
-            @click="changeStatus(scope.row.id, scope.row.status)"
-          ></i>
-        </el-tooltip> -->
-        <!-- <el-tooltip
-          v-if="powers.some((item) => item == '006')"
-          effect="dark"
-          content="删除"
-          placement="top"
-        >
-          <i class="el-icon-delete tb-icon" @click="deleteItem(scope.row.id)"></i>
-        </el-tooltip> -->
-        <!-- <el-tooltip
-          v-if="powers.some((item) => item == '060')"
-          effect="dark"
-          content="设置毛利率"
+          content="修改毛利率"
           placement="top"
         >
           <i class="el-icon-s-check tb-icon" @click="setRate(scope.row)"></i>
-        </el-tooltip> -->
+        </el-tooltip>
         <el-tooltip
           v-if="parseInt(scope.row.level) < 3"
           effect="dark"
@@ -204,15 +143,7 @@
       </template>
     </ex-table>
     <no-auth v-else></no-auth>
-    <!-- 弹窗 新增/修改 -->
-    <add-edit
-      :id="modelId"
-      :show-model="showModel"
-      :sitem="sitem"
-      :titleList="titleList"
-      @refresh="searchList"
-      @cancel="showModel = false"
-    />
+
     <!-- 弹窗 新增/修改 -->
     <add-edit-rate
       :id="modelRateId"
@@ -225,7 +156,6 @@
   </div>
 </template>
 <script>
-import addEdit from "./addEdit";
 import addEditRate from "./addEditRate";
 import asyncRequest from "@/apis/service/youzan/othsearchSort";
 import { statusList } from "@/assets/js/statusList";
@@ -237,7 +167,6 @@ export default {
   name: "othsearchSort",
   mixins: [mixinPage, resToken],
   components: {
-    addEdit,
     addEditRate,
   },
   computed: {
@@ -258,9 +187,7 @@ export default {
     return {
       statusList: statusList,
       roleLevel: roleLevel,
-      loading: true,
-      showModel: false,
-      modelId: "000",
+      loading: false,
       sitem: {},
       showRateModel: false,
       modelRateId: "000",
@@ -269,9 +196,8 @@ export default {
       parmValue: {
         page: 1, // 页码
         size: 15, // 每页显示条数
-        company_name: "", //创建人部门
         status: "",
-        cat_name: "",
+        platform_id: "",
         pid: "0",
       },
       // 状态
@@ -307,8 +233,8 @@ export default {
         },
         {
           prop: "level",
-          label: "分类等级",
-          width: "70px",
+          label: "等级",
+          width: "50px",
         },
         {
           prop: "status",
@@ -319,42 +245,42 @@ export default {
         {
           prop: "platform_name",
           label: "平台名称",
-          minwidth: "130px",
+          minwidth: "190px",
         },
 
         {
           prop: "fund_code",
           label: "财务核算码",
-          minwidth: "130px",
+          width: "150px",
         },
 
         {
           prop: "order_rate",
           label: "预算→成本",
-          minwidth: "100px",
+          width: "90px",
         },
         {
           prop: "sale_rate",
           label: "成本→售价",
-          minwidth: "100px",
+          width: "90px",
         },
         {
           prop: "rate",
           label: "主管利率",
-          minwidth: "100px",
+          width: "90px",
         },
         {
           prop: "money_rate",
           label: "财务利率",
-          minwidth: "100px",
+          width: "90px",
         },
         {
           prop: "low_rate",
-          label: "项目最低毛利",
-          minwidth: "100px",
+          label: "项目毛利",
+          width: "90px",
         },
         {
-          prop: "apply_name",
+          prop: "creater",
           label: "创建人",
           width: "70px",
         },
@@ -367,7 +293,7 @@ export default {
           prop: "",
           label: "操作",
           fixed: "right",
-          width: "100px",
+          width: "110px",
           _noset_: true,
           _slot_: "operation",
         },
@@ -391,16 +317,15 @@ export default {
         page: 1, // 页码
         size: 15, // 每页显示条数
         status: "",
-        company_name: "", //创建人部门
+        platform_id: "",
         pid: "0",
-        cat_name: "",
       };
       this.initTitleList();
       this.searchList();
     },
     async platform_codeChange(e) {
       const { id } = e;
-      this.parmValue.platform_code = id || "";
+      this.parmValue.platform_id = id || "";
       this.pageInfo.curr = 1;
       this.parmValue.page = 1;
       await this.searchList();
@@ -428,19 +353,6 @@ export default {
       this.sitemRate = row;
       this.showRateModel = true;
     },
-    // 新建/编辑/详情
-    openModal(row, type) {
-      const { status } = row;
-      if (type === "005" && status === "1") {
-        this.$message.warning("禁用后,才可以修改!");
-        return;
-      }
-      this.sitem = row;
-
-      this.modelId = type;
-
-      this.showModel = true;
-    },
     async changeBreadcrumb(index) {
       if (index + 1 === this.titleList.length) {
         return;
@@ -455,87 +367,21 @@ export default {
       this.parmValue.page = 1;
       await this.searchList();
     },
-    /**
-     * 启用/禁用
-     * @param {String} id id
-     * @param {String} status 0-禁用 1-启用
-     */
-    async changeStatus(id, status) {
-      await this.$confirm(`确定要改为${status === "1" ? "禁用" : "启用"}?`, {
-        confirmButtonText: "确定",
-        cancelButtonText: "取消",
-        type: "warning",
-      })
-        .then(async () => {
-          this.loading = true;
-          const model = {
-            id: id,
-            status: status === "1" ? "0" : "1",
-          };
-          const res = await asyncRequest.status(model);
-          if (res && res.code === 0) {
-            this.loading = false;
-            this.$notify.success({
-              title: "状态修改成功!",
-              message: "",
-            });
-            await this.searchList();
-          } else if (res && res.code >= 100 && res.code <= 104) {
-            await this.logout();
-          } else {
-            this.loading = false;
-            this.$message.warning(res.message);
-          }
-        })
-        .catch(() => {
-          console.log("取消");
-        });
-    },
-    async deleteItem(id) {
-      await this.$confirm("确定要删除?", {
-        confirmButtonText: "确定",
-        cancelButtonText: "取消",
-        type: "warning",
-      })
-        .then(async () => {
-          const model = {
-            id: id,
-          };
-          const res = await asyncRequest.delete(model);
-          if (res && res.code === 0) {
-            this.$notify.success({
-              title: "删除成功",
-              message: "",
-            });
-            this.searchList();
-          } else if (res && res.code >= 100 && res.code <= 104) {
-            await this.logout();
-          } else {
-            this.$message.warning(res.message);
-          }
-        })
-        .catch(() => {
-          console.log("取消");
-        });
-    },
+
     // 刷新表格
     async searchList() {
+      if (this.loading) return;
+      if (this.parmValue.platform_id === "") {
+        this.$message.warning("请选择平台!");
+        return;
+      }
       this.loading = true;
-      const res = await asyncRequest.list(this.parmValue);
-      if (res && res.code === 0 && res.data) {
-        this.tableData = res.data.list;
-        this.tableData.forEach((e) => {
-          if (e.im && e.im.length > 0) {
-            e.specs = "";
-            e.im.forEach((a, i) => {
-              e.specs += i === 0 ? a.spec_name : `,${a.spec_name}`;
-            });
-          } else {
-            e.specs = "";
-          }
-        });
-        this.pageInfo.total = Number(res.data.count);
-      } else if (res && res.code >= 100 && res.code <= 104) {
+      const { code, data } = await asyncRequest.list(this.parmValue);
+      if (code === 0) {
+        const { list, count } = data;
+        this.tableData = list;
+        this.pageInfo.total = count;
+      } else if (code >= 100 && code <= 104) {
         await this.logout();
       } else {
         this.tableData = [];

+ 41 - 49
src/views/youzan/othsearchSort1/addEdit.vue

@@ -220,23 +220,15 @@ export default {
       },
       rulesThis: this.rules,
       rules: {
-        order_rate: [
-          { required: true, validator: validate_order_rate, trigger: "blur" },
-        ],
-        sale_rate: [
-          { required: true, validator: validate_sale_rate, trigger: "blur" },
-        ],
+        order_rate: [{ required: true, validator: validate_order_rate, trigger: "blur" }],
+        sale_rate: [{ required: true, validator: validate_sale_rate, trigger: "blur" }],
         lower_rate: [
           { required: false, validator: validate_lower_rate, trigger: "blur" },
         ],
         rate: [{ required: true, validator: validate_rate, trigger: "blur" }],
 
-        low_rate: [
-          { required: true, validator: validate_low_rate, trigger: "blur" },
-        ],
-        money_rate: [
-          { required: true, validator: validate_money_rate, trigger: "blur" },
-        ],
+        low_rate: [{ required: true, validator: validate_low_rate, trigger: "blur" }],
+        money_rate: [{ required: true, validator: validate_money_rate, trigger: "blur" }],
       },
     };
   },
@@ -262,7 +254,7 @@ export default {
       });
       this.rulesThis = this.rules;
       await this.resetForm();
-      await this.initData();
+      // await this.initData();
       this.loading = false;
     },
 
@@ -304,41 +296,41 @@ export default {
       this.$refs.ruleForm.validateField(key);
     },
 
-    async initData() {
-      const { code, data, message } = await asyncRequest.detail({
-        id: this.sitem.id,
-      });
-      if (code === 0) {
-        const {
-          pid,
-          id,
-          cat_name,
-          order_rate,
-          sale_rate,
-          lower_rate,
-          rate,
-          fund_code,
-          low_rate,
-          money_rate,
-        } = data;
-        this.ruleForm = {
-          pid: pid || "",
-          id: id || "",
-          cat_name: cat_name || "",
-          fund_code: fund_code || "",
-          order_rate: order_rate || "0",
-          sale_rate: sale_rate || "0",
-          lower_rate: lower_rate || "0",
-          rate: rate || "0",
-          low_rate: low_rate || "0",
-          money_rate: money_rate || "0",
-        };
-      } else if (code >= 100 && code <= 104) {
-        await this.logout();
-      } else {
-        this.$message.warning(message);
-      }
-    },
+    // async initData() {
+    //   const { code, data, message } = await asyncRequest.detail({
+    //     id: this.sitem.id,
+    //   });
+    //   if (code === 0) {
+    //     const {
+    //       pid,
+    //       id,
+    //       cat_name,
+    //       order_rate,
+    //       sale_rate,
+    //       lower_rate,
+    //       rate,
+    //       fund_code,
+    //       low_rate,
+    //       money_rate,
+    //     } = data;
+    //     this.ruleForm = {
+    //       pid: pid || "",
+    //       id: id || "",
+    //       cat_name: cat_name || "",
+    //       fund_code: fund_code || "",
+    //       order_rate: order_rate || "0",
+    //       sale_rate: sale_rate || "0",
+    //       lower_rate: lower_rate || "0",
+    //       rate: rate || "0",
+    //       low_rate: low_rate || "0",
+    //       money_rate: money_rate || "0",
+    //     };
+    //   } else if (code >= 100 && code <= 104) {
+    //     await this.logout();
+    //   } else {
+    //     this.$message.warning(message);
+    //   }
+    // },
     async submitForm() {
       await this.$refs.ruleForm.validate(async (valid) => {
         if (valid) {
@@ -374,7 +366,7 @@ export default {
 };
 </script>
 
-   <style lang="scss" scoped>
+<style lang="scss" scoped>
 .sort {
 }
 </style>