优化进件查询
This commit is contained in:
BIN
src/assets/applocation/fxpz.png
Normal file
BIN
src/assets/applocation/fxpz.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.0 KiB |
@@ -57,7 +57,7 @@ export const newMenus = [
|
||||
},
|
||||
{
|
||||
name: "分享配置",
|
||||
icon: "sppt",
|
||||
icon: "fxpz",
|
||||
pathName: "share_setting",
|
||||
intro: "商家可配置用户分享后可获得的奖励"
|
||||
},
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="gyq_container">
|
||||
<div class="gyq_content">
|
||||
<HeaderCard name="分享配置" intro="商家可配置用户分享后可获得的奖励" icon="sppt">
|
||||
<HeaderCard name="分享配置" intro="商家可配置用户分享后可获得的奖励" icon="fxpz">
|
||||
</HeaderCard>
|
||||
<div class="row mt14">
|
||||
<tabHeader v-model="tabActiveIndex" :list="tabList" />
|
||||
|
||||
@@ -24,24 +24,34 @@
|
||||
</el-form-item>
|
||||
<el-form-item label="支付宝进件状态">
|
||||
<div class="column">
|
||||
<el-text :type="statusListFilter(form.alipayStatus).type">
|
||||
{{ statusListFilter(form.alipayStatus).label }}
|
||||
</el-text>
|
||||
<div>
|
||||
<el-text :type="statusListFilter(form.alipayStatus).type">
|
||||
{{ statusListFilter(form.alipayStatus).label }}
|
||||
</el-text>
|
||||
</div>
|
||||
<div class="center" v-if="form.alipayStatus == 'SIGN'">
|
||||
<el-text>待签约</el-text>
|
||||
<el-link type="primary" @click="singCodeDialogRef?.show(form.alipaySignUrl, 1)">查看签约码</el-link>
|
||||
</div>
|
||||
<div class="error_text" v-if="form.alipayStatus == 'REJECTED'">
|
||||
失败原因:{{ form.alipayErrorMsg }}
|
||||
</div>
|
||||
</div>
|
||||
</el-form-item>
|
||||
<el-form-item label="微信进件状态">
|
||||
<div class="column">
|
||||
<el-text :type="statusListFilter(form.wechatStatus).type">
|
||||
{{ statusListFilter(form.wechatStatus).label }}
|
||||
</el-text>
|
||||
<div>
|
||||
<el-text :type="statusListFilter(form.wechatStatus).type">
|
||||
{{ statusListFilter(form.wechatStatus).label }}
|
||||
</el-text>
|
||||
</div>
|
||||
<div class="center" v-if="form.wechatStatus == 'SIGN'">
|
||||
<el-text>待签约</el-text>
|
||||
<el-link type="primary" @click="singCodeDialogRef?.show(form.wechatSignUrl, 2)">查看签约码</el-link>
|
||||
</div>
|
||||
<div class="error_text" v-if="form.wechatStatus == 'REJECTED'">
|
||||
失败原因:{{ form.wechatErrorMsg }}
|
||||
</div>
|
||||
</div>
|
||||
</el-form-item>
|
||||
<el-form-item label="最后提交时间">
|
||||
@@ -77,7 +87,7 @@
|
||||
<script setup>
|
||||
import { ref, onMounted } from 'vue'
|
||||
import { useRoute, useRouter } from 'vue-router';
|
||||
import { shopMerchantGet, getMainMerchant, shopMerchantPut, entryManagerDetail } from '@/api/common'
|
||||
import { shopMerchantGet, getMainMerchant, shopMerchantPut, entryManagerDetail, queryEntry } from '@/api/common'
|
||||
import singCodeDialog from '@/views/applyments/components/singCodeDialog.vue';
|
||||
|
||||
const singCodeDialogRef = ref(null)
|
||||
@@ -322,4 +332,9 @@ onMounted(() => {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.error_text {
|
||||
font-size: 14px;
|
||||
color: #999;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user