Commit aec7b209 by 蒋勇

d

parent 345a31ea
...@@ -5,7 +5,7 @@ module.exports={ ...@@ -5,7 +5,7 @@ module.exports={
{"width":"100","label":"买方姓名 ","prop":"user_name","isShowTip":true,"isTmpl":false}, {"width":"100","label":"买方姓名 ","prop":"user_name","isShowTip":true,"isTmpl":false},
{"width":"80","label":"注册号","prop":"tm_number","isShowTip":true,"isTmpl":false}, {"width":"80","label":"注册号","prop":"tm_number","isShowTip":true,"isTmpl":false},
{"width":"80","label":"状态","prop":"transfer_status_name","isShowTip":true,"isTmpl":false}, {"width":"80","label":"状态","prop":"transfer_status_name","isShowTip":true,"isTmpl":false},
{"width":"100","label":"买方电话","prop":"mobile","isShowTip":true,"isTmpl":false}, {"width":"100","label":"买方电话","prop":"mobile","isShowTip":true,"isTmpl":true,"isOther2":true},
{"width":"100","label":"尼斯大类","prop":"ncl_one","isShowTip":true,"isTmpl":false}, {"width":"100","label":"尼斯大类","prop":"ncl_one","isShowTip":true,"isTmpl":false},
{"width":"100","label":"成交价格","prop":"price","isShowTip":true,"isTmpl":false}, {"width":"100","label":"成交价格","prop":"price","isShowTip":true,"isTmpl":false},
{"width":"80","label":"沟通记录","prop":"tracklast","isShowTip":true,"isTmpl":false}, {"width":"80","label":"沟通记录","prop":"tracklast","isShowTip":true,"isTmpl":false},
......
...@@ -4,6 +4,10 @@ ...@@ -4,6 +4,10 @@
listMethod="findAndCountAll" deleteMethod="delete" initMethod="initNewInstance" isDataAuto="true" listMethod="findAndCountAll" deleteMethod="delete" initMethod="initNewInstance" isDataAuto="true"
:headStyle="headStyle" :colFormatter="onColFormater" :isSingleSelect="isSingleSelect" @rowclick="onRowClick" :headStyle="headStyle" :colFormatter="onColFormater" :isSingleSelect="isSingleSelect" @rowclick="onRowClick"
@onDlgFormClick="onDlgFormClick" :validateformmethod="validateformmethod"> @onDlgFormClick="onDlgFormClick" :validateformmethod="validateformmethod">
<div slot="other2" slot-scope="s">
<span v-if="s.row.mobile">{{s.row.mobile}}</span>
<span v-else><button @click="inputMobile(s.row)">输入号码</button></span>
</div>
</gsb-grid2> </gsb-grid2>
<el-dialog title="上传资料" :visible.sync="showUploadform" width="350px" height="350px" center> <el-dialog title="上传资料" :visible.sync="showUploadform" width="350px" height="350px" center>
<gsb-aliupload v-model="f1" @uploadsuccess="upsuccess" mtype="test"></gsb-aliupload> <gsb-aliupload v-model="f1" @uploadsuccess="upsuccess" mtype="test"></gsb-aliupload>
......
...@@ -32,6 +32,9 @@ ...@@ -32,6 +32,9 @@
validateformmethod(rule, value, cbk){ validateformmethod(rule, value, cbk){
return cbk(); return cbk();
}, },
inputMobile(row){
alert("input mobile..")
},
onDlgFormClick(k, model){ onDlgFormClick(k, model){
var that=this; var that=this;
if (k = "alisubmit") { if (k = "alisubmit") {
......
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