| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <template>
- <view>
- <uni-nav-bar fixed="true" statusBar="true" left-icon="back" leftText="转派工单" @clickLeft="back"></uni-nav-bar>
- <view class="page-bottom-padding">
- <template>
- <CellTip title="转派信息"> </CellTip>
- <Cell @click="toResult" cellType="more" title="接收人员"></Cell>
- <Cell title="转派原因"></Cell>
- </template>
- <template>
- <CellTip title="基本信息"> </CellTip>
- <CellInfo label="单据编号" value="OUT66262452215"></CellInfo>
- <CellInfo label="上次巡检时间" value="2022-01-22 19:00"></CellInfo>
- <CellInfo label="巡点检地图" icon="iconfont icon-yizhihang_1"></CellInfo>
- <CellInfo label="备注" value="秦始皇奠定中国两千余年政治制度基本格局 ,被明代思想家李贽誉为“千古一帝”。"></CellInfo>
- </template>
- </view>
- <view class="btn-submit">
- 提交
- </view>
- </view>
- </template>
- <script>
- import Cell from '@/components/Cell.vue'
- import CellTip from '@/components/CellTip.vue'
- import CellInfo from '@/components/CellInfo.vue'
- export default {
- components: {
- Cell,
- CellTip,
- CellInfo
- },
- data() {
- return {
-
- }
- },
- methods: {
- toResult(){
- uni.navigateTo({
- url:'../turn_send_user/turn_send_user'
- })
- },
-
- }
- }
- </script>
- <style>
- </style>
|