Kaynağa Gözat

reactor:样式统一调整;

zhangchong 1 yıl önce
ebeveyn
işleme
b2e0c3f817

+ 1 - 1
src/views/auxiliary/advice/index.vue

@@ -32,7 +32,7 @@
 				<!-- 表格 header 按钮 -->
 				<template #tableHeader="scope">
 					<el-button type="primary" @click="onAdviceAdd"> <SvgIcon name="ele-Plus" class="mr5" />新增 </el-button>
-					<el-button type="primary" @click="onAdviceDelete" :disabled="!scope.isSelected"> <SvgIcon name="ele-Delete" class="mr5" />删除 </el-button>
+					<el-button type="danger" @click="onAdviceDelete" :disabled="!scope.isSelected"> <SvgIcon name="ele-Delete" class="mr5" />删除 </el-button>
 				</template>
 				<template #isOpen="{ row }">
 					{{ row.isOpen ? '公开常用意见' : '个人常用意见' }}

+ 2 - 2
src/views/auxiliary/businessTag/index.vue

@@ -37,10 +37,10 @@
 					<el-button type="primary" @click="addParameter" v-auth="'auxiliary:businessTag:add'">
 						<SvgIcon name="ele-Plus" class="mr5" />新增
 					</el-button>
-					<el-button type="primary" @click="businessTagRemove" v-auth="'auxiliary:businessTag:delete'" :disabled="!scope.isSelected">
+					<el-button type="danger" @click="businessTagRemove" v-auth="'auxiliary:businessTag:delete'" :disabled="!scope.isSelected">
 						<SvgIcon name="ele-Delete" class="mr5" />删除
 					</el-button>
-					<el-button type="primary" @click="businessTagBinding" v-auth="'auxiliary:businessTag:binding'" :disabled="!scope.isSelected">
+					<el-button type="info" @click="businessTagBinding" v-auth="'auxiliary:businessTag:binding'" :disabled="!scope.isSelected">
 						<SvgIcon name="ele-Link" class="mr5" />批量绑定
 					</el-button>
 				</template>

+ 0 - 1
src/views/auxiliary/citizen/index.vue

@@ -64,7 +64,6 @@ const TagsEdit = defineAsyncComponent(() => import('@/views/auxiliary/citizen/co
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-	{ type: 'selection', fixed: 'left', width: 55 },
 	{ prop: 'phoneNumber', label: '市民联系方式', width: 200 },
 	{ prop: 'label', label: '市民标签', width: 300 },
 	{ prop: 'creatorName', label: '创建人' },

+ 1 - 1
src/views/auxiliary/eventClass/index.vue

@@ -28,7 +28,7 @@
 					<el-button type="primary" @click="onAdd" v-auth="'auxiliary:eventClass:add'" :loading="state.loading">
 						<SvgIcon name="ele-Plus" class="mr5" />新增
 					</el-button>
-					<el-button type="primary" @click="onDelete" v-auth="'auxiliary:eventClass:delete'" :loading="state.loading" :disabled="disabled">
+					<el-button type="danger" @click="onDelete" v-auth="'auxiliary:eventClass:delete'" :loading="state.loading" :disabled="disabled">
 						<SvgIcon name="ele-Delete" class="mr5" />删除
 					</el-button>
 				</el-col>

+ 1 - 1
src/views/auxiliary/knowledgeLexicon/index.vue

@@ -35,7 +35,7 @@
 					<el-button type="primary" @click="addParameter" v-auth="'auxiliary:knowledgeLexicon:add'">
 						<SvgIcon name="ele-Plus" class="mr5" />新增
 					</el-button>
-					<el-button type="primary" @click="businessTagRemove" v-auth="'auxiliary:knowledgeLexicon:delete'" :disabled="!scope.isSelected">
+					<el-button type="danger" @click="businessTagRemove" v-auth="'auxiliary:knowledgeLexicon:delete'" :disabled="!scope.isSelected">
 						<SvgIcon name="ele-Delete" class="mr5" />删除
 					</el-button>
 				</template>

+ 1 - 1
src/views/auxiliary/orderLexicon/index.vue

@@ -35,7 +35,7 @@
 					<el-button type="primary" @click="addParameter" v-auth="'auxiliary:orderLexicon:add'">
 						<SvgIcon name="ele-Plus" class="mr5" />新增
 					</el-button>
-					<el-button type="primary" @click="businessTagRemove" v-auth="'auxiliary:orderLexicon:delete'" :disabled="!scope.isSelected">
+					<el-button type="danger" @click="businessTagRemove" v-auth="'auxiliary:orderLexicon:delete'" :disabled="!scope.isSelected">
 						<SvgIcon name="ele-Delete" class="mr5" />删除
 					</el-button>
 				</template>

+ 1 - 1
src/views/business/countersign/index.vue

@@ -152,7 +152,7 @@ const HotSpotSelect = defineAsyncComponent(() => import('@/components/Hotspot/in
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-	{ prop: 'expiredStatus', label: '超期状态', align: 'center' },
+	{ prop: 'expiredStatus', label: '超期状态', align: 'center',fixed: 'left' },
 	{ prop: 'stateText', label: '会签状态', width: 120 },
 	{ prop: 'order.counterSignTypeText', label: '会签类型', width: 120 },
 	{ prop: 'order.no', label: '工单编码', width: 150 },

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

@@ -86,8 +86,7 @@ const router = useRouter(); // 路由
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-	{ type: 'selection', fixed: 'left', width: 55 },
-	{ prop: 'expiredStatus', label: '超期状态', align: 'center' },
+	{ prop: 'expiredStatus', label: '超期状态', align: 'center',fixed: 'left' },
 	{ prop: 'no', label: '工单编码', width: 150 },
 	{ prop: 'isProvince', label: '省/市工单', width: 100 },
 	{ prop: 'title', label: '工单标题', width: 300 },

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

@@ -71,8 +71,7 @@ const OrderDetail = defineAsyncComponent(() => import('@/components/OrderDetail/
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-	{ type: 'selection', fixed: 'left', width: 55 },
-	{ prop: 'expiredStatus', label: '超期状态', align: 'center' },
+	{ prop: 'expiredStatus', label: '超期状态', align: 'center',fixed: 'left'},
 	{ prop: 'no', label: '工单编码', width: 150 },
 	{ prop: 'isProvince', label: '省/市工单', width: 100 },
 	{ prop: 'title', label: '工单标题', width: 300 },

+ 0 - 1
src/views/business/discern/index.vue

@@ -89,7 +89,6 @@ const OrderDetail = defineAsyncComponent(() => import('@/components/OrderDetail/
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-	{ type: 'selection', width: 55, fixed: 'left' },
 	{ prop: 'order.no', label: '工单编码', width: 150 },
 	{ prop: 'statusText', label: '甄别状态', width: 100 },
 	{ prop: 'isProvince', label: '省/市工单', width: 100 },

+ 1 - 2
src/views/business/discern/todo.vue

@@ -86,8 +86,7 @@ const ruleFormRef = ref<RefType>(); // 表单ref
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-	{ type: 'selection', fixed: 'left', width: 55 },
-	{ prop: 'expiredStatus', label: '超期状态', align: 'center' },
+	{ prop: 'expiredStatus', label: '超期状态', align: 'center',fixed: 'left', },
 	{ prop: 'order.no', label: '工单编码', width: 150 },
 	{ prop: 'isProvince', label: '省/市工单', width: 100 },
 	{ prop: 'title', label: '工单标题', width: 300 },

+ 0 - 1
src/views/business/publish/index.vue

@@ -74,7 +74,6 @@ const ruleFormRef = ref<RefType>(); // 表单ref
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-	{ type: 'selection', fixed: 'left', width: 55 },
 	{ prop: 'order.no', label: '工单编码', width: 150 },
 	{ prop: 'isProvince', label: '省/市工单', width: 100 },
 	{ prop: 'title', label: '工单标题', width: 300 },

+ 0 - 1
src/views/business/repeatEvent/index.vue

@@ -54,7 +54,6 @@ const RepeatEventEdit = defineAsyncComponent(() => import('@/views/business/repe
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-	{ type: 'selection', fixed: 'left', width: 55 },
 	{ prop: 'title', label: '重复事件标题', width: 300 },
 	{ prop: 'keyWords', label: '关键词', width: 300 },
 	{ prop: 'creatorName', label: '创建人' },

+ 0 - 1
src/views/business/return/audit.vue

@@ -89,7 +89,6 @@ const router = useRouter(); // 路由
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-	{ type: 'selection', fixed: 'left', width: 55 },
 	{ prop: 'order.no', label: '工单编码', width: 150 },
 	{ prop: 'isProvince', label: '省/市工单', width: 100 },
 	{ prop: 'title', label: '工单标题', width: 300 },

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

@@ -67,7 +67,6 @@ const router = useRouter(); // 路由
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-  { type: 'selection', fixed: 'left', width: 55 },
   { prop: 'order.no', label: '工单编码', width: 150 },
   { prop: 'isProvince', label: '省/市工单', width: 100 },
   { prop: 'title', label: '工单标题', width: 300 },

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

@@ -80,7 +80,7 @@ const router = useRouter(); // 路由
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-	{ prop: 'expiredStatus', label: '超期状态', align: 'center' },
+	{ prop: 'expiredStatus', label: '超期状态', align: 'center',fixed: 'left' },
 	{ prop: 'no', label: '工单编码', width: 150 },
 	{ prop: 'statusText', label: '工单状态', width: 100 },
 	{ prop: 'state', label: '审批状态', width: 100 },

+ 0 - 1
src/views/business/supervise/index.vue

@@ -73,7 +73,6 @@ const OrderSuperviseReply = defineAsyncComponent(() => import('@/views/business/
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-	{ type: 'selection', width: 55, fixed: 'left' },
 	{ prop: 'order.no', label: '工单编码', width: 150 },
 	{ prop: 'isProvince', label: '省/市工单', width: 100 },
 	{ prop: 'title', label: '标题', width: 300 },

+ 1 - 2
src/views/business/supervise/todo.vue

@@ -64,8 +64,7 @@ const ruleFormRef = ref<RefType>(); // 表单ref
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-	{ type: 'selection', fixed: 'left', width: 55 },
-	{ prop: 'expiredStatus', label: '超期状态', align: 'center' },
+	{ prop: 'expiredStatus', label: '超期状态', align: 'center',fixed: 'left'},
 	{ prop: 'order.no', label: '工单编码', width: 150 },
 	{ prop: 'title', label: '工单标题', width: 300 },
 	{ prop: 'order.sourceChannel', label: '来源方式', width: 100 },

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

@@ -62,8 +62,7 @@ const OrderDetail = defineAsyncComponent(() => import('@/components/OrderDetail/
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-	{ type: 'selection', fixed: 'left', width: 55 },
-	{ prop: 'expiredStatus', label: '超期状态', align: 'center' },
+	{ prop: 'expiredStatus', label: '超期状态', align: 'center',fixed: 'left' },
 	{ prop: 'order.no', label: '工单编码', width: 150 },
 	{ prop: 'order.sourceChannel', label: '来源方式' },
 	{ prop: 'order.actualHandleStepName', label: '办理节点', width: 150 },

+ 1 - 2
src/views/business/urge/todo.vue

@@ -59,8 +59,7 @@ const ruleFormRef = ref<RefType>(); // 表单ref
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-	{ type: 'selection', fixed: 'left', width: 55 },
-	{ prop: 'expiredStatus', label: '超期状态', align: 'center' },
+	{ prop: 'expiredStatus', label: '超期状态', align: 'center',fixed: 'left' },
 	{ prop: 'order.no', label: '工单编码', width: 150 },
 	{ prop: 'title', label: '工单标题', width: 300 },
 	{ prop: 'order.sourceChannel', label: '来源方式', width: 100 },

+ 1 - 2
src/views/business/visit/component/Smart-visit-add.vue

@@ -54,7 +54,6 @@
 					collapse-tags
 					collapse-tags-tooltip
 					:max-collapse-tags="2"
-					@change="queryList"
 				>
 					<el-option v-for="item in state.acceptTypeOptions" :value="item.dicDataValue" :key="item.dicDataValue" :label="item.dicDataName" />
 				</el-select>
@@ -110,7 +109,7 @@ const state = reactive({
 	queryParams: {
 		Title: null,
 		No: null,
-		AcceptTypes: null,
+		AcceptTypes: [],
     HotspotIds:[],
 	},
 	tableData: [], //表格

+ 0 - 1
src/views/business/visit/index.vue

@@ -97,7 +97,6 @@ const router = useRouter(); // 路由
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-	{ type: 'selection', fixed: 'left', width: 55 },
 	{ prop: 'order.no', label: '工单编码', width: 150 },
 	{ prop: 'isProvince', label: '省/市工单', width: 100 },
 	{ prop: 'title', label: '工单标题', width: 300 },

+ 2 - 2
src/views/home/component/ToDo.vue

@@ -94,7 +94,7 @@ const columns = ref<any[]>([]);
 
 // 工单待办表头
 const todoColumns = [
-	{ prop: 'expiredStatus', label: '超期状态', align: 'center' },
+	{ prop: 'expiredStatus', label: '超期状态', align: 'center',fixed: 'left' },
 	{ prop: 'no', label: '工单编码', width: 150 },
 	{ prop: 'isProvince', label: '省/市工单', width: 100 },
 	{ prop: 'actualHandleStepName', label: '办理节点', width: 150 },
@@ -125,7 +125,7 @@ const todoColumns = [
 ];
 // 工单坐席待办表头
 const seatsColumns = [
-	{ prop: 'no', label: '工单编码', width: 150 },
+	{ prop: 'no', label: '工单编码', width: 150,fixed: 'left' },
 	{ prop: 'isProvince', label: '省/市工单', width: 100 },
 	{ prop: 'actualHandleStepName', label: '办理节点', width: 150 },
 	{ prop: 'statusText', label: '工单状态', width: 100 },

+ 1 - 0
src/views/judicial/statistics/eventClass.vue

@@ -97,6 +97,7 @@ import { useRouter } from 'vue-router';
 import { guid } from "@/utils/tools";
 
 const columns = ref<any>([
+  { type: 'index', fixed: 'left', width: 55, label: '序号', align: 'center' },
 	{ prop: 'name', label: '事项类型' },
 	{
 		prop: 'num',

+ 8 - 6
src/views/system/workforce/number.vue

@@ -25,14 +25,16 @@
 				v-model:page-size="state.queryParams.PageSize"
 			>
 				<template #tableHeader="scope">
-					<el-button type="primary" @click="onAdd" v-auth="'system:workforce:number:add'" :loading="state.loading">新增班次 </el-button>
+					<el-button type="primary" @click="onAdd" v-auth="'system:workforce:number:add'" :loading="state.loading"
+						><SvgIcon name="ele-Plus" class="mr5" />新增班次
+					</el-button>
 					<el-button
 						type="danger"
 						@click="onDeleteMultiple"
 						v-auth="'system:workforce:number:deleteMultiple'"
 						:disabled="!scope.isSelected"
 						:loading="state.loading"
-						>删除
+						><SvgIcon name="ele-Delete" class="mr5" />删除
 					</el-button>
 				</template>
 				<!-- 表格操作 -->
@@ -96,8 +98,8 @@ const state = reactive({
 const ruleFormRef = ref<FormInstance>(); // 表单ref
 /** 搜索按钮操作 */
 const handleQuery = () => {
-  state.queryParams.PageIndex = 1;
-  queryList();
+	state.queryParams.PageIndex = 1;
+	queryList();
 };
 /** 班次列表 */
 const queryList = async () => {
@@ -117,7 +119,7 @@ const resetQuery = (formEl: FormInstance | undefined) => {
 	if (!formEl) return;
 	formEl.resetFields();
 	queryList();
-}
+};
 // 新增班次
 const numberEditRef = ref<RefType>();
 const onAdd = () => {
@@ -171,4 +173,4 @@ const onDeleteMultiple = () => {
 onMounted(() => {
 	queryList();
 });
-</script>
+</script>

+ 4 - 2
src/views/system/workforce/staff.vue

@@ -25,14 +25,16 @@
 				v-model:page-size="state.queryParams.PageSize"
 			>
 				<template #tableHeader="scope">
-					<el-button type="primary" @click="onAdd" v-auth="'system:workforce:staff:add'" :loading="state.loading">选择人员 </el-button>
+					<el-button type="primary" @click="onAdd" v-auth="'system:workforce:staff:add'" :loading="state.loading"
+						><SvgIcon name="ele-Plus" class="mr5" />选择人员
+					</el-button>
 					<el-button
 						type="danger"
 						@click="onDeleteMultiple"
 						v-auth="'system:workforce:staff:deleteMultiple'"
 						:disabled="!scope.isSelected"
 						:loading="state.loading"
-						>删除
+						><SvgIcon name="ele-Delete" class="mr5" />删除
 					</el-button>
 				</template>
 				<!-- 表格操作 -->

+ 1 - 2
src/views/todo/order/index.vue

@@ -97,8 +97,7 @@ const router = useRouter(); // 路由
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-	{ type: 'selection', fixed: 'left', width: 55 },
-	{ prop: 'expiredStatus', label: '超期状态', align: 'center' },
+	{ prop: 'expiredStatus', label: '超期状态', align: 'center',fixed: 'left' },
 	{ prop: 'no', label: '工单编码', width: 150 },
 	{ prop: 'isProvince', label: '省/市工单', width: 100 },
 	{ prop: 'actualHandleStepName', label: '办理节点', width: 150 },

+ 1 - 2
src/views/todo/seats/index.vue

@@ -97,8 +97,7 @@ const router = useRouter(); // 路由
 const proTableRef = ref<RefType>(); // 表格ref
 // 表格配置项
 const columns = ref<any[]>([
-	{ type: 'selection', fixed: 'left', width: 55 },
-	{ prop: 'expiredStatus', label: '超期状态', align: 'center' },
+	{ prop: 'expiredStatus', label: '超期状态', align: 'center',fixed: 'left' },
 	{ prop: 'no', label: '工单编码', width: 150 },
 	{ prop: 'isProvince', label: '省/市工单', width: 100 },
 	{ prop: 'actualHandleStepName', label: '办理节点', width: 150 },