mirror of
https://gitee.com/ShopeX/ECShopX_admin-frontend
synced 2026-08-05 12:35:51 +08:00
v4.5.0
This commit is contained in:
@@ -444,17 +444,17 @@ export default {
|
||||
},
|
||||
{
|
||||
label: this.$t('77050e4f.d64589'),
|
||||
component: () => <span>{this.addForm.bank_name || '-'}</span>
|
||||
component: () => <span>{this.addForm.bank_name || '-'}</span>,
|
||||
},
|
||||
{
|
||||
label: this.$t('77050e4f.27d6ee'),
|
||||
key: 'bank_name',
|
||||
component: () => <span>{this.addForm.bank_account_no || '-'}</span>
|
||||
component: () => <span>{this.addForm.bank_account_no || '-'}</span>,
|
||||
},
|
||||
{
|
||||
label: this.$t('77050e4f.efce56'),
|
||||
key: 'china_ums_no',
|
||||
component: () => <span>{this.addForm.china_ums_no || '-'}</span>
|
||||
component: () => <span>{this.addForm.china_ums_no || '-'}</span>,
|
||||
},
|
||||
|
||||
{
|
||||
|
||||
@@ -228,7 +228,11 @@
|
||||
</el-table-column>
|
||||
<el-table-column width="120" :label="$t('9cc0c982.eb4307')">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.use_all_shops == 1 ? $t('9cc0c982.77678b') : $t('9cc0c982.fcf7d8') }}
|
||||
{{
|
||||
scope.row.use_all_shops == 1
|
||||
? $t('9cc0c982.77678b')
|
||||
: $t('9cc0c982.fcf7d8')
|
||||
}}
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
@@ -167,7 +167,10 @@
|
||||
>
|
||||
{{ $t('ff141a64.3ae7e4') }}
|
||||
</el-button>
|
||||
<span v-if="scope.row.status == 'waiting'" class="pluspricebuy-waiting-actions">
|
||||
<span
|
||||
v-if="scope.row.status == 'waiting'"
|
||||
class="pluspricebuy-waiting-actions"
|
||||
>
|
||||
<i
|
||||
class="el-icon-edit-outline"
|
||||
@click="editActivityAction(scope.$index, scope.row)"
|
||||
|
||||
@@ -42,7 +42,11 @@
|
||||
<div v-if="hasRegisterJumpPath" class="link-content border px-2">
|
||||
<span @click="handleGoodsChange()">{{ registerJumpPathSummary }}</span>
|
||||
<span style="margin-left: 10px">
|
||||
<i style="color: #f56c6c" class="el-icon-delete" @click.stop="clear_pic_url" />
|
||||
<i
|
||||
style="color: #f56c6c"
|
||||
class="el-icon-delete"
|
||||
@click.stop="clear_pic_url"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
<div
|
||||
|
||||
@@ -6,45 +6,22 @@
|
||||
<template>
|
||||
<SpPage>
|
||||
<SpRouterView>
|
||||
<SpFormPlus
|
||||
v-model="formData"
|
||||
form-type="searchForm"
|
||||
:form-items="formItems"
|
||||
@submit="onSearch"
|
||||
@reset="onSearch"
|
||||
:inline="true"
|
||||
/>
|
||||
<SpFormPlus v-model="formData" form-type="searchForm" :form-items="formItems" @submit="onSearch" @reset="onSearch"
|
||||
:inline="true" />
|
||||
|
||||
<div class="action-container mt-5">
|
||||
<el-button type="primary" icon="plus" @click="showEditModal('')">
|
||||
{{ $t('f06fa37c.66ab5e') }}
|
||||
{{
|
||||
$t('f06fa37c.66ab5e')
|
||||
}}
|
||||
</el-button>
|
||||
</div>
|
||||
|
||||
<SpFinder
|
||||
ref="finder"
|
||||
url="/wxexternalconfig/list"
|
||||
no-selection
|
||||
:setting="setting"
|
||||
:hooks="{ beforeSearch: beforeSearch }"
|
||||
border
|
||||
/>
|
||||
<SpFinder ref="finder" url="/wxexternalconfig/list" no-selection :setting="setting"
|
||||
:hooks="{ beforeSearch: beforeSearch }" border />
|
||||
|
||||
<el-dialog
|
||||
class="modal"
|
||||
width="30%"
|
||||
:title="modalTitle"
|
||||
:visible="showModal"
|
||||
@close="closeModal"
|
||||
>
|
||||
<el-form
|
||||
ref="editForm"
|
||||
label-suffix=":"
|
||||
label-width="120px"
|
||||
class="form"
|
||||
:rules="rules"
|
||||
:model="editInfo"
|
||||
>
|
||||
<el-dialog class="modal" width="30%" :title="modalTitle" :visible="showModal" @close="closeModal">
|
||||
<el-form ref="editForm" label-suffix=":" label-width="120px" class="form" :rules="rules" :model="editInfo">
|
||||
<el-form-item :label="$t('f06fa37c.d34f1f')" prop="app_name">
|
||||
<el-input v-model="editInfo.app_name" />
|
||||
</el-form-item>
|
||||
@@ -52,15 +29,8 @@
|
||||
<el-input v-model="editInfo.app_id" />
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('f06fa37c.3bdd08')">
|
||||
<el-input
|
||||
v-model="editInfo.app_desc"
|
||||
type="textarea"
|
||||
:placeholder="$t('f06fa37c.d51187')"
|
||||
resize="none"
|
||||
maxlength="30"
|
||||
show-word-limit
|
||||
:rows="3"
|
||||
/>
|
||||
<el-input v-model="editInfo.app_desc" type="textarea" :placeholder="$t('f06fa37c.d51187')" resize="none"
|
||||
maxlength="30" show-word-limit :rows="3" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div class="btns">
|
||||
|
||||
@@ -166,11 +166,7 @@ export default {
|
||||
EMAIL_SENDER: this.strField(d, 'EMAIL_SENDER'),
|
||||
EMAIL_USER: this.strField(d, 'EMAIL_USER'),
|
||||
EMAIL_PASSWORD: this.strField(d, 'EMAIL_PASSWORD'),
|
||||
EMAIL_ACTIVATION_H5_DOMAIN: this.strField(
|
||||
d,
|
||||
'EMAIL_ACTIVATION_H5_DOMAIN',
|
||||
'EMAIL_H5_ACTIVATE_DOMAIN'
|
||||
),
|
||||
EMAIL_ACTIVATION_H5_DOMAIN: this.strField(d, 'EMAIL_ACTIVATION_H5_DOMAIN', 'EMAIL_H5_ACTIVATE_DOMAIN'),
|
||||
EMAIL_ACTIVATION_PC_DOMAIN: this.strField(d, 'EMAIL_ACTIVATION_PC_DOMAIN')
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user