Commit 813dd1b9 by 王昆

gsb

parent fa73942b
...@@ -231,7 +231,7 @@ class EcontractService extends ServiceBase { ...@@ -231,7 +231,7 @@ class EcontractService extends ServiceBase {
sealId = eseal.sealId; sealId = eseal.sealId;
} }
let today = new Date().Format("yyyy-MM-dd"); let today = obj.signDay || new Date().Format("yyyy-MM-dd");
var signParams = { var signParams = {
templateId: etemplate.templateid, //模板id,由创建模板接口调用返回的templateId 必填 templateId: etemplate.templateid, //模板id,由创建模板接口调用返回的templateId 必填
name: ecompany.name, //合同模板名称 必填 name: ecompany.name, //合同模板名称 必填
......
...@@ -185,6 +185,17 @@ ...@@ -185,6 +185,17 @@
<div style="width:2px;height:15px;float: left;background-color: #54C4A7"></div> <div style="width:2px;height:15px;float: left;background-color: #54C4A7"></div>
<span style="font-size:15px;color: #333333;float: left;font-weight:bold;margin-left: 7px;">签约信息</span> <span style="font-size:15px;color: #333333;float: left;font-weight:bold;margin-left: 7px;">签约信息</span>
</div> </div>
<el-form-item label="签约日期:" prop="signDay">
<el-date-picker
v-model="autoAggreement.signDay"
type="date"
style="width:200px;height: 36px;float:left;"
placeholder="非必填,默认今天"
format="yyyy-MM-dd"
value-format="yyyy-MM-dd"
default-value="">
</el-date-picker>
</el-form-item>
<el-form-item label="模板名称:" prop="etemplateName"> <el-form-item label="模板名称:" prop="etemplateName">
<el-select <el-select
......
...@@ -76,6 +76,7 @@ ...@@ -76,6 +76,7 @@
} }
}, },
mounted: function () { mounted: function () {
console.log(1);
this.resetSearch(); this.resetSearch();
}, },
created: function () {}, created: function () {},
......
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