瀏覽代碼

bug修复

chenlei 2 月之前
父節點
當前提交
930963c8ef

+ 16 - 2
src/views/business_manage/addBusiness.vue

@@ -87,8 +87,8 @@
             </div>
             <div class="form-line">
               <t-form-item label="用户上限" name="userMax">
-                <t-input v-model:modelValue="firstFormData.userMax" :disabled="currentRoute === 'businessDetail'"
-                  type="number" placeholder="请输入用户上限" />
+                <t-input v-model:modelValue="firstFormData.userMax" @change="changeUserMax" :disabled="currentRoute === 'businessDetail'"
+                 placeholder="请输入用户上限" />
               </t-form-item>
               <t-form-item label="所属销售" name="saller">
                 <t-cascader :disabled="currentRoute === 'businessDetail'" v-model:modelValue="firstFormData.saller"
@@ -396,6 +396,20 @@ const getTimeLineData = async () => {
   }
 };
 
+// 监听用户数量变化 - 过滤输入内容
+const changeUserMax = () => {
+  // 使用正则表达式删除小数点
+  let filteredValue = firstFormData.userMax.replace(/\./g, '');
+  // 检查过滤后的值是否为有效的整数
+  const intValue = parseInt(filteredValue);
+  if (!isNaN(intValue)) {
+    firstFormData.userMax = intValue;
+  } else {
+    // 如果过滤后的值不是有效的整数
+    MessagePlugin.error('请输入一个有效的整数!');
+    firstFormData.userMax = '';
+  }
+};
 
 // 提交
 const normalizingParams = (params) => {

+ 1 - 1
src/views/business_manage/components/EditBox.vue

@@ -5,7 +5,7 @@
                 <t-button block theme="primary" variant="base" @click="goEdit">编辑</t-button>
             </template>
             <template v-if="currentRoute === 'editBusiness'">
-                <t-button block theme="primary" variant="base" @click="edit">编辑</t-button>
+                <t-button block theme="primary" variant="base" @click="edit">保存</t-button>
                 <t-button block theme="default" @click="goList">取消</t-button>
             </template>
         </div>

+ 5 - 1
src/views/business_manage/components/SetPermission.vue

@@ -104,6 +104,8 @@ const onChange = (checked, context) => {
     if (node.data.Children.length) {                    // 如果当前节点有子节点,则把所有子节点的id都加上去  
       allChecked.value = [...new Set([...allChecked.value, node.value, ...getAllChildIds(node.data.Children)])];
       actuallyAllChecked.value = [...new Set([...actuallyAllChecked.value, node.value, ...getAllChildIds(node.data.Children)])];
+    } else {                                            // 如果当前节点有子节点,则直接加上该节点的id
+      actuallyAllChecked.value = [...new Set([...actuallyAllChecked.value, node.value])];                                                  
     }
   } else {    
     if (node.data.Children.length) {                    // 如果当前节点有子节点,则直接去掉该节点和子节点的所有id 
@@ -145,7 +147,9 @@ const removeChildren = (arrayA, arrayB) => {
 
 // 保存按钮
 const handleSave = async () => {
-  emit('setPermission', actuallyAllChecked.value);
+  console.log(actuallyAllChecked.value);
+  
+  // emit('setPermission', actuallyAllChecked.value);
 };
 // 搜索
 const changeSearchTxt = () => {

+ 5 - 5
src/views/etaMenu/components/ModifyMenuDialog.vue

@@ -11,10 +11,10 @@
         <div class="dialog-container-wrap">
             <t-form :data="form" :rules="rules" label-width="80px" ref="menuFormRef">
                 <t-form-item label="菜单类型" name="MenuType">
-                    <t-radio-group v-model="form.MenuType" :disabled="form.MenuId">
-                    <t-radio :value="0" :disabled="isMenuDisabled">菜单</t-radio>
-                    <t-radio :value="1" :disabled="isbtnDisabled">按钮</t-radio>
-                    <t-radio :value="2" :disabled="isbtnDisabled">字段</t-radio>
+                    <t-radio-group v-model="form.MenuType">
+                    <t-radio :value="0" :disabled="isMenuDisabled || form.MenuId ? true : false">菜单</t-radio>
+                    <t-radio :value="1" :disabled="isbtnDisabled || form.MenuId ? true : false">按钮</t-radio>
+                    <t-radio :value="2" :disabled="isbtnDisabled || form.MenuId ? true : false">字段</t-radio>
                     </t-radio-group>
                 </t-form-item>
                 <t-form-item label="上级菜单" name="ParentId">
@@ -25,7 +25,7 @@
                     <t-input v-model="form.Name"></t-input>
                 </t-form-item>
                 <template v-if="form.MenuType === 0">
-                    <t-form-item label="菜单图标" name="Name" v-if="form.treeLevel === 0">
+                    <t-form-item label="菜单图标" name="IconPath" v-if="form.treeLevel === 0">
                     <div class="icon-wrap">
                         <img :src="form.IconPath" v-if="form.IconPath">
                         <t-button @click="isShowIconDialog = true">选择图标</t-button>

+ 1 - 1
src/views/etaMenu/etaMenuConfig.vue

@@ -2,7 +2,7 @@
     <div class="eta-menu-config-wrap">
         <div class="menu-top">
             <t-button @click="handleModifyMenu('add',{})">添加菜单</t-button>
-            <t-input style="width: 310px; margin-left: auto" placeholder="请输入菜单名称" clearable v-model="Keyword" @input="getMenuData">
+            <t-input style="width: 310px; margin-left: auto" placeholder="请输入菜单名称" clearable v-model="Keyword" @change="getMenuData">
                 <template #prefixIcon><SearchIcon /></template>
             </t-input>
         </div>

+ 1 - 1
src/views/etaTrial/etaTrialList.vue

@@ -51,7 +51,7 @@
         <t-input
           v-model="searchText"
           placeholder="姓名/公司名称"
-          @input="searchHandle"
+          @change="searchHandle"
           style="width: 400px; margin-left: 20px;"
         >
         <template #prefixIcon><SearchIcon /></template>

+ 1 - 1
src/views/system/updateLog.vue

@@ -2,7 +2,7 @@
     <div class="update-log-manage-wrap">
         <div class="top-wrap">
             <t-button theme="primary" @click="isLogSetShow=true">添加日志</t-button>
-            <t-input v-model="searchText" @input="getTableData" placeholder="输入更新内容检索" clearable style="width:240px;" @clear="getTableData">
+            <t-input v-model:value="searchText" @change="getTableData" placeholder="输入更新内容检索" clearable style="width:240px;">
                 <template #prefixIcon>
                     <SearchIcon/>
                 </template>

+ 1 - 1
src/views/training/classifyManage.vue

@@ -2,7 +2,7 @@
     <div class="classify-manage-wrap traing-manage">
         <div class="top-wrap">
             <t-button theme="primary" @click="handleModifyClassify({})">添加分类</t-button>
-            <t-input v-model="searchText" clearable placeholder="请输入分类名称" @input="getTableData" style="width:240px;">
+            <t-input v-model="searchText" clearable placeholder="请输入分类名称" @change="getTableData" style="width:240px;">
                 <template #prefixIcon>
                     <SearchIcon/>
                 </template>

+ 1 - 1
src/views/training/components/addTags.vue

@@ -10,7 +10,7 @@
     >
         <div class="dialog-container">
             <div class="search-box">
-                <t-input  placeholder="请输入标签名称" v-model.trim="searchText" clearable @input="getTagList(searchText)">
+                <t-input  placeholder="请输入标签名称" v-model.trim="searchText" clearable @change="getTagList(searchText)">
                     <template #prefixIcon>
                         <SearchIcon/>
                     </template>

+ 1 - 1
src/views/training/labelManage.vue

@@ -3,7 +3,7 @@
     <div class="label-manage-wrap traing-manage">
         <div class="top-wrap">
             <t-button theme="primary" @click="handleModifyLabel({})">新增标签</t-button>
-            <t-input v-model="searchText" clearable placeholder="请输入标签名称" @input="handleCurrentChange(1)" style="width:240px;">
+            <t-input v-model="searchText" clearable placeholder="请输入标签名称" @change="handleCurrentChange(1)" style="width:240px;">
                 <template #prefixIcon>
                     <SearchIcon/>
                 </template>

+ 1 - 1
src/views/training/modifyVideoPage.vue

@@ -375,8 +375,8 @@ const publishVideo = async () => {
     res = await VideoInterface.publishVideo({ VideoId: Number(form.value.VideoId), PublishState: 1 });
     if (res.Ret !== 200) return;
     MessagePlugin.success('发布成功');
+    changeRoute();
   }
-  changeRoute();
 };
 
 // 改变路由

+ 1 - 1
src/views/training/videoManage.vue

@@ -42,7 +42,7 @@
                     <t-option label="已发布" :value="2"/>
                 </t-select>
             </div>
-            <t-input v-model="searchText" clearable placeholder="请输入视频名称" @input="handleCurrentChange(1)" style="width:240px;">
+            <t-input v-model="searchText" clearable placeholder="请输入视频名称" @change="handleCurrentChange(1)" style="width:240px;">
                 <template #prefixIcon><SearchIcon /></template>
             </t-input>
         </div>