1294b853 by lihua

修复专区问题

1 parent e30b0721
...@@ -1668,7 +1668,7 @@ const passCommonDialogBtnClick = (btn, info) => { ...@@ -1668,7 +1668,7 @@ const passCommonDialogBtnClick = (btn, info) => {
1668 </el-tab-pane> 1668 </el-tab-pane>
1669 </el-tabs> 1669 </el-tabs>
1670 </ContentWrap> 1670 </ContentWrap>
1671 <ContentWrap id="id-assetContent" title="附件信息" description="" style="margin-top: 15px" 1671 <ContentWrap v-show="detailType != 'asset' || uploadFileDetailInfo?.length" id="id-assetContent" title="附件信息" description="" style="margin-top: 15px"
1672 :isExpand="assetContentExpand" expandSwicth @expand="(v) => assetContentExpand = v"> 1672 :isExpand="assetContentExpand" expandSwicth @expand="(v) => assetContentExpand = v">
1673 <div class="list_panel mt4"> 1673 <div class="list_panel mt4">
1674 <div class="list_item isFile" v-for="(fileItem, index) in uploadFileDetailInfo"> 1674 <div class="list_item isFile" v-for="(fileItem, index) in uploadFileDetailInfo">
......
...@@ -155,6 +155,9 @@ const tableFields = ref([{ label: "序号", type: "index", width: 56, align: "ce ...@@ -155,6 +155,9 @@ const tableFields = ref([{ label: "序号", type: "index", width: 56, align: "ce
155 } 155 }
156 } 156 }
157 }, 157 },
158 {
159 label: "数交所审批状态", field: "exchangeApproveState", type: "approveTagBtn", width: 140, align: 'center'
160 },
158 { label: "修改人", field: "updateUserName", width: 140 }, 161 { label: "修改人", field: "updateUserName", width: 140 },
159 { label: "修改时间", field: "updateTime", width: 180 }]); 162 { label: "修改时间", field: "updateTime", width: 180 }]);
160 163
......
...@@ -32,7 +32,7 @@ const sjsLogo = new URL('@/assets/images/sjs-logo.png', import.meta.url).href ...@@ -32,7 +32,7 @@ const sjsLogo = new URL('@/assets/images/sjs-logo.png', import.meta.url).href
32 32
33 const carouselInfo: any = ref({ 33 const carouselInfo: any = ref({
34 list: [], 34 list: [],
35 height: '172px', 35 height: '128px',
36 loop: false, 36 loop: false,
37 autoplay: false, 37 autoplay: false,
38 arrow: 'hover', 38 arrow: 'hover',
...@@ -103,24 +103,24 @@ const tableInfo = ref({ ...@@ -103,24 +103,24 @@ const tableInfo = ref({
103 } 103 }
104 }, 104 },
105 { label: "上架分类", field: "exchangeName", width: 140 }, 105 { label: "上架分类", field: "exchangeName", width: 140 },
106 { 106 // {
107 label: "审批状态", field: "approveVO", type: "approveTag", width: TableColumnWidth.STATE, align: 'center' 107 // label: "审批状态", field: "approveVO", type: "approveTag", width: TableColumnWidth.STATE, align: 'center'
108 }, 108 // },
109 { 109 {
110 label: '上架状态', field: 'listingStatus', width: 100, getName: (scope) => { 110 label: '上架状态', field: 'listingStatus', width: 100, getName: (scope) => {
111 return scope.row.listingStatus == 'Y' ? '已上架' : '未上架'; 111 return scope.row.listingStatus == 'Y' ? '已上架' : '未上架';
112 } 112 }
113 }, 113 },
114 { 114 // {
115 label: "主平台审批状态", field: "crossPlatformApproveState", type: "approveTagBtn", width: 150, align: 'center', btn: { 115 // label: "主平台审批状态", field: "crossPlatformApproveState", type: "approveTagBtn", width: 150, align: 'center', btn: {
116 label: '查看', visible: (scope) => { 116 // label: '查看', visible: (scope) => {
117 return scope.row.crossPlatformApproveState != null; 117 // return scope.row.crossPlatformApproveState != null;
118 }, click: (scope) => { 118 // }, click: (scope) => {
119 systemApproveCurrentRowInfo.value = scope.row; 119 // systemApproveCurrentRowInfo.value = scope.row;
120 approvalDialogVisible.value = true; 120 // approvalDialogVisible.value = true;
121 } 121 // }
122 } 122 // }
123 }, 123 // },
124 { label: "修改时间", field: "updateTime", width: TableColumnWidth.DATETIME }, 124 { label: "修改时间", field: "updateTime", width: TableColumnWidth.DATETIME },
125 ], 125 ],
126 loading: false, 126 loading: false,
...@@ -133,7 +133,7 @@ const tableInfo = ref({ ...@@ -133,7 +133,7 @@ const tableInfo = ref({
133 actionInfo: { 133 actionInfo: {
134 label: "操作", 134 label: "操作",
135 type: "btn", 135 type: "btn",
136 width: 170, 136 width: 130,
137 btns: (scope) => { 137 btns: (scope) => {
138 const { row } = scope; 138 const { row } = scope;
139 const approveVO = row.approveVO || {}; 139 const approveVO = row.approveVO || {};
...@@ -157,31 +157,31 @@ const tableInfo = ref({ ...@@ -157,31 +157,31 @@ const tableInfo = ref({
157 if (approveVO && approveVO.approveState == 'A' && staffGuid == currentStaffGuid) { 157 if (approveVO && approveVO.approveState == 'A' && staffGuid == currentStaffGuid) {
158 isShowCancel = true; 158 isShowCancel = true;
159 } 159 }
160 if ((bizApproveState === 'Y' || row.crossPlatformApproveState == 'Y') && staffGuid == currentStaffGuid) { 160 // if ((bizApproveState === 'Y' || row.crossPlatformApproveState == 'Y') && staffGuid == currentStaffGuid) {
161 if (row.listingStatus == 'Y') { 161 // if (row.listingStatus == 'Y') {
162 list.push({ label: "下架", value: "down" }); 162 // list.push({ label: "下架", value: "down" });
163 } else { 163 // } else {
164 list.push({ label: "上架", value: "up" }); 164 // list.push({ label: "上架", value: "up" });
165 } 165 // }
166 } 166 // }
167 if (flowState === 1) { 167 // if (flowState === 1) {
168 list = [{ label: "编辑", value: "edit" }, { label: "删除", value: "del" }] 168 // list = [{ label: "编辑", value: "edit" }, { label: "删除", value: "del" }]
169 } 169 // }
170 if (flowState === 2) { 170 // if (flowState === 2) {
171 list = [{ label: "通过", value: "pass" }, { label: "驳回", value: "reject" }] 171 // list = [{ label: "通过", value: "pass" }, { label: "驳回", value: "reject" }]
172 // }
173 // if (flowState === 3 && bizApproveState != 'D') { //重新提交过的不能再重新提交
174 // list.push({ label: "重新提交", value: "redit" }) //已驳回
175 // }
176 // if (isShowCancel) {
177 // list.push({ label: "撤销", value: "revoke" })
178 // }
179 if (flowState !== 1) {
180 list.push({ label: "详情", value: "detail" })
172 } 181 }
173 if (flowState === 3) { 182 if (flowState === 3) {
174 list.push({ label: "删除", value: "del" }) 183 list.push({ label: "删除", value: "del" })
175 } 184 }
176 if (flowState === 3 && bizApproveState != 'D') { //重新提交过的不能再重新提交
177 list.push({ label: "重新提交", value: "redit" }) //已驳回
178 }
179 if (isShowCancel) {
180 list.push({ label: "撤销", value: "revoke" })
181 }
182 if (flowState !== 1) {
183 list.push({ label: "详情", value: "detail" })
184 }
185 return list 185 return list
186 }, 186 },
187 } 187 }
...@@ -952,10 +952,9 @@ const rejectDialogBtnClick = (btn, info) => { ...@@ -952,10 +952,9 @@ const rejectDialogBtnClick = (btn, info) => {
952 </div> 952 </div>
953 </div> 953 </div>
954 </div> 954 </div>
955 <div class="operator-btn" @click.stop="btnClick(item)"> 955 <!-- <div class="operator-btn" @click.stop="btnClick(item)">
956 <!-- <div class="left-btn">更新模板</div> -->
957 <div class="right-btn">产品上架</div> 956 <div class="right-btn">产品上架</div>
958 </div> 957 </div> -->
959 </div> 958 </div>
960 </template> 959 </template>
961 </CarouselPanel> 960 </CarouselPanel>
...@@ -970,7 +969,7 @@ const rejectDialogBtnClick = (btn, info) => { ...@@ -970,7 +969,7 @@ const rejectDialogBtnClick = (btn, info) => {
970 </div> 969 </div>
971 </div> 970 </div>
972 <div class="table_panel_wrap" :style="{ 971 <div class="table_panel_wrap" :style="{
973 height: demandListData.length > 0 ? 'calc(100% - 291px)' : 'calc(100% - 54px)' 972 height: demandListData.length > 0 ? 'calc(100% - 247px)' : 'calc(100% - 54px)'
974 }"> 973 }">
975 <Table :tableInfo="tableInfo" @tableBtnClick="tableBtnClick" @tablePageChange="tablePageChange" 974 <Table :tableInfo="tableInfo" @tableBtnClick="tableBtnClick" @tablePageChange="tablePageChange"
976 @tableSwitchBeforeChange="tableSwitchBeforeChange" /> 975 @tableSwitchBeforeChange="tableSwitchBeforeChange" />
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!