瀏覽代碼

联席会议鉴权

gks 1 年之前
父節點
當前提交
486aecaeaf
共有 3 個文件被更改,包括 9 次插入31 次删除
  1. 5 4
      src/views/AttendMeeting/index.vue
  2. 3 27
      src/views/ECONOMICSINDEX/index.vue
  3. 1 0
      src/views/JOINTCONFERENCE/callback.vue

+ 5 - 4
src/views/AttendMeeting/index.vue

@@ -125,21 +125,21 @@
             size="mini"
             type="text"
             @click="goDetail(scope.row)"
-            v-hasPermi="['business:JOINTCONFERENCE:query']"
+            v-if="checkPermi(['business:JOINTCONFERENCE:query'])"
             >会议详情</el-button
           >
           <el-button
             size="mini"
             type="text"
             @click="handleUnit(scope.row)"
-            v-hasPermi="['business:JOINTCONFERENCE:add']"
+            v-if="checkPermi(['business:JOINTCONFERENCE:assign'])"
             >单位指派</el-button
           >
           <el-button
             size="mini"
             type="text"
             @click="handleReply(scope.row)"
-            v-hasPermi="['business:JOINTCONFERENCE:edit']"
+            v-if="checkPermi(['business:JOINTCONFERENCE:edit'])"
             >会议回复</el-button
           >
         </template>
@@ -169,6 +169,7 @@ import detail from "@/views/JOINTCONFERENCE/detail.vue";
 import callback from "@/views/JOINTCONFERENCE/callback.vue";
 
 import { getInfo } from "@/api/login";
+import { checkPermi } from "@/utils/permission.js";
 
 export default {
   // name: "JOINTCONFERENCE",
@@ -358,7 +359,7 @@ export default {
 
       this.iframe({
         obj: add,
-        param: {id:id},
+        param: { id: id },
         title: "修改会议",
         width: "750px",
         height: "60%",

+ 3 - 27
src/views/ECONOMICSINDEX/index.vue

@@ -480,35 +480,11 @@ export default {
       form: {},
       // 表单校验
       rules: {
-        names: [
-          {
-            required: true,
-            message: "综合保税区经济运行主要指标表主键不能为空",
-            trigger: "blur",
-          },
-
-          {
-            pattern: /^-?(([0-9]*(\.[0-9]{1,3})$)|([0-9]+$))/,
-            message: "值需为数字或小数",
-            trigger: "blur",
-          },
-        ],
-        id: [
-          {
-            required: true,
-            message: "综合保税区经济运行主要指标表主键不能为空",
-            trigger: "blur",
-          },
-          {
-            pattern: /^-?(([0-9]*(\.[0-9]{1,3})$)|([0-9]+$))/,
-            message: "值需为数字或小数",
-            trigger: "blur",
-          },
-        ],
+        
         jckzz: [
           { required: true, message: "进出口总值 不能为空", trigger: "blur" },
           {
-            pattern: /^-?(([0-9]*(\.[0-9]{1,3})$)|([0-9]+$))/,
+            pattern: /^-?(([0-9]*(\.[0-9]{1,100})$)|([0-9]+$))/,
             message: "值需为数字或小数",
             trigger: "blur",
           },
@@ -520,7 +496,7 @@ export default {
             trigger: "blur",
           },
           {
-            pattern: /^-?(([0-9]*(\.[0-9]{1,3})$)|([0-9]+$))/,
+            pattern: /^-?(([0-9]*(\.[0-9]{1,100})$)|([0-9]+$))/,
             message: "值需为数字或小数",
             trigger: "blur",
           },

+ 1 - 0
src/views/JOINTCONFERENCE/callback.vue

@@ -176,6 +176,7 @@ export default {
 .cmain .detail_item {
   display: flex;
   align-items: flex-start;
+  justify-content: start;
   margin-bottom: 20px;
   color: #333333;
   font-size: 16px;