| | |
| | | import {changeFilterEvent, filterChanged} from "@/hook" |
| | | import footSum from "@/hook/footSum" |
| | | import TagStyle from "@/components/pp/TagStyle.vue" |
| | | import TagStyleDesigner from "@/components/pp/TagStyleDesigner.vue" |
| | | import OrderSortDetail from '@/components/pp/OrderSortDetail.vue' |
| | | import companyInfo from "@/stores/sd/companyInfo" |
| | | import useUserInfoStore from "@/stores/userInfo"; |
| | | //语言获取 |
| | | const {t} = useI18n() |
| | | |
| | | const company = companyInfo() |
| | | let router = useRouter() |
| | | const printVisible= ref(false) |
| | | |
| | | const userStore = useUserInfoStore() |
| | | const userId = userStore.user.userId |
| | | |
| | | let inquiryMode = company.printLabel.getSelectFlowCard; |
| | | |
| | | const checkedValue = ref("") |
| | | if (userId==="A071" || userId==="A107"){ |
| | | checkedValue.value = ref(2) |
| | | } |
| | | else { |
| | | checkedValue.value = ref(inquiryMode) |
| | | } |
| | | //排序 |
| | | let editRow = ref({ |
| | | orderId:null, |
| | |
| | | } |
| | | } |
| | | let array = orderIdList.split('|'); |
| | | router.push({path: '/main/processCard/PrintFlowCard', query: {printList: JSON.stringify(selectRecords)}}) |
| | | router.push({path: '/main/processCard/PrintFlowCard', query: {printList: JSON.stringify(selectRecords),checkedValue:checkedValue.value.value}}) |
| | | return; |
| | | |
| | | } |
| | |
| | | :icon="Search" |
| | | type="primary" @click="getWorkOrder">{{ $t('basicData.search') }} |
| | | </el-button> |
| | | <vxe-checkbox style="margin-top:6px;margin-left:10px " v-if="!(checkedValue.value === 2 && inquiryMode === 2)" v-model="checkedValue.value" content="合并" :checked-value="1" :unchecked-value="2" ></vxe-checkbox> |
| | | </el-row> |
| | | </div> |
| | | <vxe-grid |
| | | ref="xGrid" |
| | | class="mytable-scrollbar" |
| | | height="100%" |
| | | max-height="100%" |
| | | height="95%" |
| | | v-bind="gridOptions" |
| | | v-on="gridEvents" |
| | | > |
| | |
| | | <el-dialog |
| | | id="titleStyle" |
| | | :title="$t('processCard.labelStyle')" |
| | | style="width: 70%;height:70% " |
| | | style="width: 90%;height:90%;margin-top: 3vh " |
| | | :close-on-click-modal="false" |
| | | :close-on-press-escape="false" |
| | | v-model="titleStyleVisible"> |
| | | <tag-style style="width: 100%;height: 100%"/> |
| | | <!-- <tag-style-designer style="width: 100%;height: 100%"/>--> |
| | | </el-dialog> |
| | | |
| | | <el-dialog |