|
@@ -17,10 +17,10 @@
|
|
|
<add-form
|
|
|
v-if="newTime !== ''"
|
|
|
:newTime="newTime"
|
|
|
- :id="queryId"
|
|
|
+ @refresh="refresh"
|
|
|
:type="queryType"
|
|
|
:sitem="sitem"
|
|
|
- @refresh="refresh"
|
|
|
+ :id="queryId"
|
|
|
/>
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="项目详情" name="1" v-if="queryType !== 'add'">
|
|
@@ -89,8 +89,8 @@
|
|
|
/>
|
|
|
</el-tab-pane>
|
|
|
|
|
|
- <el-tab-pane label="流程图" name="5" v-if="queryType !== 'add'" >
|
|
|
- <flow-chart process_id="14" type="PRO" :orderCode="queryId"/>
|
|
|
+ <el-tab-pane label="流程图" name="5" v-if="queryType !== 'add'">
|
|
|
+ <flow-chart process_id="14" type="PRO" :orderCode="queryId" />
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
</div>
|
|
@@ -115,16 +115,17 @@ export default {
|
|
|
addForm,
|
|
|
grossForm,
|
|
|
backGoodShow,
|
|
|
- setPlan,
|
|
|
+ setPlan
|
|
|
},
|
|
|
computed: {
|
|
|
...mapGetters(["tablebtnSize", "searchSize", "size", "isSupertube"]),
|
|
|
powers() {
|
|
|
const { btnList } = this.$store.getters;
|
|
|
- const tran = btnList.find((item) => item.menu_route == "projectDetail") || {};
|
|
|
+ const tran =
|
|
|
+ btnList.find(item => item.menu_route == "projectDetail") || {};
|
|
|
const { action } = tran ?? {};
|
|
|
return action ?? [];
|
|
|
- },
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
data() {
|
|
@@ -138,7 +139,7 @@ export default {
|
|
|
queryType: "",
|
|
|
queryId: "",
|
|
|
status: "",
|
|
|
- sitem: null,
|
|
|
+ sitem: null
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
@@ -166,8 +167,8 @@ export default {
|
|
|
if (!this.loading) {
|
|
|
let model = {
|
|
|
activity_code: this.queryId,
|
|
|
- status: e.state + '' === "1" ? "1" : "8",
|
|
|
- remark: e.remark,
|
|
|
+ status: e.state + "" === "1" ? "1" : "8",
|
|
|
+ remark: e.remark
|
|
|
};
|
|
|
await this.setstatus("提交产品部门审核", model);
|
|
|
}
|
|
@@ -176,14 +177,14 @@ export default {
|
|
|
await this.$confirm(`确定要${detail}?`, {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
- type: "warning",
|
|
|
+ type: "warning"
|
|
|
})
|
|
|
.then(async () => {
|
|
|
let res = await asyncRequest.actstatus(model);
|
|
|
if (res && res.code === 0) {
|
|
|
this.$notify.success({
|
|
|
title: "提交成功!",
|
|
|
- message: "",
|
|
|
+ message: ""
|
|
|
});
|
|
|
await this.initForm();
|
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
@@ -217,7 +218,7 @@ export default {
|
|
|
async initData() {
|
|
|
this.loading = true;
|
|
|
const { code, message, data } = await asyncRequest.detail({
|
|
|
- projectNo: this.queryId,
|
|
|
+ projectNo: this.queryId
|
|
|
});
|
|
|
this.loading = false;
|
|
|
console.log(data);
|
|
@@ -234,8 +235,8 @@ export default {
|
|
|
},
|
|
|
getNewTime() {
|
|
|
this.newTime = new Date().valueOf();
|
|
|
- },
|
|
|
- },
|
|
|
+ }
|
|
|
+ }
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|