Commit f304a9b6 authored by chenwei's avatar chenwei

Merge branch 'pre-release' of...

Merge branch 'pre-release' of http://110.41.143.128:8081/lanbaoming/jiedao-app-operator-master into pre-release
parents d9425a83 a4f27d92
...@@ -739,19 +739,19 @@ ...@@ -739,19 +739,19 @@
</el-form> </el-form>
</el-card> </el-card>
<el-form ref="setForm" label-width="150px"> <el-card class="box-card" style="margin-top: 15px;">
<el-card class="box-card" style="margin-top: 15px;"> <div slot="header" class="clearfix">
<div slot="header" class="clearfix"> <span class="title-text">{{ $t('设置') }}</span>
<span class="title-text">{{ $t('设置') }}</span> <el-button
<el-button style="float: right"
style="float: right" size="small"
size="small" type="primary"
type="primary" @click="showSettingFlag = !showSettingFlag"
@click="showSettingFlag = !showSettingFlag" >{{showSettingFlag ? $t('隐藏') : $t('更多')}}</el-button
>{{showSettingFlag ? $t('隐藏') : $t('更多')}}</el-button >
> </div>
</div> <el-form ref="setForm" label-width="150px" v-if="showSettingFlag">
<el-row :gutter="10" v-if="showSettingFlag"> <el-row :gutter="10">
<el-col :span="12"> <el-col :span="12">
<el-form-item :label="$t('是否显示提单价格')" prop="isShowTidanPrice"> <el-form-item :label="$t('是否显示提单价格')" prop="isShowTidanPrice">
<el-switch v-model="form.isShowTidanPrice"></el-switch> <el-switch v-model="form.isShowTidanPrice"></el-switch>
...@@ -834,20 +834,22 @@ ...@@ -834,20 +834,22 @@
</el-col> </el-col>
</el-row> </el-row>
</el-card> </el-form>
</el-card>
<el-card class="box-card" style="margin-top: 15px;"> <el-card class="box-card" style="margin-top: 15px;">
<div slot="header" class="clearfix"> <div slot="header" class="clearfix">
<span class="title-text">{{ $t('财务') }}</span> <span class="title-text">{{ $t('财务') }}</span>
<el-button <el-button
style="float: right" style="float: right"
size="small" size="small"
type="primary" type="primary"
@click="showFinanceFlag = !showFinanceFlag" @click="showFinanceFlag = !showFinanceFlag"
>{{showFinanceFlag ? $t('隐藏') : $t('更多')}}</el-button >{{showFinanceFlag ? $t('隐藏') : $t('更多')}}</el-button
> >
</div> </div>
<el-row :gutter="10" v-if="showFinanceFlag"> <el-form ref="financeForm" label-width="150px" v-if="showFinanceFlag">
<el-row :gutter="10">
<el-col :span="12"> <el-col :span="12">
<el-form-item :label="$t('公司名称')" prop="company"> <el-form-item :label="$t('公司名称')" prop="company">
<el-input <el-input
...@@ -905,8 +907,7 @@ ...@@ -905,8 +907,7 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<h3>{{$t('开票信息')}}</h3> <h3 style="font-size: 15px;">{{$t('开票信息')}}</h3>
<el-col :span="12"> <el-col :span="12">
<el-form-item :label="$t('发票抬头')" prop="invoiceTitle"> <el-form-item :label="$t('发票抬头')" prop="invoiceTitle">
<el-input <el-input
...@@ -974,22 +975,19 @@ ...@@ -974,22 +975,19 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
</el-card> </el-form>
</el-form>
<el-card class="box-card" style="margin-top: 15px;"> <el-form ref="bankForm" :model="form" v-if="showFinanceFlag">
<div slot="header" class="clearfix"> <el-row type="flex" class="row-bg" justify="space-between">
<span class="title-text">{{ $t("银行信息") }}</span> <span style="font-size: 15px; line-height: 30px">{{$t('银行信息')}}</span>
<el-button <el-button
style="float: right" size="small"
size="small" type="primary"
type="primary" @click="addBankData"
@click="addBankData" >+</el-button
>+</el-button >
> </el-row>
</div> <el-table border :data="form.customerBanks" style="margin-top: 10px">
<el-form ref="bankForm" :model="form">
<el-table border :data="form.customerBanks">
<el-table-column <el-table-column
:label="$t('序号')" :label="$t('序号')"
type="index" type="index"
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
:visible.sync="visible" :visible.sync="visible"
width="80%"> width="80%">
<div style="display: flex;flex-wrap: wrap;"> <div style="display: flex;flex-wrap: wrap;">
<el-image style="width: 200px;height: 200px;margin-right: 10px;margin-bottom: 10px" v-for="(item) in list" :src="bizId ? item.url : item"> <el-image style="width: 200px;height: 200px;margin-right: 10px;margin-bottom: 10px" v-for="(item) in list" :src="bizId ? item.url : item" :preview-src-list="[bizId ? item.url : item]">
<video controls width="148px" height="148px" slot="error" :src="bizId ? item.url : item" ></video> <video controls width="148px" height="148px" slot="error" :src="bizId ? item.url : item" ></video>
</el-image> </el-image>
</div> </div>
......
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