Commit 60c66798 by 潘际乾
parents 4016de90 d3f2d755
...@@ -88,7 +88,7 @@ export default { ...@@ -88,7 +88,7 @@ export default {
"didgrp.cbs.max.amt":[ "didgrp.cbs.max.amt":[
{type: "number", required: false, message: "必输项"}, //{type: "number", required: false, message: "必输项"},
// {max: 18,message:"整数位不能超过14位"}, // {max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" } {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
], ],
...@@ -321,7 +321,7 @@ export default { ...@@ -321,7 +321,7 @@ export default {
], ],
"didgrp.rec.conamt":[ "didgrp.rec.conamt":[
{type: "number", required: false, message: "必输项"}, // {type: "number", required: false, message: "必输项"},
{max: 16,message:"整数位不能超过13位"}, {max: 16,message:"整数位不能超过13位"},
{pattern: /(^\d+$)|(^\.\d{1,2}$)|(^\d+\.\d{1,2}$)/, message: "小数位不能超过2位" } {pattern: /(^\d+$)|(^\.\d{1,2}$)|(^\d+\.\d{1,2}$)/, message: "小数位不能超过2位" }
], ],
......
...@@ -341,5 +341,8 @@ export default { ...@@ -341,5 +341,8 @@ export default {
}, },
onSeainf() { onSeainf() {
},
display(index, row){
window.open("/#/display/"+row['10'].toLowerCase()+"?trn="+row['1']);
} }
} }
\ No newline at end of file
...@@ -161,7 +161,7 @@ export default { ...@@ -161,7 +161,7 @@ export default {
bdflg:CodeTable.bdflg, bdflg:CodeTable.bdflg,
avbwth:CodeTable.avbwth, avbwth:CodeTable.avbwth,
lcrtyp:CodeTable.lcrtyp, lcrtyp:CodeTable.lcrtyp,
avbby:CodeTable.avbby, avbby:CodeTable.avbby0,
shppar:CodeTable.shppar, shppar:CodeTable.shppar,
tratyp:CodeTable.tratyp, tratyp:CodeTable.tratyp,
dspflg:CodeTable.dspflg, dspflg:CodeTable.dspflg,
......
...@@ -89,7 +89,7 @@ export default { ...@@ -89,7 +89,7 @@ export default {
} }
}, },
mounted(){ mounted(){
this.onOffpTodo() //this.onOffpTodo()
} }
} }
</script> </script>
......
...@@ -186,7 +186,8 @@ export default { ...@@ -186,7 +186,8 @@ export default {
mounted:async function(){ mounted:async function(){
console.log("进入office交易"); console.log("进入office交易");
if(1) return
let rtnmsg = await Api.post("office/init",{params:{}}) let rtnmsg = await Api.post("office/init",{params:{}})
console.log(rtnmsg) console.log(rtnmsg)
if(rtnmsg.code == SUCCESS) if(rtnmsg.code == SUCCESS)
......
...@@ -227,7 +227,9 @@ ...@@ -227,7 +227,9 @@
label="Display" label="Display"
width="100"> width="100">
<template slot-scope="scope"> <template slot-scope="scope">
<a :href="`/#/display/${scope.row['10'].toLowerCase()}?trn=${scope.row['1']}`" target="_blank">显示快照</a> <!-- <a :href="`/#/display/${scope.row['10'].toLowerCase()}?trn=${scope.row['1']}`" target="_blank" >显示快照</a>-->
<a @click="display(scope.$index, scope.row)">显示快照</a>
</template> </template>
</el-table-column> </el-table-column>
</c-istream-table> </c-istream-table>
......
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