Commit 99b731f9 authored by dragondean@qq.com's avatar dragondean@qq.com

几个bug

parent 90a2e040
...@@ -17972,8 +17972,9 @@ UE.plugins['video'] = function (){ ...@@ -17972,8 +17972,9 @@ UE.plugins['video'] = function (){
tmpCell.rowSpan = tmpCell.colSpan = 1; tmpCell.rowSpan = tmpCell.colSpan = 1;
} }
//去掉宽高 //去掉宽高
/* @ 20221223 dragondean
!keepPro && domUtils.removeAttributes(tmpCell,'width height'); !keepPro && domUtils.removeAttributes(tmpCell,'width height');
!keepPro && domUtils.removeAttributes(tmpCell,'style'); !keepPro && domUtils.removeAttributes(tmpCell,'style'); */
tmpCell.style.borderLeftStyle = ""; tmpCell.style.borderLeftStyle = "";
tmpCell.style.borderTopStyle = ""; tmpCell.style.borderTopStyle = "";
...@@ -18232,12 +18233,13 @@ UE.plugins['video'] = function (){ ...@@ -18232,12 +18233,13 @@ UE.plugins['video'] = function (){
}; };
} }
//给第一行设置firstRow的样式名称,在排序图标的样式上使用到 //给第一行设置firstRow的样式名称,在排序图标的样式上使用到
/* @ 20221223 dragondean
if(!domUtils.hasClass(this.table.rows[0], "firstRow")) { if(!domUtils.hasClass(this.table.rows[0], "firstRow")) {
domUtils.addClass(this.table.rows[0], "firstRow"); domUtils.addClass(this.table.rows[0], "firstRow11111");
for(var i = 1; i< this.table.rows.length; i++) { for(var i = 1; i< this.table.rows.length; i++) {
domUtils.removeClasses(this.table.rows[i], "firstRow"); domUtils.removeClasses(this.table.rows[i], "firstRow22222");
}
} }
} */
}, },
/** /**
* 获取单元格的索引信息 * 获取单元格的索引信息
...@@ -140,7 +140,7 @@ ...@@ -140,7 +140,7 @@
} }
} }
} }
pre { .my-process-designer pre {
margin: 0; margin: 0;
height: 100%; height: 100%;
overflow: hidden; overflow: hidden;
......
...@@ -22,8 +22,8 @@ ...@@ -22,8 +22,8 @@
</el-descriptions> </el-descriptions>
<el-button type="primary" @click="ShowLandingBill=true">查看提单</el-button> <el-button type="primary" @click="ShowLandingBill=true">查看提单</el-button>
<el-dialog title="查看提单" :visible.sync="ShowLandingBill"> <el-dialog title="查看提单" :visible.sync="ShowLandingBill" width="1000px">
<div style="text-align:center; width: 600px; margin: auto" v-html="billContent" /> <div style="text-align:center; width: 960px; margin: auto" v-html="billContent" />
</el-dialog> </el-dialog>
</div> </div>
</template> </template>
......
...@@ -22,7 +22,22 @@ ...@@ -22,7 +22,22 @@
<el-descriptions-item :label="$t('申请理由')" :span="4"> <el-descriptions-item :label="$t('申请理由')" :span="4">
<div> <div>
<div v-for="(item, index) in order.applyInfoList" :key="index"> <div v-for="(item, index) in order.applyInfoList" :key="index">
{{index+1}}{{item.name}} {{$t('从旧的【{orgValue}】改成新的【{newValue}', {orgValue: item.orgValue, newValue: item.newValue })}} {{index+1}}{{item.name}}
<template v-if="item.type != 1">{{$t('从旧的【{orgValue}】改成新的【{newValue}', {orgValue: item.orgValue, newValue: item.newValue })}}</template>
<div v-else class="pl-30">
<div>
{{$t('旧值')}}<div v-if="!item.orgExternalWarehouse" class="pl-30">{{$t('')}}</div>
</div>
<div v-for="it in item.orgExternalWarehouse" class="pl-30">
{{$t('时间')}}{{it.estLoadingTime}}{{$t('地址')}}{{it.loadingAddress}}
</div>
<div>
{{$t('新值')}}<template v-if="!item.newExternalWarehouse">{{$t('')}}</template>
</div>
<div v-for="it in item.newExternalWarehouse" class="pl-30">
{{$t('时间')}}{{it.estLoadingTime}}{{$t('地址')}}{{it.loadingAddress}}
</div>
</div>
</div> </div>
</div> </div>
</el-descriptions-item> </el-descriptions-item>
......
...@@ -326,7 +326,7 @@ ...@@ -326,7 +326,7 @@
<el-date-picker v-model="item.estLoadingTime" value-format="yyyy-MM-dd HH:mm:ss" class="w-200"></el-date-picker> <el-date-picker v-model="item.estLoadingTime" value-format="yyyy-MM-dd HH:mm:ss" class="w-200"></el-date-picker>
</el-form-item> </el-form-item>
</div> </div>
<div class="w-300"> <div class="w-500">
<el-form-item :label="$t('装货地址')" <el-form-item :label="$t('装货地址')"
:prop="'externalWarehouseDtoList.' + index + '.loadingAddress'" :prop="'externalWarehouseDtoList.' + index + '.loadingAddress'"
:rules="{ :rules="{
......
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