| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 | <template>		<th :rowspan="rowspan" :colspan="colspan" class="uni-table-th" :class="{ 'table--border': border }" :style="{ width: width + 'px', 'text-align': align }">		<view class="uni-table-th-row">			<view class="uni-table-th-content" :style="{ 'justify-content': contentAlign }" @click="sort">				<slot></slot>				<view v-if="sortable" class="arrow-box">					<text class="arrow up" :class="{ active: ascending }" @click.stop="ascendingFn"></text>					<text class="arrow down" :class="{ active: descending }" @click.stop="descendingFn"></text>				</view>			</view>			<dropdown v-if="filterType || filterData.length" :filterData="filterData" :filterType="filterType" @change="ondropdown"></dropdown>		</view>	</th>			<view class="uni-table-th" :class="{ 'table--border': border }" :style="{ width: width + 'px', 'text-align': align }"><slot></slot></view>	</template><script>	import dropdown from './filter-dropdown.vue'export default {	name: 'uniTh',	options: {		virtualHost: true	},	components: {		dropdown	},	emits:['sort-change','filter-change'],	props: {		width: {			type: [String, Number],			default: ''		},		align: {			type: String,			default: 'left'		},		rowspan: {			type: [Number, String],			default: 1		},		colspan: {			type: [Number, String],			default: 1		},		sortable: {			type: Boolean,			default: false		},		filterType: {			type: String,			default: ""		},		filterData: {			type: Array,			default () {				return []			}		}	},	data() {		return {			border: false,			ascending: false,			descending: false		}	},	computed: {		contentAlign() {			let align = 'left'			switch (this.align) {				case 'left':					align = 'flex-start'					break				case 'center':					align = 'center'					break				case 'right':					align = 'flex-end'					break			}			return align		}	},	created() {		this.root = this.getTable('uniTable')		this.rootTr = this.getTable('uniTr')		this.rootTr.minWidthUpdate(this.width ? this.width : 140)		this.border = this.root.border		this.root.thChildren.push(this)	},	methods: {		sort() {			if (!this.sortable) return			this.clearOther()			if (!this.ascending && !this.descending) {				this.ascending = true				this.$emit('sort-change', { order: 'ascending' })				return			}			if (this.ascending && !this.descending) {				this.ascending = false				this.descending = true				this.$emit('sort-change', { order: 'descending' })				return			}			if (!this.ascending && this.descending) {				this.ascending = false				this.descending = false				this.$emit('sort-change', { order: null })			}		},		ascendingFn() {			this.clearOther()			this.ascending = !this.ascending			this.descending = false			this.$emit('sort-change', { order: this.ascending ? 'ascending' : null })		},		descendingFn() {			this.clearOther()			this.descending = !this.descending			this.ascending = false			this.$emit('sort-change', { order: this.descending ? 'descending' : null })		},		clearOther() {			this.root.thChildren.map(item => {				if (item !== this) {					item.ascending = false					item.descending = false				}				return item			})		},		ondropdown(e) {			this.$emit("filter-change", e)		},				getTable(name) {			let parent = this.$parent			let parentName = parent.$options.name			while (parentName !== name) {				parent = parent.$parent				if (!parent) return false				parentName = parent.$options.name			}			return parent		}	}}</script><style lang="scss">$border-color: #ebeef5;.uni-table-th {	padding: 12px 10px;	/* #ifndef APP-NVUE */	display: table-cell;	box-sizing: border-box;	/* #endif */	font-size: 14px;	font-weight: bold;	color: #909399;	border-bottom: 1px $border-color solid;}.uni-table-th-row {	/* #ifndef APP-NVUE */	display: flex;	/* #endif */	flex-direction: row;}.table--border {	border-right: 1px $border-color solid;}.uni-table-th-content {	display: flex;	align-items: center;	flex: 1;}.arrow-box {}.arrow {	display: block;	position: relative;	width: 10px;	height: 8px;	// border: 1px red solid;	left: 5px;	overflow: hidden;	cursor: pointer;}.down {	top: 3px;	::after {		content: '';		width: 8px;		height: 8px;		position: absolute;		left: 2px;		top: -5px;		transform: rotate(45deg);		background-color: #ccc;	}	&.active {		::after {			background-color: #007aff;		}	}}.up {	::after {		content: '';		width: 8px;		height: 8px;		position: absolute;		left: 2px;		top: 5px;		transform: rotate(45deg);		background-color: #ccc;	}	&.active {		::after {			background-color: #007aff;		}	}}</style>
 |