Commit b0ca9b52 by 李少勇

Merge branch 'settle-test-20230110' of http://114.115.138.98:8900/fukai/vue-gjjs…

Merge branch 'settle-test-20230110' of http://114.115.138.98:8900/fukai/vue-gjjs into settle-test-20230110
parents 53139194 40b615d1
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
"bignumber.js": "^9.0.1", "bignumber.js": "^9.0.1",
"cluster": "^0.7.7", "cluster": "^0.7.7",
"core-js": "^3.6.4", "core-js": "^3.6.4",
"docx-preview": "^0.1.15",
"echarts": "^5.2.2", "echarts": "^5.2.2",
"element-ui": "^2.13.2", "element-ui": "^2.13.2",
"es6-promise": "^4.2.8", "es6-promise": "^4.2.8",
......
...@@ -387,8 +387,15 @@ ...@@ -387,8 +387,15 @@
<c-col>&nbsp;</c-col> <c-col>&nbsp;</c-col>
<c-col :span="12" v-if="title != 'MT799'"> <c-col :span="12" v-if="title != 'MT799'">
<el-form-item label="地址修改" label-width="120px"> <el-form-item
<el-input type="textarea" v-model="dialog.adrblk" :rows="4" /> label="地址修改"
label-width="120px"
>
<el-input
type="textarea"
v-model="dialog.adrblk"
:rows="4"
/>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="12" v-else> <c-col :span="12" v-else>
...@@ -412,28 +419,38 @@ ...@@ -412,28 +419,38 @@
empty-text=" " empty-text=" "
max-height="430px" max-height="430px"
> >
<el-table-column label="报文类型" sortable> </el-table-column> <el-table-column label="报文类型" sortable>
<el-table-column label="地址" sortable> </el-table-column> </el-table-column>
<el-table-column label="Authentication" sortable> <el-table-column label="地址" sortable>
</el-table-column>
<el-table-column
label="Authentication"
sortable
>
</el-table-column> </el-table-column>
</el-table> </el-table>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col v-if="title != 'MT799'" <c-col v-if="title != 'MT799'"
><el-form-item label="面函日期"> ><el-form-item label="面函日期">
<el-date-picker type="date" v-model="dialog.docdat"> <el-date-picker
type="date"
v-model="dialog.docdat"
>
</el-date-picker </el-date-picker
></el-form-item> ></el-form-item>
</c-col> </c-col>
<c-col v-if="this.suppress != true" <c-col v-if="this.suppress!=true"
><el-form-item label="Contact" ><el-form-item label="Contact"
><el-input v-model="dialog.ptcnam" ><el-input v-model="dialog.ptcnam"
/></el-form-item> /></el-form-item>
</c-col> </c-col>
<c-col :span="22" v-if="this.suppress != true" <c-col :span="22" v-if="this.suppress!=true"
><el-form-item ><el-form-item
:label=" :label="
title == 'MT799' ? 'Sender to Rec. information' : 'Remark' title == 'MT799'
? 'Sender to Rec. information'
: 'Remark'
" "
> >
<div v-if="title == 'MT799'"> <div v-if="title == 'MT799'">
...@@ -453,30 +470,28 @@ ...@@ -453,30 +470,28 @@
</div> </div>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="2" v-if="this.suppress != true"> <c-col :span="2" v-if="this.suppress!=true">
<c-button size="mini" icon="el-icon-more"> </c-button> <c-button size="mini" icon="el-icon-more"> </c-button>
</c-col> </c-col>
</c-row> </c-row>
</el-form> </el-form>
<template #footer> <template #footer>
<span class="dialog-footer"> <span class="dialog-footer">
<c-button type="primary" @click="saveDialog">确 定</c-button> <c-button type="primary" @click="saveDialog"
<c-button >确 定</c-button
type="primary" >
@click="activateDialog" <c-button type="primary" @click="activateDialog" v-if="dialog.delflg=='D'"
v-if="dialog.delflg == 'D'"
>应用</c-button >应用</c-button
> >
<c-button <c-button type="primary" @click="suppressDialog" v-else-if="dialog.lev=='1'||dialog.mliflg!=''"
type="primary"
@click="suppressDialog"
v-else-if="dialog.lev == '1' || dialog.mliflg != ''"
>禁用</c-button >禁用</c-button
> >
<c-button type="primary" @click="activateDialog" v-else <c-button type="primary" @click="activateDialog" v-else
>删除</c-button >删除</c-button
> >
<c-button @click="centerDialogVisible = false">取 消</c-button> <c-button @click="centerDialogVisible = false"
>取 消</c-button
>
</span> </span>
</template> </template>
</el-dialog> </el-dialog>
...@@ -484,10 +499,10 @@ ...@@ -484,10 +499,10 @@
</div> </div>
</template> </template>
<script> <script>
import commonProcess from '~/mixin/commonProcess'; import commonProcess from "~/mixin/commonProcess";
import Api from '~/service/Api'; import Api from "~/service/Api";
import Utils from '~/utils/index'; import Utils from "~/utils/index";
import DocUtils from '~/utils/DocUtils'; import DocUtils from "~/utils/DocUtils";
export default { export default {
inject: ['root'], inject: ['root'],
props: ['model', 'codes'], props: ['model', 'codes'],
......
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