|
@@ -1,143 +1,164 @@
|
|
|
<template>
|
|
|
- <div class="app-container">
|
|
|
- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
- <el-form-item label="是否启用(1=启用,0不启用)" prop="status">
|
|
|
- <el-select v-model="queryParams.status" placeholder="请选择是否启用(1=启用,0不启用)" clearable filterable>
|
|
|
- <el-option
|
|
|
- v-for="dict in dict.type.dictType"
|
|
|
- :key="dict.value"
|
|
|
- :label="dict.label"
|
|
|
- :value="dict.value"
|
|
|
- />
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item>
|
|
|
- <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
+ <el-dialog title="指标权重明细" :visible.sync="isShowNormDialog" width="80vw" :before-close="closeHandler">
|
|
|
+ <div class="app-container">
|
|
|
+ <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
+ <el-form-item label="是否启用" prop="status">
|
|
|
+ <el-select v-model="queryParams.status" placeholder="请选择是否启用" clearable filterable>
|
|
|
+ <el-option v-for="dict in dict.type.dictType" :key="dict.value" :label="dict.label" :value="dict.value" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
+ <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
|
|
|
- <el-row :gutter="10" class="mb8">
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- plain
|
|
|
- icon="el-icon-plus"
|
|
|
- size="mini"
|
|
|
- @click="handleAdd"
|
|
|
- v-hasPermi="['business:NORMFEE:add']"
|
|
|
- >新增</el-button>
|
|
|
- </el-col>
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="success"
|
|
|
- plain
|
|
|
- icon="el-icon-edit"
|
|
|
- size="mini"
|
|
|
- :disabled="single"
|
|
|
- @click="handleUpdate"
|
|
|
- v-hasPermi="['business:NORMFEE:edit']"
|
|
|
- >修改</el-button>
|
|
|
- </el-col>
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="danger"
|
|
|
- plain
|
|
|
- icon="el-icon-delete"
|
|
|
- size="mini"
|
|
|
- :disabled="multiple"
|
|
|
- @click="handleDelete"
|
|
|
- v-hasPermi="['business:NORMFEE:remove']"
|
|
|
- >删除</el-button>
|
|
|
- </el-col>
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="warning"
|
|
|
- plain
|
|
|
- icon="el-icon-download"
|
|
|
- size="mini"
|
|
|
- @click="handleExport"
|
|
|
- v-hasPermi="['business:NORMFEE:export']"
|
|
|
- >导出</el-button>
|
|
|
- </el-col>
|
|
|
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
- </el-row>
|
|
|
+ <el-row :gutter="10" class="mb8">
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
|
|
|
+ v-hasPermi="['business:NORMFEE:add']">新增</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button type="success" plain icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate"
|
|
|
+ v-hasPermi="['business:NORMFEE:edit']">修改</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button type="danger" plain icon="el-icon-delete" size="mini" :disabled="multiple" @click="handleDelete"
|
|
|
+ v-hasPermi="['business:NORMFEE:remove']">删除</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport"
|
|
|
+ v-hasPermi="['business:NORMFEE:export']">导出</el-button>
|
|
|
+ </el-col>
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
+ </el-row>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="NORMFEEList" @selection-change="handleSelectionChange">
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="${comment}" align="center" prop="id"/>
|
|
|
- <el-table-column label="创建时间" align="center" prop="createTime"/>
|
|
|
- <el-table-column label="创建人" align="center" prop="createBy"/>
|
|
|
- <el-table-column label="修改时间" align="center" prop="updateTime"/>
|
|
|
- <el-table-column label="修改人" align="center" prop="updateBy"/>
|
|
|
- <el-table-column label="删除标识" align="center" prop="delFlag"/>
|
|
|
- <el-table-column label="部门id" align="center" prop="deptId"/>
|
|
|
- <el-table-column label="指标分类id" align="center" prop="normId"/>
|
|
|
- <el-table-column label="分类占比" align="center" prop="normRatio"/>
|
|
|
- <el-table-column label="指标参数名称" align="center" prop="fname"/>
|
|
|
- <el-table-column label="计量单位" align="center" prop="funit"/>
|
|
|
- <el-table-column label="权数" align="center" prop="fnumber"/>
|
|
|
- <el-table-column label="指标参数" align="center" prop="fvalue"/>
|
|
|
- <el-table-column label="是否启用(1=启用,0不启用)" align="center" prop="status"/>
|
|
|
- <el-table-column label="启用时间" align="center" prop="startTime"/>
|
|
|
- <el-table-column label="停用时间" align="center" prop="stopTime"/>
|
|
|
- <el-table-column label="备注" align="center" prop="remark"/>
|
|
|
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
- <template slot-scope="scope">
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-edit"
|
|
|
- @click="handleUpdate(scope.row)"
|
|
|
- v-hasPermi="['business:NORMFEE:edit']"
|
|
|
- >修改</el-button>
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-delete"
|
|
|
- @click="handleDelete(scope.row)"
|
|
|
- v-hasPermi="['business:NORMFEE:remove']"
|
|
|
- >删除</el-button>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- </el-table>
|
|
|
+ <el-table v-loading="loading" :data="normData" @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column type="selection" width="55" align="center" />
|
|
|
+ <el-table-column label="分类占比" align="center" prop="normRatio" />
|
|
|
+ <el-table-column label="指标参数名称" align="center" prop="fname" />
|
|
|
+ <el-table-column label="计量单位" align="center" prop="funit" />
|
|
|
+ <el-table-column label="权数" align="center" prop="fnumber" />
|
|
|
+ <el-table-column label="指标参数" align="center" prop="fvalue" />
|
|
|
+ <el-table-column label="是否启用" align="center" prop="status">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-switch v-model="scope.row.status" @change="changeSwitchHandler(scope.row)" active-color="#13ce66"
|
|
|
+ inactive-color="#ff4949">
|
|
|
+ </el-switch>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="启用时间" align="center" prop="startTime" />
|
|
|
+ <el-table-column label="停用时间" align="center" prop="stopTime" />
|
|
|
+ <el-table-column label="备注" align="center" prop="remark" />
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
|
|
|
+ v-hasPermi="['business:NORMFEE:edit']">修改</el-button>
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
|
|
+ v-hasPermi="['business:NORMFEE:remove']">删除</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
|
|
|
- <pagination
|
|
|
- v-show="total>0"
|
|
|
- :total="total"
|
|
|
- :page.sync="queryParams.pageNum"
|
|
|
- :limit.sync="queryParams.pageSize"
|
|
|
- @pagination="getList"
|
|
|
- />
|
|
|
+ <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
|
|
|
+ @pagination="getList" />
|
|
|
|
|
|
- <!-- 添加或修改指标权重明细对话框 -->
|
|
|
- <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
- <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
- <el-form-item label="是否启用(1=启用,0不启用)">
|
|
|
- <el-radio-group v-model="form.status">
|
|
|
- <el-radio
|
|
|
- v-for="dict in dict.type.dictType"
|
|
|
- :key="dict.value"
|
|
|
-:label="dict.value"
|
|
|
- >{{dict.label}}</el-radio>
|
|
|
- </el-radio-group>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- <div slot="footer" class="dialog-footer">
|
|
|
- <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
- <el-button @click="cancel">取 消</el-button>
|
|
|
- </div>
|
|
|
- </el-dialog>
|
|
|
- </div>
|
|
|
+ <!-- 添加或修改指标权重明细对话框 -->
|
|
|
+ <el-dialog :title="title" :visible.sync="open" width="60%" append-to-body>
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
+ <el-form-item label="权数" prop="fnumber">
|
|
|
+ <el-input v-model.number="form.fnumber"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item label="分类占比" prop="normRatio">
|
|
|
+ <el-input v-model="form.normRatio"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item label="计量单位" prop='funit'>
|
|
|
+
|
|
|
+ <el-select v-model="form.funit" @change="selUnitHandler" placeholder="请选择">
|
|
|
+ <el-option v-for="dict in unitSel" :key="dict.dictCode" :label="dict.dictLabel"
|
|
|
+ :value="dict.dictValue"></el-option>
|
|
|
+ </el-select>
|
|
|
+
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item label="指标参数名称" prop='fname'>
|
|
|
+ <el-input v-model="form.fname"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="指标参数" prop='fvalue'>
|
|
|
+ <el-input v-model="form.fvalue"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <el-form-item label="上下公差占比" prop='dfRetio'>
|
|
|
+ <el-input v-model="form.dfRetio"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item label="明细类型" prop='type'>
|
|
|
+ <template>
|
|
|
+ <el-radio v-model="form.type" label="1">采集分类</el-radio>
|
|
|
+ <el-radio v-model="form.type" label="2">绩效分类</el-radio>
|
|
|
+ </template>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item :label="form.type == 2 ? '绩效参考值' : '采集参考值'">
|
|
|
+ <el-input v-model="form.meritsValue" key="2" v-if="form.type == 2"></el-input>
|
|
|
+ <el-input v-model="form.collValue" key="11" v-if="form.type == 1"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <!-- <el-form-item v-if="form.type == 1" key="1" label="采集参考值">
|
|
|
+ <el-input v-model="form.collValue"></el-input>
|
|
|
+ </el-form-item> -->
|
|
|
+
|
|
|
+ <el-form-item label="备注">
|
|
|
+ <el-input type="textarea" v-model="form.remark"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
+ <el-button @click="cancel">取 消</el-button>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import { listNORMFEE, getNORMFEE, delNORMFEE, addNORMFEE, updateNORMFEE } from "@/api/norm/NORMFEE";
|
|
|
|
|
|
+import { listData } from '@/api/system/dict/data';
|
|
|
+
|
|
|
export default {
|
|
|
name: "NORMFEE",
|
|
|
+ props: {
|
|
|
+ isShowNormDialog: {
|
|
|
+ type: Boolean,
|
|
|
+ default: () => {
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ normId: {
|
|
|
+ type: String,
|
|
|
+ default: () => {
|
|
|
+ return null
|
|
|
+ }
|
|
|
+ },
|
|
|
+ normData: {
|
|
|
+ type: Array,
|
|
|
+ defaultL: () => {
|
|
|
+ return []
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
data() {
|
|
|
return {
|
|
|
+ dict: {
|
|
|
+ type: {
|
|
|
+ dictType: ""
|
|
|
+ }
|
|
|
+ },
|
|
|
// 根路径
|
|
|
baseURL: process.env.VUE_APP_BASE_API,
|
|
|
// 遮罩层
|
|
@@ -152,8 +173,7 @@ export default {
|
|
|
showSearch: true,
|
|
|
// 总条数
|
|
|
total: 0,
|
|
|
- // 指标权重明细表格数据
|
|
|
- NORMFEEList: [],
|
|
|
+
|
|
|
// 弹出层标题
|
|
|
title: "",
|
|
|
// 是否显示弹出层
|
|
@@ -163,38 +183,29 @@ export default {
|
|
|
pageNum: 1,
|
|
|
pageSize: 10,
|
|
|
id: null,
|
|
|
- createTime: null,
|
|
|
- createBy: null,
|
|
|
- updateTime: null,
|
|
|
- updateBy: null,
|
|
|
- delFlag: null,
|
|
|
- deptId: null,
|
|
|
- normId: null,
|
|
|
- normRatio: null,
|
|
|
- fname: null,
|
|
|
- funit: null,
|
|
|
- fnumber: null,
|
|
|
- fvalue: null,
|
|
|
- status: null,
|
|
|
- startTime: null,
|
|
|
- stopTime: null,
|
|
|
- remark: null
|
|
|
+ // createTime: null,
|
|
|
+ // createBy: null,
|
|
|
+ // updateTime: null,
|
|
|
+ // updateBy: null,
|
|
|
+ // delFlag: null,
|
|
|
+ // deptId: null,
|
|
|
+ // normId: null,
|
|
|
+ // normRatio: null,
|
|
|
+ // fname: null,
|
|
|
+ // funit: null,
|
|
|
+ // fnumber: null,
|
|
|
+ // fvalue: null,
|
|
|
+ // status: null,
|
|
|
+ // startTime: null,
|
|
|
+ // stopTime: null,
|
|
|
+ // remark: null
|
|
|
},
|
|
|
// 表单参数
|
|
|
form: {},
|
|
|
// 表单校验
|
|
|
rules: {
|
|
|
- id: [
|
|
|
- { required: true, message: "$comment不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- delFlag: [
|
|
|
- { required: true, message: "删除标识不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- deptId: [
|
|
|
- { required: true, message: "部门id不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- normId: [
|
|
|
- { required: true, message: "指标分类id不能为空", trigger: "blur" }
|
|
|
+ fnumber: [
|
|
|
+ { required: true, type: "number", message: "权数为数值", trigger: "blur" }
|
|
|
],
|
|
|
normRatio: [
|
|
|
{ required: true, message: "分类占比不能为空", trigger: "blur" }
|
|
@@ -205,34 +216,35 @@ export default {
|
|
|
funit: [
|
|
|
{ required: true, message: "计量单位不能为空", trigger: "blur" }
|
|
|
],
|
|
|
- fnumber: [
|
|
|
- { required: true, message: "权数不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
fvalue: [
|
|
|
{ required: true, message: "指标参数不能为空", trigger: "blur" }
|
|
|
],
|
|
|
- status: [
|
|
|
- { required: true, message: "是否启用(1=启用,0不启用)不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- startTime: [
|
|
|
- { required: true, message: "启用时间不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- stopTime: [
|
|
|
- { required: true, message: "停用时间不能为空", trigger: "blur" }
|
|
|
+ dfRetio: [
|
|
|
+ { required: true, message: "公差占比", trigger: "blur" }
|
|
|
],
|
|
|
- remark: [
|
|
|
- { required: true, message: "备注不能为空", trigger: "blur" }
|
|
|
+ type: [
|
|
|
+ { required: true, message: "明细类型", trigger: "blur" }
|
|
|
]
|
|
|
- }
|
|
|
+ },
|
|
|
+ unitSel: null,
|
|
|
};
|
|
|
},
|
|
|
- created() {
|
|
|
+
|
|
|
+ mounted() {
|
|
|
+ listData({
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ dictType: 'norm_uint'
|
|
|
+ }).then(res => {
|
|
|
+ this.unitSel = res.rows;
|
|
|
+ })
|
|
|
this.getList();
|
|
|
},
|
|
|
methods: {
|
|
|
/** 查询指标权重明细列表 */
|
|
|
getList() {
|
|
|
this.loading = true;
|
|
|
+ this.queryParams.id = this.normId;
|
|
|
listNORMFEE(this.queryParams).then(response => {
|
|
|
this.NORMFEEList = response.rows;
|
|
|
this.total = response.total;
|
|
@@ -276,14 +288,20 @@ export default {
|
|
|
// 多选框选中数据
|
|
|
handleSelectionChange(selection) {
|
|
|
this.ids = selection.map(item => item.id)
|
|
|
- this.single = selection.length!==1
|
|
|
+ this.single = selection.length !== 1
|
|
|
this.multiple = !selection.length
|
|
|
},
|
|
|
/** 新增按钮操作 */
|
|
|
handleAdd() {
|
|
|
- this.reset();
|
|
|
this.open = true;
|
|
|
- this.title = "添加指标权重明细";
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ // addNORMFEE().then(() => {
|
|
|
+ // console.log("res");
|
|
|
+ // })
|
|
|
+ // this.reset();
|
|
|
+ // this.title = "添加指标权重明细";
|
|
|
},
|
|
|
/** 修改按钮操作 */
|
|
|
handleUpdate(row) {
|
|
@@ -292,45 +310,72 @@ export default {
|
|
|
getNORMFEE(id).then(response => {
|
|
|
this.form = response.data;
|
|
|
this.open = true;
|
|
|
+ this.form = row;
|
|
|
+ console.log(this.form);
|
|
|
+
|
|
|
this.title = "修改指标权重明细";
|
|
|
});
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
|
submitForm() {
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
+ this.form.status = 1;
|
|
|
+ if(this.form.type ==2){
|
|
|
+ this.form.collValue=null;
|
|
|
+ }else{
|
|
|
+ this.form.meritsValue=null;
|
|
|
+ }
|
|
|
if (valid) {
|
|
|
- if (this.form.id != null) {
|
|
|
- updateNORMFEE(this.form).then(response => {
|
|
|
- this.$modal.msgSuccess("修改成功");
|
|
|
- this.open = false;
|
|
|
- this.getList();
|
|
|
- });
|
|
|
- } else {
|
|
|
- addNORMFEE(this.form).then(response => {
|
|
|
- this.$modal.msgSuccess("新增成功");
|
|
|
- this.open = false;
|
|
|
- this.getList();
|
|
|
- });
|
|
|
- }
|
|
|
+ this.form.id = this.normId;
|
|
|
+ this.form.status = 1;
|
|
|
+ // if (this.form.id != null) {
|
|
|
+ // updateNORMFEE(this.form).then(response => {
|
|
|
+ // this.$modal.msgSuccess("修改成功");
|
|
|
+ // this.open = false;
|
|
|
+ // this.getList();
|
|
|
+ // });
|
|
|
+ // } else {
|
|
|
+ addNORMFEE(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("新增成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ // }
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row) {
|
|
|
const ids = row.id || this.ids;
|
|
|
- this.$modal.confirm('是否确认删除指标权重明细编号为"' + ids + '"的数据项?').then(function() {
|
|
|
+ this.$modal.confirm('是否确认删除指标权重明细编号为"' + ids + '"的数据项?').then(function () {
|
|
|
return delNORMFEE(ids);
|
|
|
}).then(() => {
|
|
|
this.getList();
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
- }).catch(() => {});
|
|
|
+ }).catch(() => { });
|
|
|
},
|
|
|
/** 导出按钮操作 */
|
|
|
handleExport() {
|
|
|
this.download('business/NORMFEE/export', {
|
|
|
...this.queryParams
|
|
|
}, `NORMFEE_${new Date().getTime()}.xlsx`)
|
|
|
+ },
|
|
|
+
|
|
|
+ // 关闭Dialog窗口
|
|
|
+ closeHandler() {
|
|
|
+ this.$emit("closeHandler");
|
|
|
+ },
|
|
|
+
|
|
|
+
|
|
|
+ // 选择单位处理
|
|
|
+ selUnitHandler(val) {
|
|
|
+ this.form.funit = val;
|
|
|
}
|
|
|
- }
|
|
|
+ },
|
|
|
+ // watch:{
|
|
|
+ // normId:(newV)=>{
|
|
|
+ // console.log(newV,"---");
|
|
|
+ // }
|
|
|
+ // }
|
|
|
};
|
|
|
</script>
|