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.
82 lines
2.5 KiB
Vue
82 lines
2.5 KiB
Vue
<template>
|
|
<Card>
|
|
<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>
|
|
</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>
|
|
</style> |