liujintao 2 hónapja
szülő
commit
c2a0c80a37

+ 1 - 2
src/views/reportManage/TaskManage/index.vue

@@ -792,9 +792,9 @@ const formItems = ref([
   { label: 'IP地址', prop: 'ipaddress', type: 'input', placeholder: '请输入IP地址' },
   { label: '注册公司', prop: 'company', type: 'input', placeholder: '请输入注册公司' },
   { label: '公司英文名称', prop: 'companyEnglishName', type: 'input', placeholder: '请输入公司英文名称' },
-  // { label: '公司地址', prop: 'address', type: 'input', placeholder: '请输入公司地址' },
   { label: '公司法人', prop: 'juridicalPerson', type: 'input', placeholder: '请输入公司法人' },
 
+  // { label: '公司地址', prop: 'address', type: 'input', placeholder: '请输入公司地址' },
   // { label: '法人信用卡', prop: 'juridicalPersonCreditCard', type: 'input', placeholder: '请输入法人信用卡' },
   // { label: '信用卡地址', prop: 'juridicalPersonCreditCardAddress', type: 'input', placeholder: '请输入信用卡地址' },
   // { label: '收款账号', prop: 'receivablesAccount', type: 'input', placeholder: '请输入收款账号' },
@@ -837,7 +837,6 @@ onMounted(() => {
                 v-on="gridEvents" @edit-actived="handleEditActived" @edit-closed="handleEditClosed">
         <template #toolbar_buttons>
           <el-button :icon="Plus" type="primary" text bg @click="dialogFormVisible = true"> 添加任务</el-button>
-          <!--<el-button plain type="success" @click="saveEvent">保存</el-button>-->
           <el-button :disabled="isDeleteDisabled" text bg :icon="Delete" plain type="danger" @click="removeEvent">删除
           </el-button>
           <el-button v-if="!isDeleteDisabled" plain text bg round type="success" @click="userDialogFormVisible =true">

+ 1 - 0
src/views/reportManage/TaskManage/utils/enum.ts

@@ -9,6 +9,7 @@ export const requiredFields = [
   { field: 'platformName', title: '平台名称' },
   { field: 'country', title: '国家' },
   { field: 'brandName', title: '品牌' },
+  { field: 'department', title: '部门' },
   { field: 'user', title: '填写人' },
   { field: 'operater', title: '运营' },
   { field: 'currencyCode', title: '平台币种' },

+ 4 - 4
src/views/reportManage/dataCenter/normalDisplay/components/Selector/index.vue

@@ -171,17 +171,17 @@ defineExpose({ fetchFilteredData, filteredData, updateData });
 
 <template>
   <div class="flex gap-2.5 flex-wrap">
-    <el-input v-model="platformNumberList" class="flex-item" clearable placeholder="平台编号" style="width: 130px"
+    <el-input v-model="platformNumberList" class="flex-item" clearable placeholder="平台编号" style="width: 100px"
               @change="emitChange"></el-input>
     <el-input v-model="platformNameList" class="flex-item" clearable placeholder="平台名称" style="width: 130px"
               @change="emitChange"></el-input>
-    <el-input v-model="operationList" class="flex-item" clearable placeholder="运营" style="width: 130px"
-              @change="emitChange"></el-input>
     <el-select v-model="departmentList" class="flex-item" clearable collapse-tags collapse-tags-tooltip multiple
                placeholder="部门"
                style="width: 145px;">
       <el-option v-for="item in departmentOptions" :key="item" :label="item" :value="item" />
     </el-select>
+    <el-input v-model="operationList" class="flex-item" clearable placeholder="运营" style="width: 130px"
+              @change="emitChange"></el-input>
     <el-select
         v-model="usersList"
         class="flex-item"
@@ -190,7 +190,7 @@ defineExpose({ fetchFilteredData, filteredData, updateData });
         filterable
         multiple
         placeholder="填写人"
-        style="width: 175px;"
+        style="width: 160px;"
     >
       <el-option
           v-for="item in usersOptions"