产品上架
Showing
4 changed files
with
16 additions
and
16 deletions
| ... | @@ -1253,15 +1253,15 @@ const viewVoucherFile = () => { | ... | @@ -1253,15 +1253,15 @@ const viewVoucherFile = () => { |
| 1253 | <span class="title_text">已撤销</span> | 1253 | <span class="title_text">已撤销</span> |
| 1254 | </div> | 1254 | </div> |
| 1255 | </div> | 1255 | </div> |
| 1256 | <div class="panel_body" v-if="flowDetail.bizApproveState == 'R'"> | 1256 | <div class="panel_body" v-if="flowDetail.bizApproveState == 'R'" style="padding: 0px 16px 10px;"> |
| 1257 | <div class="results_list"> | 1257 | <div class="results_list"> |
| 1258 | <div class="list_item"> | 1258 | <div class="list_item"> |
| 1259 | <span class="item_label">平台审批意见:</span> | 1259 | <span class="item_label">审批意见:</span> |
| 1260 | <span class="item_value">{{ flowDetail?.tdsApproveSuggest || '--' }}</span> | 1260 | <span class="item_value">{{ flowDetail?.tdsApproveSuggest || '--' }}</span> |
| 1261 | </div> | 1261 | </div> |
| 1262 | </div> | 1262 | </div> |
| 1263 | </div> | 1263 | </div> |
| 1264 | <div class="panel_body" v-if="flowDetail.bizApproveState == 'E'"> | 1264 | <div class="panel_body" v-if="flowDetail.bizApproveState == 'E'" style="padding: 0px 16px 10px;"> |
| 1265 | <div class="results_list"> | 1265 | <div class="results_list"> |
| 1266 | <div class="list_item"> | 1266 | <div class="list_item"> |
| 1267 | <span class="item_label">失败原因:</span> | 1267 | <span class="item_label">失败原因:</span> | ... | ... |
| ... | @@ -324,7 +324,7 @@ const fileKeyNames = ref({ | ... | @@ -324,7 +324,7 @@ const fileKeyNames = ref({ |
| 324 | <span class="title_text">已撤销</span> | 324 | <span class="title_text">已撤销</span> |
| 325 | </div> | 325 | </div> |
| 326 | </div> | 326 | </div> |
| 327 | <div class="panel_body" v-if="flowDetail.bizApproveState == 'R'"> | 327 | <div class="panel_body" v-if="flowDetail.bizApproveState == 'R'" style="padding: 0px 16px 10px;"> |
| 328 | <div class="results_list"> | 328 | <div class="results_list"> |
| 329 | <div class="list_item"> | 329 | <div class="list_item"> |
| 330 | <span class="item_label">平台审批意见:</span> | 330 | <span class="item_label">平台审批意见:</span> |
| ... | @@ -332,7 +332,7 @@ const fileKeyNames = ref({ | ... | @@ -332,7 +332,7 @@ const fileKeyNames = ref({ |
| 332 | </div> | 332 | </div> |
| 333 | </div> | 333 | </div> |
| 334 | </div> | 334 | </div> |
| 335 | <div class="panel_body" v-if="flowDetail.bizApproveState == 'E'"> | 335 | <div class="panel_body" v-if="flowDetail.bizApproveState == 'E'" style="padding: 0px 16px 10px;"> |
| 336 | <div class="results_list"> | 336 | <div class="results_list"> |
| 337 | <div class="list_item"> | 337 | <div class="list_item"> |
| 338 | <span class="item_label">失败原因:</span> | 338 | <span class="item_label">失败原因:</span> | ... | ... |
| ... | @@ -106,7 +106,7 @@ const tableInfo = ref({ | ... | @@ -106,7 +106,7 @@ const tableInfo = ref({ |
| 106 | }, | 106 | }, |
| 107 | // { label: "上架分类", field: "exchangeName", width: 140 }, | 107 | // { label: "上架分类", field: "exchangeName", width: 140 }, |
| 108 | { | 108 | { |
| 109 | label: "审批状态", field: "bizApproveState", type: "tag", width: TableColumnWidth.STATE, align: 'center' | 109 | label: "审批状态", field: "approveState", type: "tag", width: TableColumnWidth.STATE, align: 'center' |
| 110 | }, | 110 | }, |
| 111 | { | 111 | { |
| 112 | label: '上架状态', field: 'listingStatus', width: 100, getName: (scope) => { | 112 | label: '上架状态', field: 'listingStatus', width: 100, getName: (scope) => { |
| ... | @@ -138,7 +138,7 @@ const tableInfo = ref({ | ... | @@ -138,7 +138,7 @@ const tableInfo = ref({ |
| 138 | width: 170, | 138 | width: 170, |
| 139 | btns: (scope) => { | 139 | btns: (scope) => { |
| 140 | const { row } = scope; | 140 | const { row } = scope; |
| 141 | const bizApproveState = row.bizApproveState; | 141 | const bizApproveState = row.approveState; |
| 142 | let flowState; | 142 | let flowState; |
| 143 | if (bizApproveState == 'N') { | 143 | if (bizApproveState == 'N') { |
| 144 | flowState = 1; | 144 | flowState = 1; | ... | ... |
| ... | @@ -1766,41 +1766,41 @@ const rejectDialogBtnClick = (btn, info) => { | ... | @@ -1766,41 +1766,41 @@ const rejectDialogBtnClick = (btn, info) => { |
| 1766 | <template> | 1766 | <template> |
| 1767 | <div class="container_wrap" v-loading="flowDetailLoading"> | 1767 | <div class="container_wrap" v-loading="flowDetailLoading"> |
| 1768 | <div class="content_main"> | 1768 | <div class="content_main"> |
| 1769 | <div v-if="detailType == 'detail' && flowDetail.bizApproveState" | 1769 | <div v-if="detailType == 'detail' && flowDetail.approveState" |
| 1770 | :class="['panel_wrap', 'results_panel', flowDetail.bizApproveState == 'Y' ? 'success' : ((flowDetail.bizApproveState == 'R' || flowDetail.bizApproveState == 'E') ? 'reject' : (flowDetail.bizApproveState == 'C' ? 'revoke' : 'audit'))]"> | 1770 | :class="['panel_wrap', 'results_panel', flowDetail.approveState == 'Y' ? 'success' : ((flowDetail.approveState == 'R' || flowDetail.approveState == 'E') ? 'reject' : (flowDetail.approveState == 'C' ? 'revoke' : 'audit'))]"> |
| 1771 | <div class="panel_header"> | 1771 | <div class="panel_header"> |
| 1772 | <div class="header_title" v-if="flowDetail.bizApproveState == 'Y'"> | 1772 | <div class="header_title" v-if="flowDetail.approveState == 'Y'"> |
| 1773 | <el-icon class="title-icon"> | 1773 | <el-icon class="title-icon"> |
| 1774 | <svg-icon name="icon-success" /> | 1774 | <svg-icon name="icon-success" /> |
| 1775 | </el-icon> | 1775 | </el-icon> |
| 1776 | <span class="title_text">审批通过</span> | 1776 | <span class="title_text">审批通过</span> |
| 1777 | </div> | 1777 | </div> |
| 1778 | <div class="header_title" v-else-if="flowDetail.bizApproveState == 'R'"> | 1778 | <div class="header_title" v-else-if="flowDetail.approveState == 'R'"> |
| 1779 | <el-icon class="title-icon"> | 1779 | <el-icon class="title-icon"> |
| 1780 | <CircleCloseFilled /> | 1780 | <CircleCloseFilled /> |
| 1781 | </el-icon> | 1781 | </el-icon> |
| 1782 | <span class="title_text">审批被驳回</span> | 1782 | <span class="title_text">审批被驳回</span> |
| 1783 | </div> | 1783 | </div> |
| 1784 | <div class="header_title" v-else-if="flowDetail.bizApproveState == 'E'"> | 1784 | <div class="header_title" v-else-if="flowDetail.approveState == 'E'"> |
| 1785 | <el-icon class="title-icon"> | 1785 | <el-icon class="title-icon"> |
| 1786 | <CircleCloseFilled /> | 1786 | <CircleCloseFilled /> |
| 1787 | </el-icon> | 1787 | </el-icon> |
| 1788 | <span class="title_text">审批发起失败</span> | 1788 | <span class="title_text">审批发起失败</span> |
| 1789 | </div> | 1789 | </div> |
| 1790 | <div class="header_title" v-else-if="flowDetail.bizApproveState == 'A'"> | 1790 | <div class="header_title" v-else-if="flowDetail.approveState == 'A'"> |
| 1791 | <el-icon class="title-icon"> | 1791 | <el-icon class="title-icon"> |
| 1792 | <svg-icon name="icon-audit" /> | 1792 | <svg-icon name="icon-audit" /> |
| 1793 | </el-icon> | 1793 | </el-icon> |
| 1794 | <span class="title_text">审批中</span> | 1794 | <span class="title_text">审批中</span> |
| 1795 | </div> | 1795 | </div> |
| 1796 | <div class="header_title" v-else-if="flowDetail.bizApproveState == 'C'"> | 1796 | <div class="header_title" v-else-if="flowDetail.approveState == 'C'"> |
| 1797 | <el-icon class="title-icon"> | 1797 | <el-icon class="title-icon"> |
| 1798 | <svg-icon name="icon-revoke" /> | 1798 | <svg-icon name="icon-revoke" /> |
| 1799 | </el-icon> | 1799 | </el-icon> |
| 1800 | <span class="title_text">已撤销</span> | 1800 | <span class="title_text">已撤销</span> |
| 1801 | </div> | 1801 | </div> |
| 1802 | </div> | 1802 | </div> |
| 1803 | <div class="panel_body" v-if="flowDetail.bizApproveState == 'R'"> | 1803 | <div class="panel_body" v-if="flowDetail.approveState == 'R'" style="padding: 0px 16px 10px;"> |
| 1804 | <div class="results_list"> | 1804 | <div class="results_list"> |
| 1805 | <div class="list_item"> | 1805 | <div class="list_item"> |
| 1806 | <span class="item_label">平台审批意见:</span> | 1806 | <span class="item_label">平台审批意见:</span> |
| ... | @@ -1808,7 +1808,7 @@ const rejectDialogBtnClick = (btn, info) => { | ... | @@ -1808,7 +1808,7 @@ const rejectDialogBtnClick = (btn, info) => { |
| 1808 | </div> | 1808 | </div> |
| 1809 | </div> | 1809 | </div> |
| 1810 | </div> | 1810 | </div> |
| 1811 | <div class="panel_body" v-if="flowDetail.bizApproveState == 'E'"> | 1811 | <div class="panel_body" v-if="flowDetail.approveState == 'E'" style="padding: 0px 16px 10px;"> |
| 1812 | <div class="results_list"> | 1812 | <div class="results_list"> |
| 1813 | <div class="list_item"> | 1813 | <div class="list_item"> |
| 1814 | <span class="item_label">失败原因:</span> | 1814 | <span class="item_label">失败原因:</span> | ... | ... |
-
Please register or sign in to post a comment