Commit 3222d796 by 刘泽奇

123

parent 386e7525
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -59,12 +59,10 @@
width: 100%;
}
.jdregscheme .jdindentdetail-main-type-services>p {
margin: 0;
float: none;
margin-left: 11px;
}
.jdregscheme .jdindentdetail-main-type-services>ul>li{
}
\ No newline at end of file
......@@ -169,7 +169,7 @@
font-weight:600 !important;
color:#333333;
line-height:12px;
letter-spacing:1px;" :visible.sync="applyInfo.centerDialogVisible" width="70%" center>
letter-spacing:1px;" :visible.sync="apply.centerDialogVisible" width="70%" center>
<span style="display:block; border-bottom: 1px solid #E8E8E8;margin-top: -20px;"></span>
<span style="padding-left: 10px;
display: block;
......@@ -200,10 +200,10 @@
font-family:PingFangSC-Regular,PingFang SC;
color:rgba(181,181,181,1);
text-indent:1em;
"></textarea>
" v-model="values"></textarea>
</span>
<span slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm = false" style="width:140px;
<el-button type="primary" @click="submitForm" style="width:140px;
height:36px;
background:rgba(38,146,255,1);
border-radius:4px;">确定</el-button>
......@@ -214,7 +214,7 @@
<br />
<div class="jdregschemesubmit-footer">
<div class="jdregschemesubmit-footer-box">
<el-button type="primary" @click="submitForm">不同意该注册方案</el-button>
<el-button type="primary" @click="apply.centerDialogVisible = true">不同意该注册方案</el-button>
<el-button style="color:#fff;" type="primary" @click="agreedForm()"> 同意该注册方案</el-button>
</div>
<div> <i class="el-icon-warning" style="color:#0F8EE9;"></i> 注:如果同意该注册方案后,我们即可递交商标局,如果不同意,请填写理由。</div>
......
......@@ -120,7 +120,8 @@
deliveryInfo: "",
applyInfo: {},
deliveryOrderNo: '',
nclInfo:"",
nclInfo: "",
values: "",
}
},
mounted: function() {
......@@ -134,10 +135,59 @@
},
methods: {
submitForm(){
this.apply.centerDialogVisible = true;
this.apply.centerDialogVisible = false;
console.log(this.values, `zzzzzzzzzzzzzzzzzzzzzzzz`);
var obj = {};
obj.deliveryOrderNo = this.deliveryOrderNo;
obj.channelUserId = this.$root.channelUserId;
obj.isConfirm = "0";
obj.notes = this.values;
if (this.notes == "") {
this.$meesage({
message: "请输入理由!",
type: "warning"
});
return;
}
var obj = this.$root.copyParams(obj, "tmConfirm", "/action/tmOrder/springBoard");
this.$root.postReq("/web/trademark/tmqueryCtl/doPost", obj).then(() => {
if (status == 0) {
this.$router.push({
path: "/1688/jdindentlist",
query: {
deliveryOrderNo: this.deliveryOrderNo,
channelUserId: this.$route.query.channelUserId,
}
});
console.log('[[[[[[[[[[[[[[[[[[[[[[[[[[[[');
}
});
},
agreedForm(){
this.$router.push({ path: "/1688/jdindentlist" });
var obj = {};
obj.deliveryOrderNo = this.deliveryOrderNo;
obj.channelUserId = this.$root.channelUserId;
obj.isConfirm = 1;
var obj = this.$root.copyParams(obj, "tmConfirm", "/action/tmOrder/springBoard");
this.$root.postReq("/web/trademark/tmqueryCtl/doPost", obj).then(() => {
if (status == 0) {
this.$message({
showClose: true,
message: '确认方案成功',
type: 'success'
});
this.$router.push({
path: "/1688/jdindentlist",
query: {
deliveryOrderNo: this.deliveryOrderNo,
channelUserId: this.$route.query.channelUserId,
}
});
}
});
},
/*初始化订单数据 */
initIndent(){
......
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