Commit aba1411e by 孟冬雪
parents f40cc86b 609f3cf7
...@@ -406,7 +406,8 @@ export default { ...@@ -406,7 +406,8 @@ export default {
{ label: "归档", value: "chkcan" }, { label: "归档", value: "chkcan" },
{ label: "云平台", value: "chkypt" }, { label: "云平台", value: "chkypt" },
] ]
}else if(this.root.tag == 'draft'){ }
else if(this.root.tag == 'draft'){
this.sourceData = [{ label: "Break", value: "chkpen" }] this.sourceData = [{ label: "Break", value: "chkpen" }]
} }
}, },
......
...@@ -26,13 +26,12 @@ export default { ...@@ -26,13 +26,12 @@ export default {
components:{ components:{
"m-menu" : Menu, "m-menu" : Menu,
}, },
props:["isDraftBox"],
provide() { provide() {
return { return {
root: this root: this
} }
}, },
props: ["tag"], props: ["tag","isDraftBox"],
mixins: [CommonProcess], // 里面包含了Default、Check等的公共处理 mixins: [CommonProcess], // 里面包含了Default、Check等的公共处理
computed: { computed: {
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<c-tabs :value="tabVal" type="card" @tab-click="tabClick"> <c-tabs :value="tabVal" type="card" @tab-click="tabClick">
<el-tab-pane label="待经办列表" name="sptsel"> <el-tab-pane label="待经办列表" name="sptsel">
<!-- <c-table :columnsConfig="tableColumns" :list="tableData"></c-table> --> <!-- <c-table :columnsConfig="tableColumns" :list="tableData"></c-table> -->
<t-sptsel tag="tohandle"/> <t-sptsel tag="tohandle" :isDraftBox="false"/>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="待复核列表" name="trnrel"> <el-tab-pane label="待复核列表" name="trnrel">
<t-trnrel tag="tocheck" /> <t-trnrel tag="tocheck" />
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<t-bopsel /> <t-bopsel />
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="草稿箱" name="draftBox"> <el-tab-pane label="草稿箱" name="draftBox">
<t-sptsel tag="draft"/> <t-sptsel tag="draft" :isDraftBox="true"/>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="到期提示" name="expirePrompt"> <el-tab-pane label="到期提示" name="expirePrompt">
<t-diasel/> <t-diasel/>
......
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