Commit 12914fc0 authored by liudong1993's avatar liudong1993

1 销售端 订单增加 小包团

parent f05fd138
...@@ -79,6 +79,7 @@ ...@@ -79,6 +79,7 @@
<th>汇率类型</th> <th>汇率类型</th>
<th>金蝶币别名</th> <th>金蝶币别名</th>
<th>金蝶币别代码</th> <th>金蝶币别代码</th>
<th>金蝶汇率</th>
<th width="150px">操作</th> <th width="150px">操作</th>
</tr> </tr>
<tr v-for="(item,index) in dataList" :key="index"> <tr v-for="(item,index) in dataList" :key="index">
...@@ -88,6 +89,7 @@ ...@@ -88,6 +89,7 @@
<td style="white-space: warp;"> <td style="white-space: warp;">
{{item.Code}} {{item.Code}}
</td> </td>
<td>{{item.Rate}}</td>
<td width="150px"> <td width="150px">
<div style="padding: 3px 0;"> <div style="padding: 3px 0;">
<el-tooltip class="item" effect="dark" content="编辑" placement="top-start"> <el-tooltip class="item" effect="dark" content="编辑" placement="top-start">
...@@ -142,6 +144,11 @@ ...@@ -142,6 +144,11 @@
<el-input v-model="addMsg.Code" clearable></el-input> <el-input v-model="addMsg.Code" clearable></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="5">
<el-form-item label="金蝶汇率" prop="Rate">
<el-input v-model="addMsg.Rate" clearable></el-input>
</el-form-item>
</el-col>
</el-row> </el-row>
</el-form> </el-form>
</div> </div>
...@@ -178,6 +185,11 @@ ...@@ -178,6 +185,11 @@
required: true, required: true,
message: '请输入金蝶币别代码', message: '请输入金蝶币别代码',
trigger: 'blur' trigger: 'blur'
}],
Rate: [{
required: true,
message: '请输入金蝶汇率',
trigger: 'blur'
}] }]
}, },
addMsg: { addMsg: {
...@@ -187,6 +199,7 @@ ...@@ -187,6 +199,7 @@
RateType: '', RateType: '',
Name: '', Name: '',
Code: '', Code: '',
Rate: ''
}, },
addShow: false, addShow: false,
titleType: 2, titleType: 2,
...@@ -298,6 +311,7 @@ ...@@ -298,6 +311,7 @@
RateType: '', RateType: '',
Name: '', Name: '',
Code: '', Code: '',
Rate: ''
} }
if (!t) { if (!t) {
this.addShow = false this.addShow = false
...@@ -312,6 +326,7 @@ ...@@ -312,6 +326,7 @@
RateType: '', RateType: '',
Name: '', Name: '',
Code: '', Code: '',
Rate: ''
} }
this.addMsg = msg; this.addMsg = msg;
}, },
......
...@@ -1710,7 +1710,7 @@ ...@@ -1710,7 +1710,7 @@
font-weight: bold; font-weight: bold;
"> ">
{{ tuanInfo.config && tuanInfo.config.LtName }}&nbsp;&nbsp;{{ {{ tuanInfo.config && tuanInfo.config.LtName }}&nbsp;&nbsp;{{
tuanInfo.config && tuanInfo.config.TCNUM tuanInfo.config && (tuanInfo.config.TCNUM+ (tuanInfo.config.TeamType == 1 ?"(小包团)":""))
}}&nbsp;&nbsp;<span style=" }}&nbsp;&nbsp;<span style="
padding: 2px 5px; padding: 2px 5px;
font-weight: normal; font-weight: normal;
......
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