Bladeren bron

提交时间、产品上线信息页面

chenrui 1 jaar geleden
bovenliggende
commit
e4aaa2b14f

+ 25 - 0
src/config/router.config.js

@@ -2648,6 +2648,31 @@ export const asyncRouterMap = [
               }
             ]
           },
+          {
+            path: '/productManagement/newProduct',
+            redirect: '/productManagement/newProduct/list',
+            name: 'productLaunchInfo',
+            component: BlankLayout,
+            meta: {
+              title: '产品上线信息',
+              icon: 'rise'
+              // permission: 'M_productLaunchInfoList'
+            },
+            hideChildrenInMenu: true,
+            children: [
+              {
+                path: 'list',
+                name: 'productLaunchInfoList',
+                component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/newProduct/list.vue'),
+                meta: {
+                  title: '产品上线信息列表',
+                  icon: 'rise',
+                  hidden: true
+                  // permission: 'M_productLaunchInfoList'
+                }
+              }
+            ]
+          },
           {
             path: '/productManagement/productOfflineAudit',
             redirect: '/productManagement/productOfflineAudit/list',

+ 2 - 0
src/views/salesManagement/salesQueryNew/detail.vue

@@ -58,6 +58,8 @@
             <a-descriptions-item label="审核时间">{{ detailData&&detailData.auditDate || '--' }}</a-descriptions-item>
             <a-descriptions-item label="业务状态">{{ detailData&&detailData.billStatusDictValue || '--' }}</a-descriptions-item>
             <a-descriptions-item label="财务状态">{{ detailData&&detailData.financialStatusDictValue || '--' }}</a-descriptions-item>
+            <a-descriptions-item label="改单时间">{{ detailData&&detailData.auditDate || '--' }}</a-descriptions-item>
+            <a-descriptions-item label="最新提交时间">{{ detailData&&detailData.auditDate || '--' }}</a-descriptions-item>
             <a-descriptions-item label="备注" :span="3">{{ detailData&&detailData.remarks || '--' }}</a-descriptions-item>
           </a-descriptions>
         </div>

+ 6 - 1
src/views/salesManagement/salesQueryNew/list.vue

@@ -166,6 +166,11 @@
             <a-badge :count="'改'+record.changeTimes" :number-style="{ zoom:'80%' }" v-if="record.changeTimes>0"></a-badge>
             <a-badge count="促" v-if="record.promoFlag==1" :number-style="{ backgroundColor: '#52c41a', zoom:'80%' }"></a-badge>
           </template>
+          <!-- 提交时间 -->
+          <!-- submitDateTit -->
+          <template slot="submitDateTit">
+            <span>提交时间</span>
+          </template>
           <!-- 出库仓库 -->
           <template slot="warehouseBox" slot-scope="text, record">
             <a-tooltip placement="right" v-if="record.newWarehouseNameSet && record.newWarehouseNameSet.length>0">
@@ -412,7 +417,7 @@ export default {
       const arr = [
         { title: '创建时间', dataIndex: 'createDate', width: '6%', align: 'center', customRender: function (text) { return text || '--' }, sorter: true },
         { title: '销售单号', scopedSlots: { customRender: 'salesBillNo' }, width: '7%', align: 'center' },
-        { title: '提交时间', dataIndex: 'submitDate', width: '6%', align: 'center', customRender: function (text) { return text || '--' }, sorter: true },
+        { title: <a-tooltip placement='top' title='第一次提交时间'>提交时间&nbsp;<a-icon type="question-circle" /></a-tooltip>, dataIndex: 'submitDate', width: '8%', align: 'center', customRender: function (text) { return text || '--' }, sorter: true },
         { title: '客户名称', dataIndex: 'buyerName', width: '8%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
         { title: '出库仓库', scopedSlots: { customRender: 'warehouseBox' }, width: '8%', align: 'center', ellipsis: true },
         { title: '总数量', dataIndex: 'totalQty', scopedSlots: { customRender: 'totalQty' }, width: '4%', align: 'center' },