Commit 9e32a10b by 伍思炜

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

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