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,56 +1,22 @@
|
||||
<template>
|
||||
<el-dialog
|
||||
:title="$t('addCommunityWechat.title')"
|
||||
:visible.sync="visible"
|
||||
width="50%"
|
||||
@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-dialog :title="$t('addCommunityWechat.title')" :visible.sync="visible" width="50%" @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 label="APPID" prop="appId">
|
||||
<el-input
|
||||
v-model="form.appId"
|
||||
:placeholder="$t('addCommunityWechat.placeholder.appId')"
|
||||
/>
|
||||
<el-input v-model="form.appId" :placeholder="$t('addCommunityWechat.placeholder.appId')" />
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item
|
||||
:label="$t('addCommunityWechat.appSecret')"
|
||||
prop="appSecret"
|
||||
>
|
||||
<el-input
|
||||
v-model="form.appSecret"
|
||||
type="password"
|
||||
show-password
|
||||
:placeholder="$t('addCommunityWechat.placeholder.appSecret')"
|
||||
/>
|
||||
<el-form-item :label="$t('addCommunityWechat.appSecret')" prop="appSecret">
|
||||
<el-input v-model="form.appSecret" type="password" show-password
|
||||
:placeholder="$t('addCommunityWechat.placeholder.appSecret')" />
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item
|
||||
:label="$t('addCommunityWechat.description')"
|
||||
prop="remarks"
|
||||
>
|
||||
<el-input
|
||||
v-model="form.remarks"
|
||||
type="textarea"
|
||||
:placeholder="$t('addCommunityWechat.placeholder.remarks')"
|
||||
:rows="3"
|
||||
/>
|
||||
<el-form-item :label="$t('addCommunityWechat.description')" prop="remarks">
|
||||
<el-input v-model="form.remarks" type="textarea" :placeholder="$t('addCommunityWechat.placeholder.remarks')"
|
||||
:rows="3" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
<el-col :span="20">
|
||||
<el-card>
|
||||
<div slot="header" class="clearfix flex justify-between">
|
||||
<div slot="header" class=" flex justify-between">
|
||||
<span>{{ $t('communityMini.title') }}</span>
|
||||
<div class="header-tools">
|
||||
<el-button v-if="smallWeChats.length === 0 && conditions.communityId" type="primary" size="small"
|
||||
|
||||
@ -67,7 +67,7 @@ export const messages = {
|
||||
editSuccess: '修改成功'
|
||||
},
|
||||
addCommunityWechat: {
|
||||
title: '添加公众号',
|
||||
title: '添加',
|
||||
name: '名称',
|
||||
appId: 'APPID',
|
||||
appSecret: '应用密钥',
|
||||
|
||||
@ -15,7 +15,7 @@
|
||||
<el-row>
|
||||
<el-col :span="24">
|
||||
<el-card>
|
||||
<div slot="header">
|
||||
<div slot="header" class="flex justify-between">
|
||||
<span>{{ $t('transactionOutLog.queryCondition') }}</span>
|
||||
</div>
|
||||
<el-row :gutter="20">
|
||||
@ -40,7 +40,7 @@
|
||||
<el-row class="mt-20">
|
||||
<el-col :span="24">
|
||||
<el-card>
|
||||
<div slot="header">
|
||||
<div slot="header" class="flex justify-between">
|
||||
<span>{{ $t('transactionOutLog.logTitle') }}</span>
|
||||
</div>
|
||||
<el-table :data="logs" border style="width: 100%">
|
||||
|
||||
@ -35,8 +35,8 @@ export const messages = {
|
||||
name: '名称',
|
||||
appSecret: '应用密钥',
|
||||
remarks: '描述',
|
||||
addTitle: '添加小程序',
|
||||
editTitle: '修改小程序',
|
||||
addTitle: '添加',
|
||||
editTitle: '修改',
|
||||
deleteTitle: '请确认您的操作',
|
||||
deleteConfirm: '确定删除小程序管理吗?',
|
||||
namePlaceholder: '必填,请填写名称',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user