Commit 34a667c2 authored by 黄奎's avatar 黄奎

新增供应商备注

parent 987c10d3
...@@ -357,12 +357,22 @@ ...@@ -357,12 +357,22 @@
<td style="text-align:right;">备注:</td> <td style="text-align:right;">备注:</td>
<td> <td>
<el-input class='mt10' v-model='NumObj.remarkString' type='textarea'></el-input> <el-input class='mt10' v-model='NumObj.remarkString' type='textarea'></el-input>
<br />
</td> </td>
</tr> </tr>
<tr> <tr>
<td colspan="2"> <td colspan="2">
此备注会现在在组团团控列表. 此备注会带到组团团控列表.
</td>
</tr>
<tr>
<td style="text-align:right;">供应商备注:</td>
<td>
<el-input class='mt10' v-model='NumObj.SupplierRemarks' type='textarea'></el-input>
</td>
</tr>
<tr>
<td colspan="2">
此备注会带到供应商订房查询列表.
</td> </td>
</tr> </tr>
</table> </table>
...@@ -401,6 +411,9 @@ ...@@ -401,6 +411,9 @@
<div v-show="outItem.StaticsReportList[0].DMCRemark!=''" class="colorE95252" <div v-show="outItem.StaticsReportList[0].DMCRemark!=''" class="colorE95252"
style="padding-top:5px;padding-bottom:4px;">地接备注:{{outItem.StaticsReportList[index].DMCRemark}} style="padding-top:5px;padding-bottom:4px;">地接备注:{{outItem.StaticsReportList[index].DMCRemark}}
</div> </div>
<div v-show="outItem.StaticsReportList[0].SupplierRemarks!=''" class="colorE95252"
style="padding-top:5px;padding-bottom:4px;">对供应商备注:{{outItem.StaticsReportList[index].SupplierRemarks}}
</div>
</div> </div>
</td> </td>
</tr> </tr>
...@@ -446,6 +459,7 @@ ...@@ -446,6 +459,7 @@
DMCNum: "", DMCNum: "",
TCIDs: "", TCIDs: "",
remarkString: '', remarkString: '',
SupplierRemarks:''
}, },
queryCommonData: { queryCommonData: {
//公司数据 //公司数据
...@@ -487,6 +501,7 @@ ...@@ -487,6 +501,7 @@
this.NumObj.TCIDs = TCIDs; this.NumObj.TCIDs = TCIDs;
this.NumObj.remarkString = obj.DMCRemark; this.NumObj.remarkString = obj.DMCRemark;
this.NumObj.DMCNum = obj.DMCNum; this.NumObj.DMCNum = obj.DMCNum;
this.NumObj.SupplierRemarks=obj.SupplierRemarks;
}, },
saveRemark() { saveRemark() {
this.apipost('dmcstatistics_post_SetDMCRemark', this.NumObj, res => { this.apipost('dmcstatistics_post_SetDMCRemark', this.NumObj, res => {
...@@ -642,9 +657,9 @@ ...@@ -642,9 +657,9 @@
this.currentPage = 1; this.currentPage = 1;
}, },
getList() { getList() {
this.loading = true this.loading = true;
this.apipost('dmcstatistics_post_GetUniteCombinationNumService', this.msg, res => { this.apipost('dmcstatistics_post_GetUniteCombinationNumService', this.msg, res => {
this.loading = false this.loading = false;
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.total = res.data.data.count; this.total = res.data.data.count;
this.list = res.data.data.pageData.data; this.list = res.data.data.pageData.data;
......
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