Przeglądaj źródła

Merge branch 'blueBranch' into testToMerge

qymljy 2 miesięcy temu
rodzic
commit
4898a6414f

+ 1 - 1
src/Form/marketing2/agent/add.vue

@@ -130,7 +130,7 @@
             <el-form-item :label="$t(`开票节点`)+':'" prop="invoicingpoint">
               <el-radio-group v-model="form.invoicingpoint">
                 <el-radio :label="1">{{$t('订单审核')}}</el-radio>
-                <el-radio :label="2">{{ $t('发货') }}</el-radio>
+                <el-radio :label="2">{{ $t('发货单关闭') }}</el-radio>
               </el-radio-group>
             </el-form-item>
           </el-col>

+ 1 - 1
src/Form/marketing2/agent/edit.vue

@@ -131,7 +131,7 @@
             <el-form-item :label="$t(`开票节点`)+':'" prop="invoicingpoint">
               <el-radio-group v-model="form.invoicingpoint">
                 <el-radio :label="1">{{$t('订单审核')}}</el-radio>
-                <el-radio :label="2">{{ $t('发货') }}</el-radio>
+                <el-radio :label="2">{{ $t('发货单关闭') }}</el-radio>
               </el-radio-group>
             </el-form-item>
           </el-col>

+ 1 - 1
src/Form/payvoucher/add.vue

@@ -179,7 +179,7 @@ export default {
         }
       })
       console.log(res)
-      this.accountclass = res.data
+      this.accountclass = res.data.filter(item => item.accountname !== '返利金账户')
     },
     /*分类*/
     async classList(){

+ 1 - 1
src/Form/recvoucher/add.vue

@@ -181,7 +181,7 @@ export default {
         }
       })
       console.log(res)
-      this.accountclass = res.data
+      this.accountclass = res.data.filter(item => item.accountname !== '返利金账户')
     },
     /*分类*/
     async classList(){

+ 1 - 0
src/HDrpManagement/writeoffbill/components/edit.vue

@@ -29,6 +29,7 @@
               <el-form-item :label="$t(`企业`) + ':'" prop="sys_enterpriseid">
                 <selectEnterprise
                   ref="ent"
+                  :disabled="true"
                   @rowClick="entRowClick"
                 ></selectEnterprise>
               </el-form-item>

+ 2 - 0
src/HDrpManagement/writeoffbill/components/selectEnterprise.vue

@@ -62,6 +62,7 @@
         v-model="form.enterprisename"
         @focus="queryEnterpriseArchives"
         :placeholder="$t(`输入企业名称`)"
+        :disabled="disabled"
         readonly
       ></el-input>
     </el-popover>
@@ -71,6 +72,7 @@
 <script>
 export default {
   components: {},
+  props:['disabled'],
   data() {
     return {
       ENlist: [],

+ 1 - 1
src/HManagement/accountManage/modules/account_detail.vue

@@ -198,7 +198,7 @@ export default {
             {label:this.$t('税号'),value:this.accountInfo.taxno},
             {label:this.$t('免运费金额'),value:this.accountInfo.freefreightamount},
             {label:this.$t('订单可退货天数'),value:this.accountInfo.limitreturnday},
-            {label:this.$t('是否订单审核可开票'),value:this.accountInfo.invoicingpoint == '1' ? this.$t('订单审核') : this.$t('发货')},
+            {label:this.$t('开票节点'),value:this.accountInfo.invoicingpoint == '1' ? this.$t('订单审核') : this.$t('发货单关闭')},
             {label:this.$t('是否授权所有营销类别'),value:this.accountInfo.saleclassauth ? this.$t('否') : this.$t('是')},
             {
               label:this.$t('商品授权管控'),

+ 2 - 2
src/HManagement/marketing2/agent/details/index.vue

@@ -279,8 +279,8 @@ export default {
           }
         },
         {
-          label:this.$t('是否订单审核可开票'),
-          value: this.mainData.invoicingpoint == '1' ? this.$t('订单审核'): this.$t('发货')
+          label:this.$t('开票节点'),
+          value: this.mainData.invoicingpoint == '1' ? this.$t('订单审核'): this.$t('发货单关闭')
         },
         {
           label:this.$t('是否授权所有营销类别'),

BIN
src/assets/login.jpg


+ 2 - 1
src/components/newLayout/index.vue

@@ -196,7 +196,8 @@ export default {
 </script>
 <style>
 .panel {
-  background: url("../../assets/wallhaven-0pq8gm.jpeg") no-repeat;
+  /*background: url("../../assets/wallhaven-0pq8gm.jpeg") no-repeat;*/
+  background: url("../../assets/login.jpg") no-repeat;
   background-size: cover;
 }
 .el-menu {

+ 2 - 2
src/components/normal-basic-layout/details/modules/followUp/addLog.vue

@@ -143,7 +143,6 @@ export default {
       this.followUpType = res.data
     },
     submitLog () {
-      console.log(this.form.squarestage,'阶段')
       if (this.squarestageList.length == 0){
         this.stageData()
       }else {
@@ -156,8 +155,9 @@ export default {
       this.$refs.form.validate(async (valid)=>{
         if (!valid) return false
         let resource = this.$route.matched[1].meta.title
+
         let content = {}
-        if (this.$route.path === '/projectChangeDetail' || $route.path === '/funnelProjectDetail'){
+        if (this.$route.path === '/projectChangeDetail' || this.$route.path === '/funnelProjectDetail'){
           content = {
             "sys_datafollowupid":0,
             "ownertable":this.ownertable,

+ 7 - 6
src/views/login/login.vue

@@ -67,9 +67,9 @@
                   </el-form-item>
                   <el-form-item>
                     <div class="flex-between">
-                      <el-checkbox v-model="checked">{{
+                      <el-checkbox v-model="checked"><span style="color: #fff">{{
                         $t("记住账号")
-                      }}</el-checkbox>
+                      }}</span></el-checkbox>
                     </div>
                   </el-form-item>
                   <el-form-item>
@@ -107,9 +107,9 @@
                   </el-form-item>
                   <el-form-item>
                     <div class="flex-between">
-                      <el-checkbox v-model="checked">{{
+                      <el-checkbox v-model="checked"><span style="color: #fff">{{
                         $t("记住账号")
-                      }}</el-checkbox>
+                      }}</span></el-checkbox>
                     </div>
                   </el-form-item>
                   <el-form-item>
@@ -448,7 +448,7 @@ export default {
   line-height: 15px;
 }
 .logo small {
-  color: #999;
+  color: #fff;
 }
 .title {
   display: flex;
@@ -461,7 +461,8 @@ export default {
   font-weight: 600;
 }
 .login-img {
-  background: url("../../assets/wallhaven-0pq8gm.jpeg") no-repeat;
+  /*background: url("../../assets/wallhaven-0pq8gm.jpeg") no-repeat;*/
+  background: url("../../assets/login.jpg") no-repeat;
   background-size: 100% 100%;
 }
 .login-wrap {

+ 92 - 20
src/views/salesData/components/boxLine.vue

@@ -4,24 +4,96 @@
       <div class="title inline-16">
         {{ $t(title) }}
       </div>
-      <el-tooltip effect="dark" placement="top-start">
+      <el-tooltip effect="dark" placement="top-start" >
         <div slot="content">
-          {{
-            $t(
-              "①累计目标金额:到当前时间为止的累计的目标金额,不计算未经历时间的目标金额;"
-            )
-          }}
-          <br />{{
-            $t(
-              "②同比增长率:同比增长率是指本期和上一年同期相比较的增长率,计算公式为:同比增长率=(本期数-同期数)÷同期数×100%。"
-            )
-          }}
-          <br />{{
-            $t(
-              "③环比增长率:环比增长率是指本期和上期相比较的增长率,计算公式为:环比增长率 =(本期数-上期数)÷上期数 ×100%。"
-            )
-          }}
-          <br />{{ $t("④目标达成率=实际金额÷目标金额×100%") }}
+          <div v-if="title == '订单'">
+            {{
+              $t(
+                  "①实际金额:在查询条件下的订单金额。"
+              )
+            }}
+            <br />{{
+              $t(
+                  "②目标金额:在查询条件下的人员目标金额。"
+              )
+            }}
+            <br />{{
+              $t(
+                  "③当前月累计目标金额:在查询条件下,从时间段内第一个月到当前查询月为止的累计目标金额,不计算未经历时间的目标金额。"
+              )
+            }}
+            <br />{{ $t("④同比增长率 = ( 本期数-同期数 ) ÷ 同期数 × 100%。(同比增长率是指本期和上一年同期相比较的增长率)。") }}
+            <br />{{ $t("⑤环比增长率 =(本期数-上期数)÷上期数 ×100%。(环比增长率是指本期和上期相比较的增长率)。") }}
+            <br />{{ $t("⑥目标达成率 = 实际金额 ÷ 目标金额 × 100%。") }}
+            <br />{{ $t("⑦累计目标达成率 = 当前月累计实际金额 ÷ 当前月累计目标金额 × 100%。") }}
+            <br />{{ $t("⑧实际与累计目标差额 = 当前月累计实际金额 - 当前月累计目标金额。") }}
+          </div>
+          <div v-else-if="title == '出货'">
+            {{
+              $t(
+                  "①实际金额:在查询条件下的物流单金额。"
+              )
+            }}
+            <br />{{
+              $t(
+                  "②目标金额:在查询条件下的人员目标金额。"
+              )
+            }}
+            <br />{{
+              $t(
+                  "③当前月累计目标金额:在查询条件下,从时间段内第一个月到当前查询月为止的累计目标金额,不计算未经历时间的目标金额。"
+              )
+            }}
+            <br />{{ $t("④同比增长率 = ( 本期数-同期数 ) ÷ 同期数 × 100%。(同比增长率是指本期和上一年同期相比较的增长率)。") }}
+            <br />{{ $t("⑤环比增长率 =(本期数-上期数)÷上期数 ×100%。(环比增长率是指本期和上期相比较的增长率)。") }}
+            <br />{{ $t("⑥目标达成率 = 实际金额 ÷ 目标金额 × 100%。") }}
+            <br />{{ $t("⑦累计目标达成率 = 当前月累计实际金额 ÷ 当前月累计目标金额 × 100%。") }}
+            <br />{{ $t("⑧实际与累计目标差额 = 当前月累计实际金额 - 当前月累计目标金额。") }}
+          </div>
+          <div v-else-if="title == '开票'">
+            {{
+              $t(
+                  "①实际金额:在查询条件下的开票申请实际金额。"
+              )
+            }}
+            <br />{{
+              $t(
+                  "②目标金额:在查询条件下的人员目标金额。"
+              )
+            }}
+            <br />{{
+              $t(
+                  "③当前月累计目标金额:在查询条件下,从时间段内第一个月到当前查询月为止的累计目标金额,不计算未经历时间的目标金额。"
+              )
+            }}
+            <br />{{ $t("④同比增长率 = ( 本期数-同期数 ) ÷ 同期数 × 100%。(同比增长率是指本期和上一年同期相比较的增长率)。") }}
+            <br />{{ $t("⑤环比增长率 =(本期数-上期数)÷上期数 ×100%。(环比增长率是指本期和上期相比较的增长率)。") }}
+            <br />{{ $t("⑥目标达成率 = 实际金额 ÷ 目标金额 × 100%。") }}
+            <br />{{ $t("⑦累计目标达成率 = 当前月累计实际金额 ÷ 当前月累计目标金额 × 100%。") }}
+            <br />{{ $t("⑧实际与累计目标差额 = 当前月累计实际金额 - 当前月累计目标金额。") }}
+          </div>
+          <div v-else-if="title == '回款'">
+            {{
+              $t(
+                  "①实际金额:在查询条件下的订单核销金额。"
+              )
+            }}
+            <br />{{
+              $t(
+                  "②目标金额:在查询条件下的人员目标金额。"
+              )
+            }}
+            <br />{{
+              $t(
+                  "③当前月累计目标金额:在查询条件下,从时间段内第一个月到当前查询月为止的累计目标金额,不计算未经历时间的目标金额。"
+              )
+            }}
+            <br />{{ $t("④同比增长率 = ( 本期数-同期数 ) ÷ 同期数 × 100%。(同比增长率是指本期和上一年同期相比较的增长率)。") }}
+            <br />{{ $t("⑤环比增长率 =(本期数-上期数)÷上期数 ×100%。(环比增长率是指本期和上期相比较的增长率)。") }}
+            <br />{{ $t("⑥目标达成率 = 实际金额 ÷ 目标金额 × 100%。") }}
+            <br />{{ $t("⑦累计目标达成率 = 当前月累计实际金额 ÷ 当前月累计目标金额 × 100%。") }}
+            <br />{{ $t("⑧实际与累计目标差额 = 当前月累计实际金额 - 当前月累计目标金额。") }}
+          </div>
         </div>
         <!--        <i class="el-icon-question" style="color: #afb0be;float: right"></i>-->
         <img
@@ -53,7 +125,7 @@
         </div>
         <div style="width: 20%; height: 150px; margin-left: 16px" @click="onClick">
           <div style="display: inline-block; height: 120px; margin-top: 16px">
-            <p class="box-title">{{ $t("实际金额") }}</p>
+            <p class="box-title">{{ $t(this.typeDate + "实际金额") }}</p>
             <p style="font-size: 26px; color: #4f7bfd">
               <span style="font-size: 14px">¥</span>
               <!--              {{list.amount > 10000?tool.formatAmount(tool.unitConversion(list.amount,10000),2) +this.$t('万'):tool.formatAmount(list.amount,2)}}</p>-->
@@ -213,7 +285,7 @@
         </div>
         <div style="width: 30%; height: 150px">
           <div style="display: inline-block; height: 120px; margin-top: 16px">
-            <p class="box-title">{{ $t("目标金额") }}</p>
+            <p class="box-title">{{ $t(this.typeDate + "目标金额") }}</p>
             <p style="font-size: 26px; color: #0c0c0c">
               <span style="font-size: 14px">¥</span>
               <!--              {{list.target_l > 10000?tool.formatAmount( tool.unitConversion(list.target_l,10000),2) +this.$t('万'):tool.formatAmount(list.target_l,2)}}</p>-->
@@ -270,7 +342,7 @@
         </div>
         <div style="width: 30%; height: 150px">
           <div style="display: inline-block; height: 120px; margin-top: 16px">
-            <p class="box-title">{{ $t("累计目标金额") }}</p>
+            <p class="box-title">{{ $t(this.typeDate == '上月'?'上月累计目标金额':this.typeDate == '本月'?'本月累计目标金额':this.typeDate + "当前月累计目标金额") }}</p>
             <p style="font-size: 26px; color: #0c0c0c">
               <span style="font-size: 16px">¥</span>
               <!--              {{list.target_l > 10000?tool.formatAmount( tool.unitConversion(list.nowTarget_l,10000),2) +this.$t('万'):tool.formatAmount(list.nowTarget_l,2)}}</p>-->