Commit 03228ee7 by ddx

d

parent f77d3913
......@@ -68,6 +68,8 @@
<option value="5">暂停</option>
<option value="6" selected>超时</option>
<option value="9">删除</option>
<option value="10">局端需认证</option>
<option value="11">局端需分配权限</option>
</select>
</div>
<label class="col-sm-2 control-label">结束标志:</label>
......
......@@ -68,6 +68,8 @@
<option value="5">暂停</option>
<option value="6" selected>超时</option>
<option value="9">删除</option>
<option value="10">局端需认证</option>
<option value="11">局端需分配权限</option>
</select>
</div>
<label class="col-sm-2 control-label">结束标志:</label>
......
......@@ -133,6 +133,10 @@ function queryPageList() {
return '超时';
} else if (type === '9') {
return '删除';
} else if (type === '10') {
return '局端需认证';
} else if (type === '11') {
return '局端需分配权限';
} else {
return '未知';
}
......
......@@ -134,6 +134,10 @@ function queryPageList() {
return '超时';
} else if (type === '9') {
return '删除';
} else if (type === '10') {
return '局端需认证';
} else if (type === '11') {
return '局端需分配权限';
} else {
return '未知';
}
......
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