Commit 23c14c2e authored by gaia's avatar gaia

Merge remote-tracking branch 'origin/feature/20240918_1005_091801' into release_dev_20241031165056

parents f0100c31 536f350c
...@@ -38,11 +38,13 @@ ...@@ -38,11 +38,13 @@
<div>{{ itemContent.fansNum || '-' }}</div> <div>{{ itemContent.fansNum || '-' }}</div>
</el-form-item> </el-form-item>
</el-form> </el-form>
<div @click="handleToDetail">
<el-form ref="addInviteRef" label-width="200px" style="width: 30%"> <el-form ref="addInviteRef" label-width="200px" style="width: 30%">
<el-form-item label="已上架的商品:"> <el-form-item label="已上架的商品:" >
<div>{{ itemContent.uploadItemNum || '-' }}</div> <div>{{ itemContent.uploadItemNum || '-' }}</div>
</el-form-item> </el-form-item>
</el-form> </el-form>
</div>
</div> </div>
</el-card> </el-card>
...@@ -83,6 +85,7 @@ ...@@ -83,6 +85,7 @@
<el-table-column align="center" label="开户行" prop="bankName" /> <el-table-column align="center" label="开户行" prop="bankName" />
<el-table-column align="center" label="持卡人姓名" prop="name" /> <el-table-column align="center" label="持卡人姓名" prop="name" />
<el-table-column align="center" label="开店费" prop="openShopAmount" /> <el-table-column align="center" label="开店费" prop="openShopAmount" />
<el-table-column align="center" label="开店费" prop="guaranteeAmount" />
<!-- <el-table-column align="center" label="质保金" prop="itemPrice" /> --> <!-- <el-table-column align="center" label="质保金" prop="itemPrice" /> -->
</el-table> </el-table>
</div> </div>
...@@ -94,7 +97,7 @@ ...@@ -94,7 +97,7 @@
</div> </div>
<div class="user_info flex"> <div class="user_info flex">
<el-form ref="addInviteRef" label-width="100px" style="width: 30%"> <el-form ref="addInviteRef" label-width="100px" style="width: 30%">
<el-form-item label="备注:"> <el-form-item label="不通过原因:">
<div>{{ itemContent.remark || '-' }}</div> <div>{{ itemContent.remark || '-' }}</div>
</el-form-item> </el-form-item>
</el-form> </el-form>
...@@ -114,6 +117,7 @@ import Line2Hidden from '@/components/line2Hidden' ...@@ -114,6 +117,7 @@ import Line2Hidden from '@/components/line2Hidden'
import NoPassIdentifyDialog from './components/NoPassIdentifyDialog' import NoPassIdentifyDialog from './components/NoPassIdentifyDialog'
import ReturnLogisticIdentifyDialog from './components/ReturnLogisticIdentifyDialog' import ReturnLogisticIdentifyDialog from './components/ReturnLogisticIdentifyDialog'
import { shopManagerDetail, shopManagerCheck } from '@/api/business/shop' import { shopManagerDetail, shopManagerCheck } from '@/api/business/shop'
export default { export default {
name: 'ShopManagerDetail', name: 'ShopManagerDetail',
components: { ReturnLogisticIdentifyDialog, NoPassIdentifyDialog, Line2Hidden }, components: { ReturnLogisticIdentifyDialog, NoPassIdentifyDialog, Line2Hidden },
...@@ -138,6 +142,11 @@ export default { ...@@ -138,6 +142,11 @@ export default {
this.handleGetDetail() this.handleGetDetail()
}, },
methods: { methods: {
handleToDetail() {
if (this.itemContent.userId) {
this.$router.push({ path: '/user/userDetail', query: { id: this.itemContent.userId }})
}
},
handleGetDetail() { handleGetDetail() {
const params = { const params = {
openShopApplyOrderId: this.openShopApplyOrderId openShopApplyOrderId: this.openShopApplyOrderId
...@@ -149,6 +158,7 @@ export default { ...@@ -149,6 +158,7 @@ export default {
cardId: this.itemContent.cardId, cardId: this.itemContent.cardId,
bankName: this.itemContent.bankName, bankName: this.itemContent.bankName,
name: this.itemContent.name, name: this.itemContent.name,
guaranteeAmount: this.itemContent.guaranteeAmount,
openShopAmount: this.itemContent.openShopAmount, openShopAmount: this.itemContent.openShopAmount,
idCardFrontImage: this.itemContent.idCardFrontImage, idCardFrontImage: this.itemContent.idCardFrontImage,
idCardBackImage: this.itemContent.idCardBackImage idCardBackImage: this.itemContent.idCardBackImage
...@@ -234,14 +244,17 @@ export default { ...@@ -234,14 +244,17 @@ export default {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
padding: 0 10px 10px; padding: 0 10px 10px;
.detail_button { .detail_button {
text-align: end; text-align: end;
margin: 16px; margin: 16px;
} }
.title { .title {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
margin-bottom: 10px; margin-bottom: 10px;
.title_content { .title_content {
font-weight: 600; font-weight: 600;
font-size: 22px; font-size: 22px;
...@@ -249,6 +262,7 @@ export default { ...@@ -249,6 +262,7 @@ export default {
} }
} }
} }
.image_preview { .image_preview {
width: 60px; width: 60px;
height: 60px; height: 60px;
...@@ -256,6 +270,12 @@ export default { ...@@ -256,6 +270,12 @@ export default {
justify-content: center; justify-content: center;
} }
.table-td-thumb {
width: 60px;
height: 60px;
margin-right: 10px;
}
/deep/ .el-card__body { /deep/ .el-card__body {
padding: 12px; padding: 12px;
} }
...@@ -263,6 +283,7 @@ export default { ...@@ -263,6 +283,7 @@ export default {
/deep/ .el-form-item { /deep/ .el-form-item {
margin-bottom: 0; margin-bottom: 0;
} }
/deep/ .el-switch { /deep/ .el-switch {
height: 30px; height: 30px;
} }
......
...@@ -127,7 +127,6 @@ export default { ...@@ -127,7 +127,6 @@ export default {
}, },
created() { created() {
this.getList() this.getList()
this.getLogisticsList()
}, },
methods: { methods: {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment