|
|
|
@ -37,7 +37,7 @@
|
|
|
|
</lay-container>
|
|
|
|
</lay-container>
|
|
|
|
</lay-scroll>
|
|
|
|
</lay-scroll>
|
|
|
|
<lay-layer area="90%" v-model="showEditBox" title="视图查看">
|
|
|
|
<lay-layer area="90%" v-model="showEditBox" title="视图查看">
|
|
|
|
<ShowView :viewList="viewList" :viewHeight="viewHeight" @cancelClick="cancelClick"></ShowView>
|
|
|
|
<ShowView :viewList="viewList" :viewHeight="viewHeight" :viewType="viewType" @cancelClick="cancelClick"></ShowView>
|
|
|
|
</lay-layer>
|
|
|
|
</lay-layer>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
@ -168,15 +168,12 @@ import {
|
|
|
|
watch
|
|
|
|
watch
|
|
|
|
} from 'vue';
|
|
|
|
} from 'vue';
|
|
|
|
import {
|
|
|
|
import {
|
|
|
|
getTeamProcessList,
|
|
|
|
|
|
|
|
getTeamworkView
|
|
|
|
getTeamworkView
|
|
|
|
} from "/src/api/api/halfmaterialteamwork";
|
|
|
|
} from "/src/api/api/halfmaterialteamwork";
|
|
|
|
import {
|
|
|
|
|
|
|
|
getBasicRoleList
|
|
|
|
|
|
|
|
} from "/src/api/api/user";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import ShowView from './ShowView.vue';
|
|
|
|
import ShowView from './ShowView.vue';
|
|
|
|
import FormulaView from './FormulaView.vue';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
components: {
|
|
|
|
@ -204,6 +201,7 @@ export default {
|
|
|
|
const viewList = ref([]);
|
|
|
|
const viewList = ref([]);
|
|
|
|
const viewHeight = ref(500);
|
|
|
|
const viewHeight = ref(500);
|
|
|
|
const objInfoObj = ref([]);
|
|
|
|
const objInfoObj = ref([]);
|
|
|
|
|
|
|
|
const viewType = ref(0);
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
dataList,
|
|
|
|
dataList,
|
|
|
|
dataColumn,
|
|
|
|
dataColumn,
|
|
|
|
@ -213,7 +211,8 @@ export default {
|
|
|
|
showEditBox1,
|
|
|
|
showEditBox1,
|
|
|
|
viewList,
|
|
|
|
viewList,
|
|
|
|
viewHeight,
|
|
|
|
viewHeight,
|
|
|
|
objInfoObj
|
|
|
|
objInfoObj,
|
|
|
|
|
|
|
|
viewType
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
props: {
|
|
|
|
@ -240,6 +239,7 @@ export default {
|
|
|
|
FType: type,
|
|
|
|
FType: type,
|
|
|
|
HalfId : this.dataInfoObj.FMaterialHalfIDs
|
|
|
|
HalfId : this.dataInfoObj.FMaterialHalfIDs
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
this.viewType = viewType;
|
|
|
|
if (this.dataInfoObj.FProgress == "100" || this.dataInfoObj.FProgress == "100%") {
|
|
|
|
if (this.dataInfoObj.FProgress == "100" || this.dataInfoObj.FProgress == "100%") {
|
|
|
|
postData.FFinish = 1;
|
|
|
|
postData.FFinish = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|