Explorar o código

reactor:类型优化;

zhangchong hai 7 meses
pai
achega
0b0041122f

+ 0 - 2
src/components/OrderDetail/index.vue

@@ -61,8 +61,6 @@
 								<el-form-item label="联系电话">
 									<span v-if="showMaskNumber"> {{ state.ruleForm.contactMask }}</span>
 									<span v-else>{{ state.ruleForm.contact }}</span>
-									<el-checkbox label="加0" value="0" />
-									<el-checkbox label="去0" value="1" />
 									<el-button plain title="外呼" size="small" type="primary" class="ml8" @click="callPhone(state.ruleForm.contact)">外呼</el-button>
 									<el-button plain title="查看号码" size="small" type="primary" class="ml8" @click="showMaskNumber = !showMaskNumber">{{
 										showMaskNumber ? '查看号码' : '隐藏号码'

+ 1 - 2
src/views/business/special/audit.vue

@@ -43,7 +43,6 @@
 						审批
 					</el-button>
 					<el-button link type="primary" @click="onAuditDetail(row)" title="查看审批明细" v-if="[1, 2].includes(row.state)"> 审批明细 </el-button>
-					<order-detail :order="row.order" @updateList="queryList" />
 				</template>
 			</ProTable>
 		</div>
@@ -86,7 +85,7 @@ const columns = ref<any[]>([
 	{ prop: 'creatorName', label: '申请人', minWidth: 140 },
 	{ prop: 'creatorOrgName', label: '申请部门', minWidth: 140 },
 	{ prop: 'reason', label: '申请理由', minWidth: 150 },
-	{ prop: 'operation', label: '操作', fixed: 'right', width: 140, align: 'center' },
+	{ prop: 'operation', label: '操作', fixed: 'right', width: 90, align: 'center' },
 ]);
 const state = reactive({
 	queryParams: {

+ 1 - 2
src/views/business/special/index.vue

@@ -55,7 +55,6 @@
 				<!-- 表格操作 -->
 				<template #operation="{ row }">
 					<el-button link type="primary" @click="onprogressDetail(row)" title="查看审批明细"> 审批明细 </el-button>
-					<order-detail :order="row.id ? row : { ...row, id: row.orderId }" @updateList="queryList" />
 				</template>
 			</ProTable>
 		</div>
@@ -98,7 +97,7 @@ const columns = ref<any[]>([
 	},
 	{ prop: 'acceptType', label: '受理类型', minWidth: 100 },
 	{ prop: 'hotspotName', label: '热点分类', minWidth: 150 },
-	{ prop: 'operation', label: '操作', fixed: 'right', width: 160, align: 'center' },
+	{ prop: 'operation', label: '操作', fixed: 'right', width: 90, align: 'center' },
 ]);
 const state = reactive({
 	queryParams: {