You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.8 KiB
Vue
94 lines
2.8 KiB
Vue
<template>
|
|
<view>
|
|
<Card class="container">
|
|
<form>
|
|
<FormItem :title="'有无合同'">
|
|
<input class="uni-input" v-model="searchForm.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'合同编号'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'合同名称'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'合同大类'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'业务方向'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'部门'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'合同签订日期'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'合同总价'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'甲方公司'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'乙方公司'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'甲方授权代表'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'乙方授权代表'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'甲方签字日期'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'乙方签字日期'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'合同状态'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'合同模板标识'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'合同负责人'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'合同模板'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'附件'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
<FormItem :title="'备注'">
|
|
<input class="uni-input" v-model="form.contractCode" />
|
|
</FormItem>
|
|
</form>
|
|
</Card>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {
|
|
onLoad
|
|
} from '@dcloudio/uni-app'
|
|
import {
|
|
ref
|
|
} from 'vue'
|
|
onLoad((options) => {
|
|
console.log(options.id)
|
|
})
|
|
const id = ref('')
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.container {
|
|
width: 600rpx;
|
|
height: 80vh;
|
|
overflow: auto;
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
margin: 0
|
|
}
|
|
</style> |