Browse Source

Rename market plan to subscribe plan`

wfansh 1 month ago
parent
commit
1b760aa246

+ 6 - 6
src/views/adweb/subscribePlan/SubscribePlan.data.ts

@@ -4,7 +4,7 @@ export const columns: BasicColumn[] = [
   {
     title: '套餐类型',
     align: 'left',
-    dataIndex: 'marketType_dictText',
+    dataIndex: 'planType_dictText',
   },
   {
     title: '套餐名称',
@@ -16,13 +16,13 @@ export const columns: BasicColumn[] = [
     align: 'center',
     dataIndex: 'keywordCount',
     customRender: function({text, record})  {
-      if (record.marketType == 'SEO') {
+      if (record.planType == 'SEO') {
         return text + '个'
-      } else if (record.marketType == 'ARTICLE') {
+      } else if (record.planType == 'ARTICLE') {
         return text + '篇'
-      } else if (record.marketType == 'PSEUDOORIGINAL') {
+      } else if (record.planType == 'PSEUDOORIGINAL') {
         return text + '次'
-      }else if (record.marketType == 'STATIONCONSTRUCTION') {
+      }else if (record.planType == 'STATIONCONSTRUCTION') {
         return text + '个'
       }
     }
@@ -52,7 +52,7 @@ export const columns: BasicColumn[] = [
 
 // 高级查询数据
 export const superQuerySchema = {
-  marketType: {title: '套餐类型', order: 0, view: 'list', type: 'string'},
+  planType: {title: '套餐类型', order: 0, view: 'list', type: 'string'},
   planName: {title: '套餐名称', order: 1, view: 'text', type: 'string'},
   keywordCount: {title: '关键词数量', order: 2, view: 'number', type: 'number'},
   target: {title: '关键词达标目标', order: 3, view: 'number', type: 'number'},

+ 8 - 8
src/views/adweb/subscribePlan/SubscribePlanList.vue

@@ -5,9 +5,9 @@
       <a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol">
         <a-row :gutter="24">
           <a-col :lg="6">
-            <a-form-item name="marketType">
+            <a-form-item name="planType">
               <template #label><span title="套餐类型">套餐类型</span></template>
-              <j-dict-select-tag v-model:value="queryParam.marketType" dictCode="dict_plan_type" placeholder="请选择套餐类型" allow-clear />
+              <j-dict-select-tag v-model:value="queryParam.planType" dictCode="dict_plan_type" placeholder="请选择套餐类型" allow-clear />
             </a-form-item>
           </a-col>
           <a-col :lg="6">
@@ -60,13 +60,13 @@
       <template #bodyCell="{ column, record, index, text }">
 
 <!--       自定义列 -->
-        <template v-if="column.key == 'marketType_dictText'">
-          <template v-if="record.marketType == 'SEO'">
+        <template v-if="column.key == 'planType_dictText'">
+          <template v-if="record.planType == 'SEO'">
             <a-tag color="green">
               {{ text }}
             </a-tag>
           </template>
-          <template v-else-if="record.marketType == 'PSEUDOORIGINAL'">
+          <template v-else-if="record.planType == 'PSEUDOORIGINAL'">
             <a-tag color="cyan">
               {{ text }}
             </a-tag>
@@ -86,18 +86,18 @@
       </template>
     </BasicTable>
     <!-- 表单区域 -->
-    <SeoMarketPlanModal ref="registerModal" @success="handleSuccess" />
+    <SubscribePlanModal ref="registerModal" @success="handleSuccess" />
 <!--    <IntegrityCheckingDrawer ref="integrityCheckingDrawer" />-->
   </div>
 </template>
 
-<script lang="ts" name="adweb-seoMarketPlan" setup>
+<script lang="ts" name="adweb-subscribePlan" setup>
   import { reactive, ref } from 'vue';
   import { BasicTable, TableAction } from '/src/components/Table';
   import { useListPage } from '/src/hooks/system/useListPage';
   import { columns, superQuerySchema } from './SubscribePlan.data';
   import { batchDelete, deleteOne, getExportUrl, getImportUrl, list } from './SubscribePlan.api';
-  import SeoMarketPlanModal from './components/SubscribePlanModal.vue';
+  import SubscribePlanModal from './components/SubscribePlanModal.vue';
   // import IntegrityCheckingDrawer from './components/IntegrityCheckingDrawer.vue';
 
   import { useUserStore } from '/src/store/modules/user';

+ 4 - 4
src/views/adweb/subscribePlan/components/SubscribePlanForm.vue

@@ -5,8 +5,8 @@
         <a-form ref="formRef" class="antd-modal-form" :labelCol="labelCol" :wrapperCol="wrapperCol">
           <a-row>
             <a-col :span="24">
-              <a-form-item label="套餐类型" v-bind="validateInfos.marketType">
-                <j-dict-select-tag v-model:value="formData.marketType" dictCode="dict_plan_type" placeholder="请选择套餐类型" allow-clear />
+              <a-form-item label="套餐类型" v-bind="validateInfos.planType">
+                <j-dict-select-tag v-model:value="formData.planType" dictCode="dict_plan_type" placeholder="请选择套餐类型" allow-clear />
               </a-form-item>
             </a-col>
             <a-col :span="24">
@@ -100,7 +100,7 @@
   const emit = defineEmits(['register', 'ok']);
   const formData = reactive<Record<string, any>>({
     id: '',
-    marketType: '',
+    planType: '',
     planName: '',
     keywordCount: undefined,
     target: undefined,
@@ -119,7 +119,7 @@
   const confirmLoading = ref<boolean>(false);
   //表单验证
   const validatorRules = reactive({
-    marketType: [{ required: true, message: '请输入套餐类型!' }],
+    planType: [{ required: true, message: '请输入套餐类型!' }],
     planName: [{ required: true, message: '请输入套餐名称!' }],
     keywordCount: [{ required: true, message: '请输入关键词数量!' }],
     target: [{ required: true, message: '请输入关键词达标目标!' }],

+ 2 - 2
src/views/adweb/subscribePlan/components/SubscribePlanModal.vue

@@ -8,13 +8,13 @@
     @cancel="handleCancel"
     cancelText="关闭"
   >
-    <SeoMarketPlanForm ref="registerForm" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false" />
+    <SubscribePlanForm ref="registerForm" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false" />
   </j-modal>
 </template>
 
 <script lang="ts" setup>
   import { ref, nextTick, defineExpose } from 'vue';
-  import SeoMarketPlanForm from './SubscribePlanForm.vue';
+  import SubscribePlanForm from './SubscribePlanForm.vue';
   import JModal from '/src/components/Modal/src/JModal/JModal.vue';
 
   const title = ref<string>('');