mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-23 21:36:37 +08:00
v1.9 优化合同审核人无法选择问题
This commit is contained in:
parent
785aba4f60
commit
bfafa0a79f
@ -1,59 +1,25 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-dialog
|
<el-dialog :title="$t('addCommunityWechat.title')" :visible.sync="visible" width="50%" @close="handleClose">
|
||||||
:title="$t('addCommunityWechat.title')"
|
<el-form ref="form" :model="form" :rules="rules" label-width="120px" label-position="right">
|
||||||
:visible.sync="visible"
|
<el-form-item :label="$t('addCommunityWechat.name')" prop="name">
|
||||||
width="50%"
|
<el-input v-model="form.name" :placeholder="$t('addCommunityWechat.placeholder.name')" />
|
||||||
@close="handleClose"
|
|
||||||
>
|
|
||||||
<el-form
|
|
||||||
ref="form"
|
|
||||||
:model="form"
|
|
||||||
:rules="rules"
|
|
||||||
label-width="120px"
|
|
||||||
label-position="right"
|
|
||||||
>
|
|
||||||
<el-form-item
|
|
||||||
:label="$t('addCommunityWechat.name')"
|
|
||||||
prop="name"
|
|
||||||
>
|
|
||||||
<el-input
|
|
||||||
v-model="form.name"
|
|
||||||
:placeholder="$t('addCommunityWechat.placeholder.name')"
|
|
||||||
/>
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item label="APPID" prop="appId">
|
<el-form-item label="APPID" prop="appId">
|
||||||
<el-input
|
<el-input v-model="form.appId" :placeholder="$t('addCommunityWechat.placeholder.appId')" />
|
||||||
v-model="form.appId"
|
|
||||||
:placeholder="$t('addCommunityWechat.placeholder.appId')"
|
|
||||||
/>
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item
|
<el-form-item :label="$t('addCommunityWechat.appSecret')" prop="appSecret">
|
||||||
:label="$t('addCommunityWechat.appSecret')"
|
<el-input v-model="form.appSecret" type="password" show-password
|
||||||
prop="appSecret"
|
:placeholder="$t('addCommunityWechat.placeholder.appSecret')" />
|
||||||
>
|
|
||||||
<el-input
|
|
||||||
v-model="form.appSecret"
|
|
||||||
type="password"
|
|
||||||
show-password
|
|
||||||
:placeholder="$t('addCommunityWechat.placeholder.appSecret')"
|
|
||||||
/>
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item
|
<el-form-item :label="$t('addCommunityWechat.description')" prop="remarks">
|
||||||
:label="$t('addCommunityWechat.description')"
|
<el-input v-model="form.remarks" type="textarea" :placeholder="$t('addCommunityWechat.placeholder.remarks')"
|
||||||
prop="remarks"
|
:rows="3" />
|
||||||
>
|
|
||||||
<el-input
|
|
||||||
v-model="form.remarks"
|
|
||||||
type="textarea"
|
|
||||||
:placeholder="$t('addCommunityWechat.placeholder.remarks')"
|
|
||||||
:rows="3"
|
|
||||||
/>
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
<div slot="footer" class="dialog-footer">
|
<div slot="footer" class="dialog-footer">
|
||||||
<el-button @click="visible = false">
|
<el-button @click="visible = false">
|
||||||
{{ $t('communityWechat.cancel') }}
|
{{ $t('communityWechat.cancel') }}
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<el-col :span="20">
|
<el-col :span="20">
|
||||||
<el-card>
|
<el-card>
|
||||||
<div slot="header" class="clearfix flex justify-between">
|
<div slot="header" class=" flex justify-between">
|
||||||
<span>{{ $t('communityMini.title') }}</span>
|
<span>{{ $t('communityMini.title') }}</span>
|
||||||
<div class="header-tools">
|
<div class="header-tools">
|
||||||
<el-button v-if="smallWeChats.length === 0 && conditions.communityId" type="primary" size="small"
|
<el-button v-if="smallWeChats.length === 0 && conditions.communityId" type="primary" size="small"
|
||||||
|
|||||||
@ -67,7 +67,7 @@ export const messages = {
|
|||||||
editSuccess: '修改成功'
|
editSuccess: '修改成功'
|
||||||
},
|
},
|
||||||
addCommunityWechat: {
|
addCommunityWechat: {
|
||||||
title: '添加公众号',
|
title: '添加',
|
||||||
name: '名称',
|
name: '名称',
|
||||||
appId: 'APPID',
|
appId: 'APPID',
|
||||||
appSecret: '应用密钥',
|
appSecret: '应用密钥',
|
||||||
|
|||||||
@ -15,7 +15,7 @@
|
|||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-card>
|
<el-card>
|
||||||
<div slot="header">
|
<div slot="header" class="flex justify-between">
|
||||||
<span>{{ $t('transactionOutLog.queryCondition') }}</span>
|
<span>{{ $t('transactionOutLog.queryCondition') }}</span>
|
||||||
</div>
|
</div>
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
@ -40,7 +40,7 @@
|
|||||||
<el-row class="mt-20">
|
<el-row class="mt-20">
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-card>
|
<el-card>
|
||||||
<div slot="header">
|
<div slot="header" class="flex justify-between">
|
||||||
<span>{{ $t('transactionOutLog.logTitle') }}</span>
|
<span>{{ $t('transactionOutLog.logTitle') }}</span>
|
||||||
</div>
|
</div>
|
||||||
<el-table :data="logs" border style="width: 100%">
|
<el-table :data="logs" border style="width: 100%">
|
||||||
|
|||||||
@ -35,8 +35,8 @@ export const messages = {
|
|||||||
name: '名称',
|
name: '名称',
|
||||||
appSecret: '应用密钥',
|
appSecret: '应用密钥',
|
||||||
remarks: '描述',
|
remarks: '描述',
|
||||||
addTitle: '添加小程序',
|
addTitle: '添加',
|
||||||
editTitle: '修改小程序',
|
editTitle: '修改',
|
||||||
deleteTitle: '请确认您的操作',
|
deleteTitle: '请确认您的操作',
|
||||||
deleteConfirm: '确定删除小程序管理吗?',
|
deleteConfirm: '确定删除小程序管理吗?',
|
||||||
namePlaceholder: '必填,请填写名称',
|
namePlaceholder: '必填,请填写名称',
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user