|
|
@@ -256,16 +256,16 @@
|
|
|
</div>
|
|
|
<div class="normal-margin flex-align-center">
|
|
|
<div class="inline-16">
|
|
|
- <small><b>{{$t(`回签单`)}}</b> </small>
|
|
|
+ <small><b>{{$t(`回签单`)}}:</b> </small>
|
|
|
<el-radio-group v-model="signbackstatus">
|
|
|
- <el-radio label="不需要">{{$t(`不需要`)}}</el-radio>
|
|
|
- <el-radio label="纸质件">{{$t(`纸质件`)}}</el-radio>
|
|
|
- <el-radio label="扫描件">{{$t(`扫描件`)}}</el-radio>
|
|
|
+ <el-radio label="不需要" :style="{marginTop:windowWidth>1314?0:'10px'}">{{$t(`不需要`)}}</el-radio>
|
|
|
+ <el-radio label="纸质件" :style="{marginTop:windowWidth>1314?0:'10px'}">{{$t(`纸质件`)}}</el-radio>
|
|
|
+ <el-radio label="扫描件" :style="{marginTop:windowWidth>1314?0:'10px'}">{{$t(`扫描件`)}}</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
<div style="margin-left:20px">
|
|
|
<small><b>{{$t(`销售类别`)}}:</b> </small>
|
|
|
- <el-select v-model="saletype" size="small" :placeholder="$t('请选择')">
|
|
|
+ <el-select v-model="saletype" size="small" :placeholder="$t('请选择')" :style="{marginTop:windowWidth>1514?0:'10px'}">
|
|
|
<el-option
|
|
|
v-for="item in saleroptions"
|
|
|
:key="item.value"
|
|
|
@@ -277,6 +277,7 @@
|
|
|
<div style="margin-left:20px">
|
|
|
<small><b>{{$t(`单据日期`)}}:</b> </small>
|
|
|
<el-date-picker
|
|
|
+ :style="{marginTop:windowWidth>1514?0:'10px'}"
|
|
|
v-model="billdate"
|
|
|
size="small"
|
|
|
type="date"
|
|
|
@@ -312,7 +313,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="mt-10">
|
|
|
- <div>
|
|
|
+ <div style="margin-bottom: 10px">
|
|
|
<p class="normal-title inline-16">{{$t(`订单产品`)}}</p>
|
|
|
<!-- <el-button type="text" size="mini" @click="addMoreProduct">{{setcol === 12?'关闭选择':'添加产品'}}</el-button> -->
|
|
|
</div>
|
|
|
@@ -435,11 +436,21 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
addresstotal:0,
|
|
|
- enterpriseTotal:0
|
|
|
+ enterpriseTotal:0,
|
|
|
+ windowWidth: document.documentElement.clientWidth, //实时屏幕宽度
|
|
|
}
|
|
|
},
|
|
|
mounted () {
|
|
|
console.log(this.data);
|
|
|
+ var that = this;
|
|
|
+ // <!--把window.onresize事件挂在到mounted函数上-->
|
|
|
+ window.onresize = () => {
|
|
|
+ return (() => {
|
|
|
+ window.fullWidth = document.documentElement.clientWidth;
|
|
|
+ that.windowWidth = window.fullWidth; // 宽
|
|
|
+ console.log(that.windowWidth,'屏幕宽度')
|
|
|
+ })()
|
|
|
+ };
|
|
|
},
|
|
|
created () {
|
|
|
this.queryBasicInfo()
|