Commit 9e32a10b by 伍思炜

修复查看订单详情会重置分页数,优化显示信息

parent 73605028
...@@ -121,7 +121,7 @@ ...@@ -121,7 +121,7 @@
<a-select-option value="待识别">待识别</a-select-option> <a-select-option value="待识别">待识别</a-select-option>
<a-select-option value="待活体">待活体</a-select-option> <a-select-option value="待活体">待活体</a-select-option>
<a-select-option value="审核中">审核中</a-select-option> <a-select-option value="审核中">审核中</a-select-option>
<a-select-option value="待审核">待配送</a-select-option> <a-select-option value="待配送">待配送</a-select-option>
<a-select-option value="待审核">待审核</a-select-option> <a-select-option value="待审核">待审核</a-select-option>
<a-select-option value="待受理">待受理</a-select-option> <a-select-option value="待受理">待受理</a-select-option>
<a-select-option value="已发货">已发货</a-select-option> <a-select-option value="已发货">已发货</a-select-option>
...@@ -356,7 +356,7 @@ ...@@ -356,7 +356,7 @@
<p>备注:{{orderInfo.msg}}</p> <p>备注:{{orderInfo.msg}}</p>
</a-col> </a-col>
<a-col :span="12"> <a-col :span="12">
<p>预留字段2:{{ orderInfo.orderRf2 }}</p> <p>中台状态:{{ orderInfo.thStatus }}</p>
</a-col> </a-col>
</a-row> </a-row>
<a-divider /> <a-divider />
...@@ -610,7 +610,7 @@ export default { ...@@ -610,7 +610,7 @@ export default {
this.iCardShow01 = true; this.iCardShow01 = true;
this.iCardShow = false; this.iCardShow = false;
this.statusShow = false; this.statusShow = false;
this.search(); //this.search();
this.orderInfo = { this.orderInfo = {
orderseq: data.orderseq, orderseq: data.orderseq,
kapin:data.kapin, kapin:data.kapin,
...@@ -643,7 +643,8 @@ export default { ...@@ -643,7 +643,8 @@ export default {
id: data.id, id: data.id,
idCard: data.idCard, idCard: data.idCard,
rhTime:data.rhTime, rhTime:data.rhTime,
msg: data.msg msg: data.msg,
thStatus:data.thStatus,
}; };
this.visible = true; this.visible = true;
}, },
......
...@@ -251,6 +251,7 @@ ...@@ -251,6 +251,7 @@
<a-select v-decorator="['universityOnlineNumber', {rules: [{required:true, message: '最大在线数不能为空'}]}]" @change="changeOnlineNumber"> <a-select v-decorator="['universityOnlineNumber', {rules: [{required:true, message: '最大在线数不能为空'}]}]" @change="changeOnlineNumber">
<a-select-option value="1">1</a-select-option> <a-select-option value="1">1</a-select-option>
<a-select-option value="2">2</a-select-option> <a-select-option value="2">2</a-select-option>
<a-select-option value="3">3</a-select-option>
</a-select> </a-select>
</a-form-item> </a-form-item>
<a-form-item :labelCol="{span: 5}" :wrapperCol="{span: 9, offset: 1}" label="一人一号多终端:"> <a-form-item :labelCol="{span: 5}" :wrapperCol="{span: 9, offset: 1}" label="一人一号多终端:">
......
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
slot="prefix" slot="prefix"
v-if=" inputCodeContent==verifiedCode " v-if=" inputCodeContent==verifiedCode "
type="smile" type="smile"
id="code-canvas"
:style="{ color: 'rgba(0,0,0,.25)' }"/> :style="{ color: 'rgba(0,0,0,.25)' }"/>
<a-icon slot="prefix" v-else type="frown" :style="{ color: 'rgba(0,0,0,.25)' }"/> <a-icon slot="prefix" v-else type="frown" :style="{ color: 'rgba(0,0,0,.25)' }"/>
</a-input> </a-input>
...@@ -255,6 +256,8 @@ export default { ...@@ -255,6 +256,8 @@ export default {
register(data).then(res => { register(data).then(res => {
if (res.code==200) { if (res.code==200) {
this.registerSuccess(res.data); this.registerSuccess(res.data);
let dow = document.getElementById('gc-canvas');
dow.click();
return null; return null;
} }
this.registerRrror(res.data) this.registerRrror(res.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